it does not display news after it is added, it shows in admin screen but not main screen, i have even tried refresh, but still no luck, all perms are set correctly, and no errors show up in logs.
TIA
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sounds like server side includes are not enabled or set up properly. A quick way to test this is to create two files. Create one called one.html with the following content:
<HTML><HEAD></HEAD><BODY>
This is file 1<BR>
<!--#include virtual="./two.html" -->
</BODY></HTML>
And a second file called two.html with the following content:
This is file 2<BR>
Load one.html from your web server and see if you get:
This is file 1
This is file 2
If you only see the file 1 line, SSI is not working.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-03-02
Shouldnt the html files actually be shtml extensions?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
it does not display news after it is added, it shows in admin screen but not main screen, i have even tried refresh, but still no luck, all perms are set correctly, and no errors show up in logs.
TIA
Sounds like server side includes are not enabled or set up properly. A quick way to test this is to create two files. Create one called one.html with the following content:
<HTML><HEAD></HEAD><BODY>
This is file 1<BR>
<!--#include virtual="./two.html" -->
</BODY></HTML>
And a second file called two.html with the following content:
This is file 2<BR>
Load one.html from your web server and see if you get:
This is file 1
This is file 2
If you only see the file 1 line, SSI is not working.
Shouldnt the html files actually be shtml extensions?