Jump to content

PHP doesn't run???


jsonchiu

Recommended Posts

Ok, so I have a php socket server. I uploaded it and set its permission to 777 (so I can execute it). Then, I opened the file in firefox, and it just stuck there. I don't know if that's good or bad. The thing is, if I refresh the page, it said that the specific ip and port is in use, meaning that my php is running. However, I can't connect to it! I tried running it on my desktop, and it worked perfectly. However, that's not the case on the server.

Link to comment
https://forums.phpfreaks.com/topic/45002-php-doesnt-run/
Share on other sites

What are you trying to connect to? What functions you are using?

 

Just a tip, some servers disable fsockopen() and similar functions.

ya You are Right

First Test It in this Way

if(!function_exists('fsockopen'))
  {
    echo "Function Disabled";
  }
else
  {
    echo "Function Enabled";
  }

Link to comment
https://forums.phpfreaks.com/topic/45002-php-doesnt-run/#findComment-218515
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.