Forums

WP on AIX 5.3.8 issues with httpd.conf? (2 posts)

  1. mduszyk
    Member
    Posted 10 months ago #

    Hi,
    After many years of nothing but AIX administration, I have to setup a departmental blog - and I suffer a lot:-)))

    I have all components working (mysql, apache, and php) but not the most important one - WP. I can set my database, get admin password and this is pretty much all that happens. After that I get an email with admin password and all ends and my browser can only list directories of our blog and this is all. All install reqs are met for this version of WP.

    All help you can offer will be greatly appreciated. If you could explain how the base directory/blog directory should be defined in the httpd.conf then if you ever get to Philadelphia - I will buy you a cheese steak:-)

    Thanks,

    Mark

    =============================================================
    The topology of my site:

    apache runs from: /opt/pware/bin/httpd
    mysql: /opt/pware/libexec/mysqld --basedir=/opt/pware ......
    path to our blog: /opt/pware/tso

    excerpts from httpd.conf:

    ServerRoot "/opt/pware"

    DocumentRoot "/opt/pware"

    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    </Directory>

    <Directory "/opt/pware">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>

    <Directory "/opt/pware/tso">
    Options Indexes FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>

  2. mduszyk
    Member
    Posted 10 months ago #

    Looking for earlier posts I found the solution!

    in my httpd.conf I had this:

    <IfModule dir_module>
    DirectoryIndex index.html
    </IfModule>

    after changing it to:

    <IfModule dir_module>
    DirectoryIndex index.html index.php
    </IfModule>

    All is up and running!

Reply

You must log in to post.

About this Topic