Hello,
I am trying to fix my server file path. After moving my web project file from localhost to the server. There are several errors that appears. One of them is: Destination folder does not exist or no permissions to see it.
file_upload_exercise.php
define('DESTINATION_FOLDER','c://xampp/htdocs/squprime/administrator/admin/materialstorage/');
if (!@file_exists(DESTINATION_FOLDER)) {
$errors[] = "Destination folder does not exist or no permissions to see it.";
break;
}
The same file works on localhost, I already check my file - it is correct! I wonder what I did wrong?