Xampp server settings. |
After some struggle to get curl and mod rewrite to work I finaly found these settings.
To enable curl
Find the file php.ini that is in C:xamppapacheinphp.ini and uncomment extension=php_curl.dll
To enable mod_rewrite
Goto C:xamppapacheconf and open the file httpd.conf
Find the line which contains:
#LoadModule rewrite_module modules/mod_rewrite.so
uncomment this (it should be):
LoadModule rewrite_module modules/mod_rewrite.so
Also find: AllowOverride None
Should be: AllowOverride All |