Page 1 of 1

I'm having trouble with this ...

Posted: Sat Jun 21, 2003 6:52 pm
by OOnegative
I know this isn't php, but I'm having trouble with my website navigation ... If you go to my website and click on full story on one of my news posts the navigation on the left the side will not appear. Anyone know why?? Thanks in advance.

Posted: Sat Jun 21, 2003 7:04 pm
by volka
http://www.xboxextended.com/index.[b]shtml[/b]
http://www.xboxextended.com/news/fullnews.[b]php[/b]?id=3
The server is set up to let SSI handle *.shtml files and php *.php files - not both on one file.
E.g. with apache2 it is possible to assign multiple handlers (output filter to be correct) to one file type.

do you know which (web-)server software is used?

Code: Select all

<?php phpinfo(); ?>
might tell you

You can replace <!--#include virtual="/menu.html"--> by

Code: Select all

include('/menu.html');
in your .php files, the result is almost the same. But note that http://www.xboxextended.com/menu.html contains a complete html-document, i.e. you will have two <html>-elements (not a valid html-document anymore)
But this happens with SSI as well.
http://www.xboxextended.com/ wrote:<html>

<head>
...
<td background="images/left.gif">&nbsp;<html>

<table border="0" cellpadding="0" ...

Posted: Sat Jun 21, 2003 7:13 pm
by volka
*bump*

(note to self: should not edit posts that often, when threads are that new. Posters might be missing the edited version :-/ )

Posted: Sat Jun 21, 2003 7:19 pm
by OOnegative
It's working now. Thank you very much for your help.