How to change port (if other program already use it). For example port 80 uses by skpye
To change it - go to xampp control panel & click config (Module/Apche). Click the Apche (httpd.conf)
Once the httpd.con open - find the "Listen 80" and change itu to 8080 as below and save
#Listen 12.34.56.78:8080
Listen 8080
After that go to xampp control panel again and refresh (click stop & start) - now apche port showing 8080
To increase limit in php.ini :-
- max_execution_time = 600
- max_input_time = 600
- memory_limit = 512M
- post_max_size = 64M
- upload_max_filesize = 64M
- mysql.connect_timeout = 600
Further reading:-