XAMPP Access forbidden!

Error:

New XAMPP security concept: 

Access to the requested object is only available from the local network.

This error was prompted when i was trying to access my local server from another PC on the network.

To solve this issue, follow the simple instructions below:

1. Open your http.conf file using text editor. I prefer notepad ++

2. Find Require local and put comment sign # like below:

#Require local

3. Now Restart your local server XAMPP.

I hope that helps. Please like us on facebook 🙂

 

PHPMyAdmin “no data received to import”

If you are using xampp and cannot import your database with the following error,

No data was received to import. Either no file name was submitted, or the file size exceeded the maximum size permitted by your PHP configuration

You probably need to adjust the maximum allowed size limit for uploading your database/files.

Here’s what you need to do.

1. Go to php folder under your Xampp source, mine is: D:\xampp\php

2. find php.ini (configuration settings)

3. Search for upload_max_filesize = 2M

4.  Change the file size limit depends on how large is your database.

5. Restart your local server and try to import again.