open xampp/php/php.ini with your notepad. Before doing anything on this file, make sure to make a back up copy of this file by saving it as php.iniDeFault.
Change post_max_size and upload_max_filesize values to 300M, make sure the
Read more about your scripts requirements. Normally they want you to have higher values on
max_execution_time .. the default settings provided by xampp and any other php distros are set to about 30 or 60. This value will not suffice waiting for your upload to finished.
Change max_execution_time = 30 to your script's requirements
Change max_input_time = 60 to your script's requirements.
If you have a really good memory installed on your desktop, add more memory for your xampp's consumption, by changing this value
memory_limit = 128M Normally 300M will suffice.
Check the recommended settings of your software for register globals. If it is requiring ON setting other than OFF which is a default setting, change the value from off to on. WARNING! CHANGE THIS ONLY PER YOUR SCRIPT REQUIREMENTS. If they don't want you to turn this on, DO NOT TURN IT ON.
register_globals = Off
Make sure this value is set to ON.
file_uploads = On
Once again check for your software's recommendation about the allow_url_include, by default this is set to OFF due some big security issues. If they script requires you to turn this ON, that is the only time this has to be ON.
Does your script requires eAccelerator or Zend plugin?,.. Yes? Change this
;zend_extension to this zend_extension
Xdebug requirements.. does your script requires you to turn on the xdebug during devemopement? If yes, find
[XDebug]
and change this -> ;zend_extension = "\xampp\php\ext\php_xdebug.dll" to this zend_extension = "\xampp\php\ext\php_xdebug.dll"
That's all I think of right now, please DO NOT hesitate to post your script's server requirements here, so that I can help you more..
Save all of your changes, and restart exampp.. THIS IS IMPORTANT..
This is the most common misunderstanding between the developer and the script users. Most script users are in the assumption of a plug and play script. Just upload it to the server, and it will work. Not even cosidering the server requirements of the script. On the other hand, developers sometimes fail to disclose their server requirements to the user.