Quote:
Originally Posted by en3r0 I seem to be having a similar problem, but nothing fixes it... I get a "Oops, what you're looking for isn't here!" page in the main window. |
There is wrong (relative) path in the code:
Replace first code:
PHP Code:
<br><a href="admin_links.php" onclick="javascript:window.open('admin_delete_stories.php', 'resultwindow', 'width=300, height=200')">Delete discarded stories</a>
with:
PHP Code:
<br><a href="admin_links.php" onclick="javascript:window.open('/admin_delete_stories.php', 'resultwindow', 'width=300, height=200')">Delete discarded stories</a>
... so you need to add a slash before 'admin_delete_stories.php'.
It works on my site (9.9.0).
Szy.