Problem with Snews

derson

New Member
Messages
3
Reaction score
0
Points
0
Hi
I have problem with snews. When I want to login or click to archive or other page I see this
Not Found

The requested URL /home/derson/public_html/snews/index.php was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
In other hostings this problem doesnt exist. What to do?
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
It looks like something is rewriting a URL improperly. That is the absolute path.

If you have an .htaccess in public_html and/or public_html/snews , that might be the problem. If you post the contents, perhaps I can spot a problem.

The difference from other hosts is probably due to how x10hosting is configured.
 
Last edited:

derson

New Member
Messages
3
Reaction score
0
Points
0
.htaccess in /public_html
# -FrontPage-

IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*

<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName derson5.x10hosting.com
AuthUserFile /home/derson/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/derson/public_html/_vti_pvt/service.grp

and this is .htaccess in snews
<IfModule mod_php4.c>
php_value session.use_trans_sid 0
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
RewriteEngine On
#RewriteBase /sNews17
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*) $1 [L]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?category=$1 [L]
 
Top