|
So, am I supposed to erase all folders and files in my uploads folder? There are files in the uploads folder with numbers, with some containing jpgs or gifs...
Next I am to add code in my php-inc.php file:
// Turn off the magic quoting and remove notices
set_magic_quotes_runtime(0);
error_reporting (E_ALL ^ E_NOTICE);
ini_set("max_execution_time", 0);
ini_set("memory_limit", "40M");
This doesn't work at all for me, am I missing a step?
|