Also, the image upload script is really, really bad...
You can access it without even being logged as admin... I will leave the image upload form as a text input, and ask the user to upload it using Get-Simple built in uploader....
-- Edit --
Adding this code to plugins/imanager/uploadscript/upload.ini.php seems to solve the problem stated above:
You can access it without even being logged as admin... I will leave the image upload form as a text input, and ask the user to upload it using Get-Simple built in uploader....
-- Edit --
Adding this code to plugins/imanager/uploadscript/upload.ini.php seems to solve the problem stated above:
PHP Code:
include('../../../admin/inc/common.php');
login_cookie_check();
/* I strongly advice to search for this line and replace it like this. The original code uses $_SERVER['DOCUMENT_ROOT'], that's insecure and wans't configured to work with HTTPS */
'upload_script_url' => GSPLUGINPATH.'imanager/uploadscript/uploadwindow.php',