上傳檔案櫃:修訂版本之間的差異
出自六年制學程
(→三程式) |
(→嘉禾書院) |
||
第 3 行: | 第 3 行: | ||
===嘉禾書院=== | ===嘉禾書院=== | ||
/constant.php | /constant.php | ||
− | + | *用 substr(urldecode($_SERVER['REQUEST_URI']),0,25)=='/uploadFiles/嘉禾書院' 判斷是否為嘉禾書院,若是 | |
*#使用嘉禾書院專屬資料庫帳號,管嘉禾書院專屬資料夾 | *#使用嘉禾書院專屬資料庫帳號,管嘉禾書院專屬資料夾 | ||
*#該帳號對 webContent.fileUsers 的表和欄都有 select 權限 | *#該帳號對 webContent.fileUsers 的表和欄都有 select 權限 | ||
*#該帳號對 webContent.filePath 的表有 select,Insert,Update,Delete 權限,對欄有 select,Insert,Update 權限 | *#該帳號對 webContent.filePath 的表有 select,Insert,Update,Delete 權限,對欄有 select,Insert,Update 權限 | ||
+ | |||
==程式== | ==程式== | ||
===三程式=== | ===三程式=== |
2022年1月5日 (三) 17:01的修訂版本
資料表
嘉禾書院
/constant.php
- 用 substr(urldecode($_SERVER['REQUEST_URI']),0,25)=='/uploadFiles/嘉禾書院' 判斷是否為嘉禾書院,若是
- 使用嘉禾書院專屬資料庫帳號,管嘉禾書院專屬資料夾
- 該帳號對 webContent.fileUsers 的表和欄都有 select 權限
- 該帳號對 webContent.filePath 的表有 select,Insert,Update,Delete 權限,對欄有 select,Insert,Update 權限
程式
三程式
新版的 admin.php 在 http://jendo.org/uploadFiles/丁志仁/剪報/ 之下
index.php與admin.php
- include 'common.php';
- include 'constant.php';
- 錯誤訊息不同
- include 'login.php';
- new login;
- include 'theme.php';
- echo $html1;
- 指定認證表並 logon();
- if(驗證不過){echo 錯誤訊息;}
else{
①admin.php有前置處理
②跑上傳函式uploadFile();
③echo showDir($admin,$root);根目錄和admin.php各有不同
} - echo $html2;
users.php
- include 'constant.php';
- 設定錯誤訊息
- include 'etable.php';
- new etable;
- include 'theme.php';
- echo $html1;
- 設定 sql[0],editable,formValidate 等屬性
- 指定認證表並 main();
- if(驗證不過){echo 錯誤訊息;}
- echo $html2;
圖
- 畫字程式
- logo.png
- 導航列.png
- button.png
- folder.gif
- text.gif
- back.gif
共用
- theme.php
- common.php