ERROR 403 when uploading my page to my web server

1

Hello everyone, I have a 403 error (Forbidden), which occurs when I make a request via jquery (ajax) to a php. The funny thing is that I miss this error when I try to save a css tag on the server (background-image: url ('')). and it does not happen with the rest of the css tags.

NOTE on my local server (Wamp server), it works as normal, this happens only on the web server, which makes me decide that it may be some issue of permissions.

NOTE2: I am using the serialization system (JSON.stringify and Base64_encode) to store my data on the server.

I thank you in advance for any help.

Attach captures

    
asked by Dei_TeoEstudio 14.02.2017 в 22:35
source

1 answer

1

From the start, the error console shows you clearly that you are trying to use at least one resource that does not exist: link

Next, access to the file link is returning an error code of 403

Check your save.php file, the permissions that you may have granted, perhaps through .htaccess, to the files you want to access, check the errorlog. Almost sure it will tell you where the problem is.

Greetings.

    
answered by 15.02.2017 в 12:49