FATAL ERROR: register_globals is disabled in php.ini, please enable it!

To resolve this error we need to add or modify our php.ini file to enable the register_globals setting. Find the location of the php.ini file. Edit the file /usr/local/lib/php.ini  using vi editor and uncomment the line (removing the ; will uncomment the line) register_globals. Change register_globals = Off to  register_globals = On Save the file and exit .   […]

Continue Reading…

Redirect from https to http except One folder

Sometimes we need to redirect all URL from https to http except one URL,In that case we just have to add below line above the redirection code in .htaccess file: RewriteRule ^foldername/ – [L] Now all the url except the foldername will be redirected from https to http: RewriteRule ^foldername/ – [L] RewriteCond %{SERVER_PORT} ^443$ RewriteRule ^(.*)$ http://www.cpanelplesk.com/$1 [R=301,L] […]

Continue Reading…

Install and Configure phpMyAdmin on Ubuntu

Previously we have talk about how to install and configure phpmMyAdmin on CentOS. Here through the below steps we are explaining how to Install and Configure phpMyAdmin on Ubuntu server. First of all, before installing anything new we have to make sure that the list of available packages is up to date. apt-get -y update Now we can install phpMyAdmin using the below command: […]

Continue Reading…