There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
acer black screen boot computer connection crash css dell display driver drivers email error ethernet excel explorer firefox firefox 3 freeze game hard drive internet internet explorer itunes laptop linux malware monitor network networking nvidia outlook outlook 2003 outlook express partition password printer problem router slow software sound trojan usb video virus vista windows windows xp wireless
Web Design & Development
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Internet & Networking > Web Design & Development >
MM_XSLTransform


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

Closed Thread
 
Thread Tools
mstyers's Avatar
Member with 71 posts.
 
Join Date: Jun 2004
Experience: Intermediate
19-Jun-2008, 07:03 PM #1
MM_XSLTransform
In my website I am getting some data from another site. I used a standard php script from Dreamweaver that works but if the other site is slow my page takes a long time to timeout and then finish loading.

After doing some research I believe it has to do with the code that uses fopen which does not have a built in timeout. I have been told I should use fsocketopen instead.

All of my attempts to change the code to use fsocketopen have failed. Can someone look at this function and let me know how to change it to use fsocketopen instead of fopen.

Thanks in advance for the help.

function getRemoteFile(&$src) {
$fileContent = '';

$pos = strpos($src, '://');
$protocol = strtolower(substr($src, 0, $pos));

// avoid protocol upper case
$mySrc = $protocol . substr($src, $pos);

$magic_quotes_runtime_orig = get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
if ($myFile = @fopen($mySrc, 'rb')) {
while ($data = fread($myFile, 2048)) {
$fileContent .= $data;
}
fclose($myFile);
} else {
$this->setError($this->getErrorFromCode('MM_OPEN_REMOTE_ERROR', array($src)));
if ($protocol == 'https') {
$this->setError($this->getErrorFromCode('MM_HTTPS_OPEN_ERROR', array($src)));
if ( (substr(PHP_VERSION, 0, 1) < 5) && (substr(PHP_VERSION, 2, 1) < 3) ) {
$this->setError($this->getErrorFromCode('MM_HTTPS_NOT_SUPPORTED_ERROR', array($src)));
}
}
}
set_magic_quotes_runtime($magic_quotes_runtime_orig);
return $fileContent;
}
tomdkat's Avatar
Computer Specs
Distinguished Member with 3,715 posts.
 
Join Date: May 2006
Location: S.F. Bay Area, CA
Experience: Intermediate
19-Jun-2008, 07:10 PM #2
Have you tried the examples in the fsockopen() documentation?

Peace...
mstyers's Avatar
Member with 71 posts.
 
Join Date: Jun 2004
Experience: Intermediate
19-Jun-2008, 07:40 PM #3
I am not too adept at php but I tried to use these examples and could not get it to work.
Closed Thread

THIS THREAD HAS EXPIRED.
Are you having the same problem? We have volunteers ready to answer your question, but first you'll have to join for free. Need help getting started? Check out our Welcome Guide.


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
WELCOME TO TECH SUPPORT GUY! Are you looking for the solution to your computer problem? Join our site today to ask your question -- for free! Our site is run completely by volunteers who help people like you solve computer problems. See our Welcome Guide to get started.



Thread Tools


You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 11:39 PM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.