View Full Version : Error 404
hi,
after instalation of free version v1.5 it seems everything is ok, but when I try to open "New Links", "Top Links" and "Popular Links" i get an error message:
"Object not found!
The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.
If you think this is a server error, please contact the webmaster. "
I tried to find html files like "top-links.html" but find nothing.
Please help.
redeye
10-04-2006, 11:53 AM
Geza
Can you post a URL please
I think I found the problem, but I don't know how to solve it. I have not installed mod_rewrite module.
I use Apache 2.0 at Suse 10 Linux. I don't know how to install mod_rewrite. If I try with Yast, that module is not on the list and I have no other option left. Maybe I shall try with LoadModule directive but I'm afraid because I don't know where to place mod_rewrite.c file.
crazyabs
10-04-2006, 03:14 PM
Problem with the script. snufat.com/links try those links it doesnt work.:mad: :mad:
Vincent Wright
10-04-2006, 04:06 PM
It's not a problem with the script, it's a problem with your mod_rewrite setting.
Please read this article:
http://www.esyndicat.com/support/desk/knowledgebase/view/1.html
Alasdair Hughes
10-04-2006, 06:31 PM
i have done this but i dont have an .htscces file or mod_rewrite file. Anyone send me then for Free version 1.5 it didn tcome when i downloaded it.
Sergey Ten
10-05-2006, 04:37 PM
Hello Alasdair Hughes,
This is code of .htaccess file.
RewriteEngine on
RewriteRule ^(.*)/$ index.php?category=$1 [QSA,L]
RewriteRule ^(.*)/index([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L]
RewriteRule ^new-links.html$ new-links.php [QSA,L]
RewriteRule ^new-links([0-9]+).html$ new-links.php?page=$1 [QSA,L]
RewriteRule ^top-links.html$ top-links.php [QSA,L]
RewriteRule ^top-links([0-9]+).html$ top-links.php?page=$1 [QSA,L]
RewriteRule ^popular-links.html$ popular-links.php [QSA,L]
RewriteRule ^popular-links([0-9]+).html$ popular-links.php?page=$1 [QSA,L]
RewriteRule ^editor-links/index.html$ editor-links.php [QSA,L]
RewriteRule ^editor-links/index([0-9]+).html$ editor-links.php?page=$1 [QSA,L]
RewriteRule ^(.*)/(.*)-l([0-9]+).html$ view-link.php?cat=$1&title=$2&id=$3 [QSA,L]
Addiel Lopez
11-08-2006, 01:41 AM
Im also having this same issue, I do have a .htaccess file with all the correct parameters yet still getting an error 404 when attempting to open catagories ext... PLEASE HELP
VERSION: 1.05 FREE (WITH INTENTION TO BUY SCRIPT)
BestICanBe
11-08-2006, 03:10 AM
Hello Alasdair Hughes,
This is code of .htaccess file.
RewriteEngine on
RewriteRule ^(.*)/$ index.php?category=$1 [QSA,L]
RewriteRule ^(.*)/index([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L]
RewriteRule ^new-links.html$ new-links.php [QSA,L]
RewriteRule ^new-links([0-9]+).html$ new-links.php?page=$1 [QSA,L]
RewriteRule ^top-links.html$ top-links.php [QSA,L]
RewriteRule ^top-links([0-9]+).html$ top-links.php?page=$1 [QSA,L]
RewriteRule ^popular-links.html$ popular-links.php [QSA,L]
RewriteRule ^popular-links([0-9]+).html$ popular-links.php?page=$1 [QSA,L]
RewriteRule ^editor-links/index.html$ editor-links.php [QSA,L]
RewriteRule ^editor-links/index([0-9]+).html$ editor-links.php?page=$1 [QSA,L]
RewriteRule ^(.*)/(.*)-l([0-9]+).html$ view-link.php?cat=$1&title=$2&id=$3 [QSA,L]
Hi Sergey Tan, is this .htaccess file for paid/licensed script or free script one?
I'm having the same problem here with my licensed script, the page goes blank when I click on one of those main categories/links I created.
Vasily B.
11-08-2006, 04:11 AM
Im also having this same issue, I do have a .htaccess file with all the correct parameters yet still getting an error 404 when attempting to open catagories ext... PLEASE HELP
VERSION: 1.05 FREE (WITH INTENTION TO BUY SCRIPT)
Hi and welcome to our support forums,
.htaccess files is included in our package. Make sure your file browser displays hidden files. Also make sure you have uploaded this .htaccess file to your esyndicat directory. Otherwise the script will not work.
If you want you can submit a ticket to our helpdesk (http://www.esyndicat.com/support/desk/) and we will check your problem with the script. But we might need your ftp credentials.
2 BestICanBe:
Here is the content for our Pro version .htaccess file:
# enable mod_rewrite
RewriteEngine on
# correct urls for yahoo bot
RewriteCond %{REQUEST_URI} !\..+$
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) %{REQUEST_URI}/ [R=301,L]
# mod_rewrite rules for categories pages
RewriteRule ^(.*)/$ index.php?category=$1 [QSA,L]
RewriteRule ^(.*)/index([0-9]+).html$ index.php?category=$1&page=$2 [QSA,L]
# mod_rewrite rule for suggest link page
RewriteRule ^suggest-link([0-9]+).html$ suggest-link.php?id=$1 [QSA,L]
# mod_rewrite rules for new links page
RewriteRule ^new-links.html$ new-links.php [QSA,L]
RewriteRule ^new-links([0-9]+).html$ new-links.php?page=$1 [QSA,L]
# mod_rewrite rules for top links page
RewriteRule ^top-links.html$ top-links.php [QSA,L]
RewriteRule ^top-links([0-9]+).html$ top-links.php?page=$1 [QSA,L]
# mod_rewrite rules for popular links page
RewriteRule ^popular-links.html$ popular-links.php [QSA,L]
RewriteRule ^popular-links([0-9]+).html$ popular-links.php?page=$1 [QSA,L]
# mod_rewrite rules for editors links page
RewriteRule ^editor-links/index.html$ editor-links.php [QSA,L]
RewriteRule ^editor-links/index([0-9]+).html$ editor-links.php?page=$1 [QSA,L]
# mod_rewrite rules for view link page
RewriteRule ^(.*)/(.*)-l([0-9]+).html$ view-link.php?cat=$1&title=$2&id=$3 [QSA,L]
# mod_rewrite rules for news page
RewriteRule ^news.html$ news.php [QSA,L]
RewriteRule ^(.*)-n([0-9]+).html$ news.php?title=$1&id=$2 [QSA,L]
# mod_rewrite rules for additional pages
RewriteRule ^p(.*).html$ page.php?name=$1 [QSA,L]
# mod_rewrite rules for error pages
RewriteRule ^([0-9]+).htm$ error.php?error=$1 [QSA,L]
# mod_rewrite rules for suggest link page
RewriteRule ^suggest-link-([0-9]+).html$ suggest-link.php?id=$1 [QSA,L]
# mod_rewrite rules for suggest category page
RewriteRule ^suggest-category-([0-9]+).html$ suggest-category.php?id=$1 [QSA,L]
# Google Sitemap
RewriteRule ^sitemap.xml$ google-sitemap.php [QSA,L]
# Yahoo site feed
RewriteRule ^urllist.txt$ yahoo-feed.php [QSA,L]
ErrorDocument 500 /dir/500.htm
ErrorDocument 404 /dir/404.htm
ErrorDocument 403 /dir/403.htm
ErrorDocument 401 /dir/401.htm
cadamedia
12-08-2008, 02:51 PM
hi, i have my htaccess correct and server fine etc however am also haveing this error issue with top listings, random v and new listings.. any other thouhts on what it could be? have posted before and been searching for answer 2 days now... ho hum
Alex B.
12-10-2008, 05:11 PM
try to disable mod_rewrite in admin panel >> Configuration >> General Configuration.
If the problem is gone try to contact your hosting company and ask them if this module is available.
vBulletin® v3.7.0, Copyright ©2000-2013, Jelsoft Enterprises Ltd.