Subversion Repositories php-qbpwcf

Rev

Rev 182 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 182 Rev 226
Line 1... Line 1...
1
<?php
1
<?php
2
 
2
 
3
/*
3
/*
4
 
4
 
5
	QBPWCF, Quick Build PHP website Component base on Fedora Linux.
5
	QBPWCF, Quick Build PHP website Component base on Fedora Linux.
6
    Copyright (C) 2015~2025 Min-Jhin,Chen
6
    Copyright (C) 2014~2025 MIN ZHI, CHEN
7
 
7
 
8
    This file is part of QBPWCF.
8
    This file is part of QBPWCF.
9
 
9
 
10
    QBPWCF is free software: you can redistribute it and/or modify
10
    QBPWCF is free software: you can redistribute it and/or modify
11
    it under the terms of the GNU General Public License as published by
11
    it under the terms of the GNU General Public License as published by
Line 69... Line 69...
69
 
69
 
70
		}#if end
70
		}#if end
71
 
71
 
72
	#儲存lib path
72
	#儲存lib path
73
	$folderOfUsrLib=$output[0];
73
	$folderOfUsrLib=$output[0];
74
	
74
 
75
	}#if end
75
	}#if end
76
 
76
 
77
#匯入自建的php類別檔
77
#匯入自建的php類別檔
78
require_once("amazon.php"); #跟 amazon 互動的類別
78
require_once("amazon.php"); #跟 amazon 互動的類別
79
require_once("analyse.php"); #跟問卷整理分析有關的類別
79
require_once("analyse.php"); #跟問卷整理分析有關的類別
Line 143... Line 143...
143
require_once("webSock.php"); #裡面包含web socket的應用
143
require_once("webSock.php"); #裡面包含web socket的應用
144
require_once("xml.php"); #裏面包含xml資料的截取功能
144
require_once("xml.php"); #裏面包含xml資料的截取功能
145
require_once("zerossl.php"); #裡面包含應用zerossl提供的服務
145
require_once("zerossl.php"); #裡面包含應用zerossl提供的服務
146
 
146
 
147
#匯入全域的設定檔
147
#匯入全域的設定檔
148
require_once(pathinfo(__FILE__)["dirname"]."/../../../etc/qbpwcf/allInOneConfig.php"); 
148
require_once(pathinfo(__FILE__)["dirname"]."/../../../etc/qbpwcf/allInOneConfig.php");
149
 
149
 
150
#覆蓋資料庫連結用的資訊
150
#覆蓋資料庫連結用的資訊
151
#$dbAddress="localhost";#資料庫的位置
151
#$dbAddress="localhost";#資料庫的位置
152
#$dbPort="3306";#資料庫的 tcp port
152
#$dbPort="3306";#資料庫的 tcp port
153
#$dbAccount="root";#資料庫帳號
153
#$dbAccount="root";#資料庫帳號
Line 221... Line 221...
221
	#debug
221
	#debug
222
	var_dump($changeSettings);exit(1);
222
	var_dump($changeSettings);exit(1);
223
 
223
 
224
	}#if end
224
	}#if end
225
 
225
 
226
?>
-
 
227
226
?>
-
 
227