Hello, I have an Ubuntu 11.04 fresh installation following the perfect server guide with a new ispconfig 3.0.4 installation. It looks like everything is working fine except for phpmyadmin, tried several solutions mentioned in other posts but it's not working with numeric or domain urls. Any help would be appreciated! Thanks in advance!
Update with browser info! Firefox shows this error message: Not Found The requested URL /phpMyAdmin was not found on this server. on this link: https://[Domainname]:8080/phpMyAdmin This link was selected by clicking on the icon in ispconfig IE shows this error message: Kan de webpagina niet vinden HTTP 404 Meest waarschijnlijke oorzaken: •U hebt het adres mogelijk verkeerd getypt. •Als u op een koppeling hebt geklikt, is deze mogelijk verouderd. Mogelijke acties: Geef het adres opnieuw op. Ga terug naar de vorige pagina Ga naar en zoek de gewenste informatie. Meer informatie https://[Domainname]:8080/sites/database_phpmyadmin.php?id=6 This link was selected by clicking on the icon in ispconfig The weird thing here is that both browsers use different links when clicking on the same icon
error when trying firefox Not Found The requested URL /phpMyAdmin was not found on this server. Apache/2.2.17 (Ubuntu) Server at Port 80
Then you might have not configured phpmyadmin for apache during installation. Run: dpkg-reconfigure phpmyadmin and select that apt shall configure it for apache2.
same problem hey there i've got the same problem. i tried everything above. didnt work. i've got a fresh multiserver setup exactly as described in the toturial for debian squeeze. only difference i've selected port 80 instead of 8080 and i manually edited the 000-ispconfig.vhost. i added a ServerName. any ideas ?
i complete The Perfect Server - Ubuntu 14.04 (Apache2, PHP, MySQL, PureFTPD, BIND, Dovecot, ISPConfig 3) stpes. But, phpmyadmin downloads a file instead of opening login page; how i can fix it?
Check the suphp.conf file and ensure that you commented out the lines mentioned in the tutorial: #<FilesMatch "\.ph(p3?|tml)$"> # SetHandler application/x-httpd-suphp #</FilesMatch> https://www.howtoforge.com/perfect-...hp-mysql-pureftpd-bind-dovecot-ispconfig-3-p4 Then restart apache.
before: <IfModule mod_suphp.c> <FilesMatch "\.ph(p3?|tml)$"> SetHandler application/x-httpd-suphp </FilesMatch> suPHP_AddHandler application/x-httpd-suphp AddType application/x-httpd-suphp .php .php3 .php4 .php5 .phtml <Directory /> suPHP_Engine on </Directory> # By default, disable suPHP for debian packaged web applications as files # are owned by root and cannot be executed by suPHP because of min_uid. <Directory /usr/share> suPHP_Engine off </Directory> # # Use a specific php config file (a dir which contains a php.ini file) # suPHP_ConfigPath /etc/php5/cgi/suphp/ # # Tells mod_suphp NOT to handle requests with the type <mime-type>. # suPHP_RemoveHandler <mime-type> </IfModule>after changed: <IfModule mod_suphp.c> # <FilesMatch "\.ph(p3?|tml)$"> # SetHandler application/x-httpd-suphp # </FilesMatch> suPHP_AddHandler application/x-httpd-suphp AddType application/x-httpd-suphp .php .php3 .php4 .php5 .phtml <Directory /> suPHP_Engine on </Directory> # By default, disable suPHP for debian packaged web applications as files # are owned by root and cannot be executed by suPHP because of min_uid. <Directory /usr/share> suPHP_Engine off </Directory> # # Use a specific php config file (a dir which contains a php.ini file) # suPHP_ConfigPath /etc/php5/cgi/suphp/ # # Tells mod_suphp NOT to handle requests with the type <mime-type>. # suPHP_RemoveHandler <mime-type> </IfModule> Then restart apache. but phpmyadmin downloads a file again