How to change the URL from “localhost” to something else, on a local system using wampserver?

WINDOWS + WAMP solution Step 1 Go to C:\wamp\bin\apache\Apache2.2.17\conf\ open httpd.conf file and change #Include conf/extra/httpd-vhosts.conf to Include conf/extra/httpd-vhosts.conf i.e. uncomment the line so that it can includes the virtual hosts file. Step 2 Go to C:\wamp\bin\apache\Apache2.2.17\conf\extra and open httpd-vhosts.conf file and add the following code <VirtualHost myWebsite.local> DocumentRoot “C:/wamp/www/myWebsite/” ServerName myWebsite.local ServerAlias myWebsite.local <Directory … Read more

Can’t import database through phpmyadmin file size too large

For Upload large size data in using phpmyadmin Do following steps. Open php.ini file from C:\wamp\bin\apache\Apache2.4.4\bin Update following lines max_execution_time = 259200 max_input_time = 259200 memory_limit = 1000M upload_max_filesize = 750M post_max_size = 750M than after restart wamp server or restart all services Now Upload data using import function in phymyadmin. Apply second step if … Read more