1
For example on my server I have in my htaccess file
DirectoryIndex main.php index.php
Main.php being my file
Index.php being XOOPS default file
I want to be able to paste shorer urls, for example
http://www.myurl.com/?c=flashto load up my XOOPS flash article page.
I have the correct PHP script in place, example:
if ($c == "downloads")
{
include("http://www.myurl.com/modules/wfflash");
}
But XOOPS says:
Sorry, you don't have the permission to access this area.
If the page does not automatically reload, please click here
Then redirects me to the login box, when logged in after entering my username and password it does redirect to the desired page.
Any ideas how to make this actually work without asking for a user/pass for an unprotected page?
Thanks in advance.