404 Not Found errors on my site (visiolist)

gamespro

New Member
After moving my site to new host

i am keep getting on every page 404 not found errors except the homepage and admin cp
i have mod rewrite, mod fcgi etc everything enabled
any idea how do i trace it?
theres no error log or anything showing
 

Mark

Administrator
Staff member
Sounds like you are missing the .htaccess file, or your server is not configured properly.
 

gamespro

New Member
Not missing .htaccess :S and i think yes it is related to some vhost config any idea how do i trace the error?
 

Mark

Administrator
Staff member
If the htaccess file is in place, but the rules are not being activated you will need to ask your server admin, you may need some server specific line in htaccess to make it work. Tell them your .htaccess is not working, I am not familiar with your environment so I am not sure what it could be, there is nothing special about our default .htaccess file, it should just work.

You might also search the forum here for htacces, I seem to recall someone else years ago at 1and1 or godaady or some other bad host had to add something extra to make it work.
 

gamespro

New Member
its running on a PC/server , wamp->apache
i also have access to the files i have configured everything
fast cgi , mod rewrite everything is enabled in apache
so i have to do/configure everything in apache, because it has no hosting provider.

and here is the config of my vhost of gamespro100

<VirtualHost *:80>
ServerAdmin *********
DocumentRoot "*******"
ServerName *************
ServerAlias *******
ErrorLog "C:\******\error.log"
CustomLog "*******
<Directory "*****">
Options All
Options Indexes FollowSymLinks ExecCGI
AddHandler fcgid-script .php
Options +SymLinksIfOwnerMatch
DirectoryIndex index.php index.php3 index.html index.htm index.cgi index.pl
AllowOverride None
Allow from all
Require all granted
</Directory>
 
Last edited:

gamespro

New Member
don't know still unable to fix it
when i untick the Clean URL box from admincp it start working fine
but when i tick the Clean url box in admincp settings its giving 404 Page errors again
so i don't know how mod_rewrite is not working :S


EDIT : fixed it

by changing vhosts settings to

Options ExecCGI
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
AddHandler fcgid-script .php
#Options +SymLinksIfOwnerMatch
DirectoryIndex index.php index.php3 index.html index.htm index.cgi index.pl



Thanks for your HELP
 
Last edited:
Top