Hi all,
I’ve had A Week. Network techs upgraded some software, broke EE, I fresh-installed and began manually moving my sites over, they had to tweak and recompile again because I couldn’t send out emails, and EE broke again.
I’m running EE 1.6.9 build 20100415. Server environment: CentOS, Apache 2.0.63, PHP version 5.2.9, MySQL 4.1.22, PHP running as CGI, PHPsuexec.
Now EE 1.6.9 is working…all except for one aspect. I cannot rename the index.php file to anything else - like MMU or i-still (or even plain index, with no .php extension). I’d like some help figuring out all possible troubleshooting steps.
I am successfully running multiple sites off of this installation, using the “oldschool” method of defining the variables in the path.php files: http://www.sparklecrackcentral.com and http://www.beautyblogsbackstage.com There’s another site, http://www.cynicsteaparty.com , that’s running off of the same installation. The only difference is that that site is trying to use a renamed index.php. This problem shows up whether I’m running a single site or multiple sites off of this installation.
I’m currently using the following code in my .htaccess file:
<Files i-still>
SetHandler application/x-httpd-php
</Files>
DirectoryIndex i-still index.phpPath to this site’s index files (partially obscured / misnamed for security reasons) is
/home/USR/public_html/cynicsteaparty/.htaccess
/home/USR/public_html/cynicsteaparty/path.php
/home/USR/public_html/cynicsteaparty/i-still
This domain’s doc-root is a peer to the sites for sparklecrackcentral.com and beautyblogsbackstage.com:
sparklecrackcentral.com paths/document root:
/home/USR/public_html/sparklecrackcentral/.htaccess
/home/USR/public_html/sparklecrackcentral/path.php
/home/USR/public_html/sparklecrackcentral/index.php
beautyblogsbackstage.com paths/document root:
/home/USR/public_html/beautyblogsbackstage/.htaccess
/home/USR/public_html/beautyblogsbackstage/path.php
/home/USR/public_html/beautyblogsbackstage/index.php
And in the .htaccess and path.php files for the latter two domains, the site’s index file is defined as index.php. The latter two domains work, while cynicsteaparty.com doesn’t. The only difference is the name / definition of the site index file.
I’ve tried changing the SetHandler declaration to ForceType, and that didn’t work.
What else can I try?