Jump to content

spajetty

Members
  • Posts

    14
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

spajetty's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. function _recaptcha_http_post($host, $path, $data, $port = 80) { $req = _recaptcha_qsencode ($data); $http_request = "POST $path HTTP/1.0\r\n"; $http_request .= "Host: $host\r\n"; $http_request .= "Content-Type: application/x-www-form-urlencoded;\r\n"; $http_request .= "Content-Length: " . strlen($req) . "\r\n"; $http_request .= "User-Agent: reCAPTCHA/PHP\r\n"; $http_request .= "\r\n"; $http_request .= $req; $response = ''; if( false == ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) { die ("Could not open socket: $errno - $errstr"); } fwrite($fs, $http_request); while ( !feof($fs) ) $response .= fgets($fs, 1160); // One TCP-IP packet fclose($fs); $response = explode("\r\n\r\n", $response, 2); return $response; }
  2. Here you go thanks! [attachment deleted by admin]
  3. this is a third party login. it works on wampserver but when i started to put it online the registration shows up an error saying "could not connect socket". if you want to check it here's the link. http://kchonline.ph/admin/register.php is this a database problem?
  4. The Display:none that i need to get rid of shows up in firebug but when i opened the file itself it's not there. what do you think is the problem? Here's the firebug view. Heres the file please check it out guys. thanks super!
  5. oh. got it. when i changed it in firebug it works well but i just noticed some of the tags are also added with dispay:none. but when i opened the file itself. the display:none; doesn't exist.
  6. when i checked the firebug it's there. but when i go to my source code. i can't find it. i'm a super newbie in this thing. thanks man.
  7. Hello Guys, I badly need help. http://www.knowledgechannel.org/ this website works fine before then suddenly all the contents disappears only the background is retained. Thanks in advance!
  8. oh someone told me to check my permission for the folder. and it worked!
  9. oh i have changed the permission of the uploaded_files. and it worked perfectly. i'm so new to this. THANKS MAN! YOU ARE THE BEST!
  10. i'm just new in php, the upload file that i got doesn't work on Webhost but it works fine in Localhost. It always shows it's error message. i've tried changing the memory limit and stuffs. HALP! thanks in advance [attachment deleted by admin]
  11. i've attached the file so you guys can see this. i have tried changing the memory limit and some other stuffs. but still it won't work. thanks [attachment deleted by admin]
  12. when i upload my photos on the website, it doesn't work. but when i upload photos on localhost it works very fine. what do you think is the problem? is it the codes? thanks in advance
×
×
  • 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.