I am trying to install ExpressionEngine (licensed full version) on a new CentOS 5.5 Server.
I’ve installed apache, php, mysql, etc.
When running the installation wizard, I cannot get past the first step. Receiving the error
“Your config.php file does not appear to have the proper file permissions. Please set the file permissions to 666 (or the equivalent write permissions for your server) on the following file: expressionengine/config/config.php”
I have 777 permissions on the config.php and database.php file. I even went as far to chmod 777 -R the entire /opt/ee/ directory which is the DocumentRoot for the apache vhost for my installation.
What am I missing here???
phpinfo here: http://ctsi-sandbox03.labctsi.org/info.php
result of `ls -lah /opt/ee/system/expressionengine/config`:
[root@ctsi-sandbox03 ee]# ls -lah /opt/ee/system/expressionengine/config
total 216K
drwxrwxrwx 2 root root 4.0K Apr 28 02:34 .
drwxrwxrwx 24 root root 4.0K Apr 28 02:34 ..
-rwxrwxrwx 1 root root 3.1K Apr 28 02:34 autoload.php
-rwxrwxrwx 1 root root 12K Apr 28 02:34 captcha.php
-rwxrwxrwx 1 root root 5.2K Apr 28 02:34 colors.php
-rwxrwxrwx 1 root root 0 Apr 28 02:34 config.php
-rwxrwxrwx 1 root root 1.6K Apr 28 02:34 constants.php
-rwxrwxrwx 1 root root 7.3K Apr 28 02:34 countries.php
-rwxrwxrwx 1 root root 0 Apr 28 02:34 database.php
-rwxrwxrwx 1 root root 1.2K Apr 28 02:34 doctypes.php
-rwxrwxrwx 1 root root 1.7K Apr 28 02:34 foreign_chars.php
-rwxrwxrwx 1 root root 536 Apr 28 02:34 form_validation.php
-rwxrwxrwx 1 root root 3.2K Apr 28 02:34 glossary.php
-rwxrwxrwx 1 root root 508 Apr 28 02:34 hooks.php
-rwxrwxrwx 1 root root 4.8K Apr 28 02:34 html_buttons.php
-rwxrwxrwx 1 root root 114 Apr 28 02:34 index.html
-rwxrwxrwx 1 root root 4.3K Apr 28 02:34 languages.php
-rwxrwxrwx 1 root root 7.1K Apr 28 02:34 mimes.php
-rwxrwxrwx 1 root root 575 Apr 28 02:34 profiler.php
-rwxrwxrwx 1 root root 1.8K Apr 28 02:34 routes.php
-rwxrwxrwx 1 root root 1.1K Apr 28 02:34 session.php
-rwxrwxrwx 1 root root 3.3K Apr 28 02:34 smileys.php
-rwxrwxrwx 1 root root 1.3K Apr 28 02:34 stopwords.php
-rwxrwxrwx 1 root root 5.5K Apr 28 02:34 user_agents.phpmy very simple apache vhost:
<VirtualHost *:80>
ServerName ee-test.labctsi.org
ServerAdmin .(JavaScript must be enabled to view this email address)
DocumentRoot /opt/ee/
</VirtualHost>ps aux | grep httpd:
[root@ctsi-sandbox03 ee]# ps aux | grep httpd
root 22731 0.0 0.5 257748 12240 ? Ss 02:34 0:00 /usr/sbin/httpd
apache 22733 0.0 0.6 261768 13000 ? S 02:34 0:00 /usr/sbin/httpd
apache 22734 0.0 0.6 261792 13528 ? S 02:34 0:00 /usr/sbin/httpd
apache 22737 0.0 0.6 261784 13004 ? S 02:35 0:00 /usr/sbin/httpd
root 22836 0.0 0.0 61172 788 pts/1 R+ 02:52 0:00 grep httpdPlease note, I’ve also tried:
chown -R apache:apache /opt/eeAnd ofcourse restarting apache several times while changing permissions, etc.