Help with the directory

jm.langarica

New member
Joined
Oct 3, 2010
Messages
1
it seems i erased some files in public.htm and now i´m getting error 403 i didnt make a backup .

Is there a way to restore factory settings ??

Regards
 
Which public_html directory? For your site I assume, if you're just a user you can try contacting your hosting provider to see if they do regular server backups - or, if you're the server admin, then I'm affraid that you need to start from scratch.
 
Hi,

>> Is there a way to restore factory settings ??

Since the public_html is deleted for a single domain you can create it manually with correct ownership and permissions.
 
Just do a:

Code:
ls -all

Take a look if there are any special requirements, if there are not, you can do something like this:

Code:
cd /home/{user}/domains/{domain}/
mkdir public_html
chown {user}:{user}
chmod 755 public_html
 
Back
Top