Forums / Install & configuration / missing question mark after index.php error (windows)
Stephan Staubli
Wednesday 08 March 2006 6:26:58 am
hy
on my windows installations of ezp i have the problem that all links are like
www.domain.tld/Exponential/index.php/news/news
instead of
www.domain.tld/Exponential/index.php?/news/news
the missing question mark "?" after index.php creates errors:
warning: Unknown(c:\var\www\html\virtualdomains\10\ezpwin1.net\documents\Exponential\index.php\news\news): failed to open stream: No such file or directory in Unknown on line 0
Warning: (null)(): Failed opening 'c:\var\www\html\virtualdomains\10\ezpwin1.net\documents\Exponential\index.php\news\news' for inclusion (include_path='.;c:\php4\pear') in Unknown on line 0
do you have any idee how i can fix this?
thanks for your helps staubli
Łukasz Serwatka
Thursday 16 March 2006 11:21:34 pm
Stephan, do you use FastCGI server API? There was bug in Exponential where CGI detection not worked with FastCGI. Try with latest Exponential version, or better, install your PHP as apache module (recommend).
Personal website -> http://serwatka.net Blog (about eZ Publish) -> http://serwatka.net/blog
Thursday 23 March 2006 6:43:42 am
hy Lukasz
thanks for your answer.
on windows we dont use apache, we use IIS.the error is the same when i use latest version of Exponential.
is IIS actually supported?? the page loads fine, so every thing seems to work, but all links are corrupt because of the missing questionmark "'?"
stephan
Thursday 23 March 2006 7:05:00 am
IIS is not officialy supported but can you replace piece of code in file lib/ezutils/classes/ezsys.php line 841
$isCGI = ( substr( php_sapi_name(), 0, 3 ) == 'cgi' );
with
$isCGI = true;
Then clear all the cache and try again?
Björn X
Thursday 23 March 2006 8:35:47 am
Hey,
eZ is working under IIS. just it is not wokring when php runs in any CGI mode.
Switch to SAPI mode, when you won't have problems.