Hello,
For 2 month i have bad problems with my website: www.felder-gruppe.ro If i made o small adjustment on Control Pannel, the home page look the same but the others display the message “no imput file specified”. I contact the hosting provider and they told me that they made an Apache upgrade that isn;t supported by our .htaccess file. My programmer change the .htaccess file in order to fit their conditions, but the problem still persist. what can i do? Please help me!
I recived an answer from my hosting provider wich told me that i must change some lines in .htaccess file
RewriteRule (.) /index.php/$1 [L] with RewriteRule (.) /index.php/ [L].
I made those changes but if i made some changes shows again the “no imput file message”.
I think that every chage i made in Control Pannel owerrite the .htacess file. It is possible?
Sounds like they switched to fcgi.
We use this in all our .htaccess files, and sofar I haven’t had issues on any platform:
# deal with php5-cgi first
<IfModule mod_fcgid.c>
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>
<IfModule !mod_fcgid.c>
# for normal Apache installations
<IfModule mod_php5.c>
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
# for Apache FCGI installations
<IfModule !mod_php5.c>
RewriteRule ^(.*)$ index.php?/$1 [QSA,L]
</IfModule>
</IfModule>Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.