I'm having trouble with this ...
Moderator: General Moderators
-
OOnegative
- Forum Newbie
- Posts: 11
- Joined: Mon Jan 20, 2003 4:12 pm
I'm having trouble with this ...
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.
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?might tell you
You can replace <!--#include virtual="/menu.html"--> byin 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/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(); ?>You can replace <!--#include virtual="/menu.html"--> by
Code: Select all
include('/menu.html');But this happens with SSI as well.
http://www.xboxextended.com/ wrote:<html>
<head>
...
<td background="images/left.gif"> <html>
<table border="0" cellpadding="0" ...
-
OOnegative
- Forum Newbie
- Posts: 11
- Joined: Mon Jan 20, 2003 4:12 pm