I just installed the Zeus beta and I noticed that the DirectoryIndex in my Apache config look a bit off:
DirectoryIndex dex index.html index.cfm
Was there an extra "dex" added to that on install?
Thanks,
Amit
Confirmed, I too have found this problem in the full release. I installed it on a fresh install of OS X Lion. It modified the httpd.conf file in the following ways:
<IfModule dir_module>
DirectoryIndex dex index.html
</IfModule>
...
and later on
...
<IfModule php5_module>
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
<IfModule dir_module>
DirectoryIndex x index.html index.php index.cfm
</IfModule>
</IfModule>
...
and of course at the end it adds
...
Include "/private/etc/apache2/mod_jk.conf"
This has caused issues with Apache not automatically opening index.cfm
Please fix
David
First: these are community forums, not an official Adobe supprt channel, so we can't fix things. You would need to raise a bug with Adobe, and it'd possibly be fixed in the next update to CF.
Secondly: if you selected the secure install option during installation... what you're seeing is by design. Did you select the secure option?
--
Adam
NVM, silly me. So the problem was the following
<IfModule dir_module>
DirectoryIndex dex index.html
</IfModule>
...
should have been
...
<IfModule dir_module>
DirectoryIndex index.cfm index.html
</IfModule>
Looks as if the parser used to modify httpd.conf in the install is making some mistakes.
and the x in the php module shouldn't be there at all.
This solved the problem
Please vote for the bug fix as it is simple to do
David
North America
Europe, Middle East and Africa
Asia Pacific