Can’t run XAMPP – MySql

This is as a result of some files in C:\xampp\mysql\data\mysql getting corrupted. Solution: Back up C:\xampp\mysql\data Copy all file C:\xampp\mysql\backup Paste and replace existing file in: C:\xampp\mysql\data, except for the ibdata1 file. Leaving ibdata1 will help against table does not exist error.

using mod_rewrite with XAMPP and windows 7 – 64 bit?

Below are the instructions on how to enable .htaccess mod_rewrite in xampp. Open and edit C:\xampp\apache\conf\httpd.conf in a text editor Find the line which contains #LoadModule rewrite_module modules/mod_rewrite.so and (uncomment) change to LoadModule rewrite_module modules/mod_rewrite.so Find all occurrences of AllowOverride None and change to AllowOverride All Restart xampp That’s it you should be good to … Read more

How to install mod_wsgi for apache 2.4 and python 3.4 on windows?

It is better to build mod_wsgi yourself from code rather than use an arbitrary binary off the net. The steps are as follows. Ensure you have a decent Apache installation which includes header files, e.g. Apache 2.4.37 Win64 from Apache Lounge . Preferably installed at location of C:/Apache24. Ensure your Python installation is set up … Read more

PHP not working in XAMPP

If I got your question correctly, I think I had the same problem accessing a php file in XAMPP. I have been online for several hours searching forums and Google for the answer, not until I found the simple solution. I was accessing the PHP file as a file on c drive (eg. C:\xamp\htdocs\data.php or … Read more

Custom 404 error issues with Apache – the ErrorDocument is 404 as well

The ErrorDocument directive, when supplied a local URL path, expects the path to be fully qualified from the DocumentRoot. In your case, this means that the actual path to the ErrorDocument is ErrorDocument 404 /JinPortfolio/error/404page.html When you corrected it in your second try, the reason you see that page instead is because http://localhost/error/404page.html doesn’t exist, … Read more