LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   apache related problem (HTTP Error 403 - Forbidden ) (https://www.linuxquestions.org/questions/linux-networking-3/apache-related-problem-http-error-403-forbidden-347089/)

Matir 07-27-2005 12:44 AM

Well, it could be that port 3128 is a squid proxy, whereas port 5100 is usually used by SOCKS proxies.

spandau 07-27-2005 01:06 AM

Quote:

Originally posted by Matir
Well, it could be that port 3128 is a squid proxy, whereas port 5100 is usually used by SOCKS proxies.

hello there matir i think its already midnight over there... its taking me quite awhile until my script to be done...

is it ok if you visit my thread after you wake up? ill still post some issues regarding this matter when it gets done.

thank you very much for the help i extremely appreciate it... and more power to you....:p

spandau 07-27-2005 01:21 AM

Quote:

Originally posted by Matir
Well, it could be that port 3128 is a squid proxy, whereas port 5100 is usually used by SOCKS proxies.

sorry about this martir,,,,

because i got a new error:

failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

my script is:



$context = stream_context_create(array('http'=>array('proxy'=>'tcp://203.167.109.146:5100')));

$contents = file_get_contents("http://domainname/webpage.htm", false ,$context);

Matir 07-27-2005 08:42 AM

Just changing the port to 5100 won't work unless there's a Socks 4/5 proxy server on that host.

spandau 07-27-2005 06:25 PM

Quote:

Originally posted by Matir
Just changing the port to 5100 won't work unless there's a Socks 4/5 proxy server on that host.

hi there again matir;)

i saw some free socks proxy sites would this work? even if the port is not exactly 5100?

the sites are:

http://www.atomintersoft.com/product...y/socks5-list/

http://www.samair.ru/proxy/socks.htm


thanks:)

Matir 07-27-2005 07:46 PM

You just need to make sure its pointed to a valid proxy.

spandau 07-27-2005 08:15 PM

Quote:

Originally posted by Matir
You just need to make sure its pointed to a valid proxy.
ive tried several socks proxies listed but i keep on getting this warning:

Warning: file_get_contents(http://www.yahoo.com) [function.file-get-contents]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond


my code is:

<?

$context = stream_context_create(array('http'=>array('proxy'=>'80.108.112.111:32167')));

$contents = file_get_contents("http://www.yahoo.com", false ,$context);


?>

socks4/5 i tried were:

201.235.78.20:1080 socks 4/5 Argentina
200.114.224.112:1080 socks 4/5 Argentina
200.126.186.153:1080 socks 4/5 Argentina
84.112.18.48:1080 socks 4/5 Austria
80.108.4.231:1080 socks 4/5 Austria
80.108.28.208:1027 socks 4/5 Austria
80.108.112.111:32167 socks 4/5 Austria


i tried them all, but all of them went in vain.... :(

Matir 07-27-2005 08:51 PM

hrrm. have you tried any http proxies?

And what version of PHP are you running?

spandau 07-27-2005 09:00 PM

Quote:

Originally posted by Matir
hrrm. have you tried any http proxies?

And what version of PHP are you running?


i have PHP 5 here......


i tried using http proxies my code is:


<?


$context = stream_context_create(array('http'=>array('proxy'=>'http://82.229.128.171:8080')));

$contents = file_get_contents("http://www.yahoo.com", false ,$context);




?>


i got a warning that says:


Warning: file_get_contents(http://www.yahoo.com) [function.file-get-contents]: failed to open stream: Unable to find the socket transport "http" - did you forget to enable it when you configured PHP?

Matir 07-27-2005 09:02 PM

Try removing the http:// from the front of the proxy name.

spandau 07-27-2005 09:05 PM

Quote:

Originally posted by Matir
Try removing the http:// from the front of the proxy name.


i did that my code now is:


<?


$context = stream_context_create(array('http'=>array('proxy'=>'82.229.128.171:8080')));

$contents = file_get_contents("http://www.yahoo.com", false ,$context);




?>


warning says:

Warning: file_get_contents(http://www.yahoo.com) [function.file-get-contents]: failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

Matir 07-27-2005 09:15 PM

Try taking a look at the information on this page: http://livedocs.php.mirrors.powertri.../wrappers.html

spandau 07-27-2005 09:43 PM

Quote:

Originally posted by Matir
Try taking a look at the information on this page: http://livedocs.php.mirrors.powertri.../wrappers.html
ummm... im sorry matir but im a little bit lost here regarding php wrappers...............

i dont know where in the document would i find my answer............help:confused:

kaverong 09-01-2005 12:39 AM

Hi Guys,

I also get a
403 Forbidden error ... Port 443
only when I use https

I'm running a virtual host and I use SELinux, the same problem would not be encountered whenever i disable SELinux.

my document root is /www/html wherein /www is a mounted disk partition.

i get this error in my log/messages

...audiit(1125570534.322:0): avc: denied { getattr } for pid=26442 comm=httpd path=/www dev=hda8 ino=2 scontext=root:system_r:httpd_t tcontext=system_u:object_r:file_t tclass=dir



please help

win32sux 09-01-2005 06:06 PM

Quote:

Forbidden Errors (SELinux)

You may experience a "forbidden error" when attempting to access a users public web site (http://localhost/~alice), this is generally because the permissions are either set incorrectly, or SELinux is set to "Enforcing" mode which blocks the standard suexec call needed by the Apache server. Common error is the "/home/username" permissions.

To temporarily disable SELinux so you can test the access permissions, type "setenforce 0" at the command prompt. Typing "setenforce 1" sets SELinux back to Enforcing mode.

Use the following commands to permanently adjust the SELinux file security context so Apache can access user's public web sites.

Code:

### SELinux ONLY - Enable User Website
[bash]# setsebool -P httpd_enable_homedirs true
[bash]# chcon -v -R -h -u user_u -t httpd_user_content_t /home/*/public_html

### SELinux ONLY - Disable User Website
[bash]# setsebool -P httpd_enable_homedirs false
[bash]# chcon -v -R -h -u user_u -t user_home_t /home/*/public_html


http://www.brennan.id.au/13-Apache_W...ver.html#users

just my :twocents:...



All times are GMT -5. The time now is 09:02 AM.