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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.