Sometimes when trying to upload some huge SQL file using PHPMYADMIN we might come across this ERROR MESSAGE Error: You probably tried to upload too large file. Please refer to documentation for ways to workaround this limit There is simple a fix for this:-... (Continue reading)
If you get a Too many connections error when you try to connect to the mysq server, then it clearly means that all available connections are in use. Too Many Connections can be caused by either a lot of simultaneous... (Continue reading)
Here i am gonna quickly explain you the difference between ScriptAlias and Alias example: ScriptAlias /cgi-bin / www/cgi-bin/ A request for http://mywebpage.com/cgi-bin/foobar would cause the server to run the script /www/cgi-bin/foobar. This configuration is essentially equivalent to: Alias /cgi-bin/ /www/cgi-bin/... (Continue reading)
This is a very simple code to remove non alphanumeric charecters from a variable using php. THE CODE < ?php $str = "Here! are some numbers 1244 and some non alphanumeric charecters !£$%^&"; $new_string = preg_replace("/[^a-zA-Z0-9\s]/", "", $str); echo $new_string;... (Continue reading)
Some times the AddHandler application/x-httpd-php .php .htm .html .my whatever if you put this in .htaccess file or in HTTPD.conf it seems to be not working. WHY? Because sometimes especially if you are using a shared hosting it will be... (Continue reading)