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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.