Good day, I'm having an issue with the http://www.howtoforge.com/perfect-server-opensuse-12.2-x86_64-apache2-dovecot-ispconfig-3 setup. Current ISPConfig Version: 3.0.5.3 When trying to access squirrelmail or phpmyadmin the browser prompts for a file download. This leads me to believe that the php files in those directories are not being interpreted. All other php files for the hosted (vhosts) sites are working. Any assistance will be greatly appreciated.
Thanks for the reply: cat /etc/apache2/conf.d/phpMyAdmin.conf : Alias /phpMyAdmin /srv/www/htdocs/phpMyAdmin Alias /phpmyadmin /srv/www/htdocs/phpMyAdmin <Directory /srv/www/htdocs/phpMyAdmin> Options FollowSymLinks AllowOverride None <IfModule mod_php5.c> php_admin_flag register_globals off php_admin_flag magic_quotes_gpc off php_admin_flag allow_url_include off php_admin_flag allow_url_fopen off php_admin_flag zend.ze1_compatibility_mode off php_admin_flag safe_mode Off php_admin_value open_basedir "/srv/www/htdocs/phpMyAdmin:/var/lib/php5:/tmp:/usr/share/doc/packages/phpMyAdmin:/etc/phpMyAdmin" # customize suhosin php_admin_value suhosin.post.max_array_index_length 256 php_admin_value suhosin.post.max_totalname_length 8192 php_admin_value suhosin.post.max_vars 2048 php_admin_value suhosin.request.max_array_index_length 256 php_admin_value suhosin.request.max_totalname_length 8192 php_admin_value suhosin.request.max_vars 2048 </IfModule> </Directory> <Directory /srv/www/htdocs/phpMyAdmin/libraries> Order allow,deny Deny from all </Directory> vi /var/log/apache2/error_log I have attached the /var/log/apache2/error_log file
The file seems to be fine. According to your error, mod_php is not installed or not enabled. please try: zypper install apache2-mod_php5 a2enmod php5
here is the output when I ran the command: zypper install apache2-mod_php5 Loading repository data... Warning: Repository 'openSUSE-12.2-Update' appears to outdated. Consider using a different mirror or server. Reading installed packages... Resolving package dependencies... The following package is going to be upgraded: apache2-mod_php5 1 package to upgrade. Overall download size: 1.1 MiB. No additional space will be used or freed after the operation. Continue? [y/n/?] (y): y Retrieving package apache2-mod_php5-5.3.15-1.20.1.x86_64 (1/1), 1.1 MiB ( 8.4 MiB unpacked) Retrieving delta: ./x86_64/apache2-mod_php5-5.3.15-1.16.1_1.20.1.x86_64.drpm, 97.4 KiB Retrieving: apache2-mod_php5-5.3.15-1.16.1_1.20.1.x86_64.drpm .............................................................[done] Applying delta: ./apache2-mod_php5-5.3.15-1.16.1_1.20.1.x86_64.drpm .......................................................[done] Installing: apache2-mod_php5-5.3.15-1.20.1 ................................................................................[done] There are some running programs that use files deleted by recent upgrade. You may wish to restart some of them. Run 'zypper ps' to list these programs. The server was rebooted and the problem is still around
Did you enabled the module with the a2enmod command and did the command report that it was enabled successfully before you rebooted?
Hi Til, I have since rebooted and still no luck with squirrelmail and phpmyadmin. Is there any other way to try solve the issue?