Portal Home > Knowledgebase > Articles Database > Problem with Print version script
Problem with Print version script
Posted by 3-rx, 11-21-2008, 09:15 PM |
Problem with Print version script
Hello
i have a little script -for Print Version
How you understand what i mean, it's a small script that u can check on different site to generate print version such link.
here is code
HTML Code:
");
$finish= strpos($fd, "");
$length= $finish-$start;
$code=Substr($fd, $start, $length);
}
echo '
/* generic title */
'.$code.'
'.$HTTP_REFERER.'
';
?>
What is odd, that this script work on all my sites, but for a reason i don't know, script don't want to work on my recent site.
Geting such error
PHP Code:
Warning: fread(): supplied argument is not a valid stream resource in /home/_path_/print.php on line 2
what is interesting, that i try to put another such script, but all of them don't work.
I make a little research (google Warning: fread() ) and find, that this can be because of a bad server config.
As i'm on dedicated server, i can make any changes.
So, any1 can explain what's the problem and what changes i need to do ?
Any advice will be appreciated
__________________Your Health Encyclopedia :: Rx-s.net Medical and health consumer information resources containing comprehensive and unbiased information in patient-friendly language
|
Posted by 3-rx, 11-21-2008, 09:26 PM |
btw can the reason of this in php5, which is installed on server?
__________________Your Health Encyclopedia :: Rx-s.net Medical and health consumer information resources containing comprehensive and unbiased information in patient-friendly language
|
Posted by gone-afk, 11-21-2008, 10:31 PM |
Try replacing $HTTP_REFERER with $_SERVER['HTTP_REFERER']. Or set $HTTP_REFERER=$_SERVER['HTTP_REFERER'];
I'm guessing it is because register globals is now turned off.
__________________
Gordon, Incero custom websites and software.
|
Posted by 3-rx, 11-21-2008, 11:26 PM |
gordonrp
thank you very much
Quote:
$HTTP_REFERER with $_SERVER['HTTP_REFERER']
this fix my problem
__________________Your Health Encyclopedia :: Rx-s.net Medical and health consumer information resources containing comprehensive and unbiased information in patient-friendly language
|
Posted by gone-afk, 11-21-2008, 11:33 PM |
You're welcome.
__________________
Gordon, Incero custom websites and software.
|
Add to Favourites Print this Article
Also Read