Questions tagged [http-status-code-403]

403 Forbidden: The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.

The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. If the server does not wish to make this information available to the client, the status code 404 (Not Found) can be used instead.

236 questions
4
votes
3 answers

Why am I getting Network error: 403 Forbidden in firebug for files I am not trying to access?

QUESTIONs I'd like to know why I am getting Network error: 403 Forbidden in firebug for files that I am not trying to access? is it likely to cause any serious problems on the webserver? how to fix it. Why is my browser trying to access those…
TryHarder
  • 286
  • 1
  • 4
  • 14
4
votes
1 answer

Squid 403's every request as an HTTP proxy

So I am trying to setup a squid as an HTTP proxy. This proxy is for testing purposes only and on an internal network, unreachable from outside. I can connect to the proxy fine, but Squid 403's every HTTP request. In a quick and dirty attempt to…
Snaxib
  • 175
  • 1
  • 1
  • 5
4
votes
2 answers

403 with Apache and Symfony on Ubuntu 10.04

I'm trying to run symfony on my apache installation (I'm using xampp for the whole package) and it keeps giving me a 403 error every time I try to access my website. I've got vhosts set up with the following: ServerName…
Dominic Santos
  • 141
  • 1
  • 3
3
votes
3 answers

Jenkins Server throws 403 while accessing rest api or using jenkins java client to create job

I am trying to create a job on Jenkins using java client (https://github.com/jenkinsci/java-client-api) by calling .createJob(String jobName, String configXml) . However, Jenkins server throws 403 forbidden error. Sample Code : HttpClientBuilder…
Kumar
  • 211
  • 3
  • 7
3
votes
1 answer

NginX - allow - custom error page

This is rather interesting Guys! I have the following code in one of my webapplications NginX configuration: location /login { #access_log off; proxy_pass https://public; proxy_set_header X-Real-IP…
Bert
  • 1,028
  • 1
  • 16
  • 33
3
votes
1 answer

Nginx redirect all 403 to 404?

I'm trying to get 403 responses to be exactly identical to 404 ones. Not sure if there's a proper way to do it, but setting error_page 403 404 is my current method. Which works, but it rewrites the url to mysite.com/404 for 403's while regular 404's…
House3272
  • 169
  • 1
  • 5
3
votes
1 answer

Is it possible to set the Status-Line header with Apache's Header directive?

My searches have turned up blank... I'm trying to change the 403 Forbidden status of the response to a 404 Not Found status with this line: Header set Status-Line "HTTP/1.1 404" "expr=%{REQUEST_STATUS} == 403" However, this is having no effect. I…
3
votes
1 answer

nginx 403 when serving static files + reverse proxy

I'm trying to serve a node app through nginx, but first attempt to serve static files that may be in a /public folder. I've got that much working -- but when accessing domain.tld/ or the index of static folders, I get a 403; directory index of…
3
votes
2 answers

nginx suddenly redirecting everything to 403 page, can this be debugged or traced?

I'm not sure what happened to my nginx install. Suddenly all page requests are being redirected to the 403 page. Yesterday I tried to add a user agent to block, restarted service from that point everything was being sent to 403. I backed out that…
ProfessionalAmateur
  • 937
  • 6
  • 17
  • 27
3
votes
1 answer

Cron Daemon Wget blocked

I've got nginx on Debian 7 without cpanel. I am seting-up my Crontab like this: */45 * * * * wget "http://example.com/cron-url.php" >/dev/null 2>&1 The above cron is being blocked with 403 forbidden: --2014-12-10 05:40:01-- …
Neel
  • 1,441
  • 7
  • 21
  • 35
3
votes
2 answers

403 Forbidden when trying to access Nginx

I've just got a new server and want to try some other things. Like Nginx instead of Apache. So, installed nginx, got the Welcome page, installed php5-fpm and download a Wordpress to give a try. But, I still got a 403 Forbidden when I try to go to…
Axiol
  • 173
  • 1
  • 2
  • 8
3
votes
2 answers

How to solve "403 Forbidden" on CentOS6 with SELinux Disabled?

I have a machine on Linode that is driving me crazy. Linode does not have SELinux on CentOS6. I'm trying to configure to put my website in /home/websites/public_html/mysite.com/public. As I don't have SELinux enable, how can I avoid the "403…
André
  • 181
  • 4
  • 6
  • 14
3
votes
1 answer

Adding empty .htaccess gives 403 error

When I add an empty .htaccess file to server root (touch .htaccess) I get a 403 error. The samme error appears no matter what I put in the file (I've tried specifying directives etc). Example of auth directive I've tried:
o01
  • 249
  • 2
  • 12
3
votes
3 answers

Problems with apache svn server (403 Forbidden)

Iv recently setup a SVN server on my papache webserver. I installed USVN http://www.usvn.fr/ to help manage the repositories from a web interface. When I create a repository and try to import code into it from netbeans i get the following error:…
lanrat
  • 737
  • 4
  • 11
  • 19
2
votes
3 answers

Sharepoint error 403 access forbidden

I am new to sharepoint and after creating a new web application this is what i'm getting - The website declined to show this webpage HTTP 403 Most likely causes: •This website requires you to log in. This error (HTTP 403 Forbidden) means that…
seenasan
1
2
3
15 16