phpmyadmin port change? [closed]

How do i change my default phpmyadmin port to 443 or 9999? Is it possible or do I have use port 80 only? If possible, then how do I change share the same?

Apache is listening on port 9999 for sure. However, going to URL

http://<webserver>:9999/phpmyadmin/

Will give following error (with Firefox browser)

An error occurred during a connection to webserver:9999.

SSL received a record that exceeded the maximum permissible length.

(Error code: ssl_error_rx_record_too_long)

Anyone has any clue what is going on?

Answer

edit the config.inc.php file in the phpMyAdmin directory and change the following line:

$cfg['ForceSSL'] = FALSE; // whether to force using https 

Attribution
Source : Link , Question Author : Rajat , Answer Author : Mark Henderson

Leave a Comment