LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   Postfix Admin (https://www.linuxquestions.org/questions/linux-server-73/postfix-admin-4175414340/)

thewebportfolio 07-01-2012 04:38 PM

Postfix Admin
 
PostFixAdmin?

http://example.com/PostFixAdmin -> I've followed these instructions http://wiki.mediatemple.net/w/(ve):I..._Postfix_Admin upto where i should see a setup.php page at http://mydomain.co.uk/PostFixAdmin/setup.php

All i get is a blank (white) page - no errors or anything

Many Thanks in advance

Kustom42 07-02-2012 01:12 PM

That can be caused by some PHP applications and the way PHP is set to parse. Do you know if you have the ExecCGI function enabled for your domains vhost?

It would be followed after the "Options" directive in your httpd.conf, .htaccess or wherever your virtual host record is maintained on the server.

Code:

Options +ExecCGI
If you cannot locate anything related to your Options for your virtual host you can create a directory record in your httpd.conf for the directory and enable it.

Code:

<Directory "/var/www/html/path/to/directory">
Options +ExecCGI
Order allow,deny
Allow from all
</Directory>



All times are GMT -5. The time now is 09:18 PM.