| Author |
Message |
blackpudding Member
|
Posted: 26 Aug 2005 04:32:38
This isnt really a problem with Skalinks as such but when I click on 'control panel' or 'links' all I get is a directory listing. Obviously my host isn't set up to show index.php by default (the links are to directories).
My question is, how do I get the pages to show without (a) altering the code or (b) putting htm redirect pages in the directories?
Thanks!
BP
|
skalinks Admin
|
Posted: 26 Aug 2005 06:19:37
Hello blackpudding
You can disbale Rewrite Engine, go to"Settings" page, and change the value of field "ReWrite Engine Mod" from 1 to 0.
Thanks!
|
bug
|
Posted: 26 Aug 2005 06:32:47
Add the string bellow to the file .htaccess in the skalinks root directory:
DirectoryIndex index.html index.php index.shtml
If do not work, ask Your hosting provider add to apache configuration within Your VirtualHost section this directive:
<Directory "/Full/Path/To/Skalinks/Root/Directory">
AllowOverride Indexes Options
</Directory>
Also, this will allow You to forbid directory listing by adding to .htacces this string:
Options -Indexes
This is recommended setting for security reason.
|
blackpudding Member
|
Posted: 26 Aug 2005 06:47:15
You can disbale Rewrite Engine
Sorry but this didn't work for me :(
Add the string bellow to the file .htaccess
Cheers for that; the stupid thing is its me who changed the index page from index to news and buggered it up!!! Sometimes the obvious things just pass me by...
I'll let you know how the integration with my site goes. The script looks like just what I need :)
Cheers
BP
|