Hi,
Can you tell me how to change the destination folder for Uploads... or point me to the php file that specifies this destination.
Thanks,
CliffElion
In pre-1.3.11 there is a function in lib/config.php:
function getUploadFilePath() { return defined('PHPWIKI_DIR') ? PHPWIKI_DIR . "/uploads/" : "uploads/"; }
The UpLoad plugin (lib/plugin/UpLoad.php) uses that.
Dan
Log in to post a comment.
Hi,
Can you tell me how to change the destination folder for Uploads... or point me to the php file that specifies this destination.
Thanks,
CliffElion
In pre-1.3.11 there is a function in lib/config.php:
function getUploadFilePath() {
return defined('PHPWIKI_DIR') ? PHPWIKI_DIR . "/uploads/" : "uploads/";
}
The UpLoad plugin (lib/plugin/UpLoad.php) uses that.
Dan