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 93... Line 93...
93
 
93
 
94
		}#if end
94
		}#if end
95
 
95
 
96
	#儲存lib path
96
	#儲存lib path
97
	$folderOfUsrLib=$output[0];
97
	$folderOfUsrLib=$output[0];
98
	
98
 
99
	}#if end
99
	}#if end
100
 
100
 
101
#匯入自建的php類別檔
101
#匯入自建的php類別檔
102
require_once("amazon.php"); #跟 amazon 互動的類別
102
require_once("amazon.php"); #跟 amazon 互動的類別
103
require_once("analyse.php"); #跟問卷整理分析有關的類別
103
require_once("analyse.php"); #跟問卷整理分析有關的類別
Line 175... Line 175...
175
#參考資料:
175
#參考資料:
176
#http://www.tcpdf.org/index.php
176
#http://www.tcpdf.org/index.php
177
require_once("tcpdf/tcpdf.php");
177
require_once("tcpdf/tcpdf.php");
178
 
178
 
179
#匯入全域的設定檔
179
#匯入全域的設定檔
180
require_once(pathinfo(__FILE__)["dirname"]."/../../../etc/qbpwcf/allInOneConfig.php"); 
180
require_once(pathinfo(__FILE__)["dirname"]."/../../../etc/qbpwcf/allInOneConfig.php");
181
 
181
 
182
#覆蓋資料庫連結用的資訊
182
#覆蓋資料庫連結用的資訊
183
#$dbAddress="localhost";#資料庫的位置
183
#$dbAddress="localhost";#資料庫的位置
184
#$dbPort="3306";#資料庫的 tcp port
184
#$dbPort="3306";#資料庫的 tcp port
185
#$dbAccount="root";#資料庫帳號
185
#$dbAccount="root";#資料庫帳號
Line 415... Line 415...
415
	#debug
415
	#debug
416
	var_dump($changeSettings);exit;
416
	var_dump($changeSettings);exit;
417
 
417
 
418
	}#if end
418
	}#if end
419
 
419
 
420
?>
-
 
421
420
?>
-
 
421