Jump to content

WAMP2 to XAMPP issue


Recommended Posts

HI all

 

I was having issues with WAMP2 crashing and so I switched to XAMPP

 

Everything seems fine apart from a few php scripts which are for image and file uploading and uploading is no longer happening, there is also no errors showing even though all errors are switched on to be displayed in the php.ini

 

Does anyone know if a specfic module needs to be activated?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/159594-wamp2-to-xampp-issue/
Share on other sites

6135 is E_ALL without E_NOTICE. The Notice errors are off for some reason - the php.ini that you are changing is not the one the php is using, did not stop and start web server to get change made to php.ini to take effect, there is a .htaccess or local php.ini that is overriding the E_ALL setting. There very well could be Notice messages that would tell you why uploading does not work. Start by getting error_reporting set to E_ALL.

 

What does the phpinfo(); statement show for the file_uploads setting? And what does the following show for the $_FILES array -

 

echo "<pre>";
echo "FILES:";
print_r($_FILES);
echo "</pre>";

Link to comment
https://forums.phpfreaks.com/topic/159594-wamp2-to-xampp-issue/#findComment-841825
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.