big problem I need help please

SILENT JOKER

New Member
Messages
1
Reaction score
0
Points
0
I have installed an new vb version in the sever
but this message appeare
Forbidden

You don't have permission to access /vb/adksn/index.php on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

what's the reasons ..? and how can solve it ?
i thinke it's from the server it self
they should give my a permission fot this

this is the first problem

the second i want to link my forum with another domain in this server
x10hosting.com
 

masshuu

Head of the Geese
Community Support
Enemy of the State
Messages
2,293
Reaction score
50
Points
48
Check the permissions. If you have apache set up to run as a user like www-data, but you do all your work as root, then all of the files are going to be accessible by root, not www-data.
I would suggest using su {user who owns the site} and doing any site related work that way.
 

Zayfox

New Member
Messages
28
Reaction score
2
Points
0
Go to the root directory of your files (probably /var/www) and type the following commands:

chmod -R 0755 ./
This command makes everything in that directory and deeper accessible to the owner and the group, but read/execute-only to everyone else.
chown -R www-data:www-data ./*
This command sets everything in that directory and deeper owned by www-data. Used in conjunction with the previous command should get your site permissions fixed.

To be honest, I don't quite understand your second question. What are you wanting to link? Addresses? Databases?
 
Top