PDA

View Full Version : Internal Server Error?


madgamer01
07-20-2005, 11:34 PM
Warning: main(poll/include.php): failed to open stream: No such file or directory in /home/gamesour/public_html/contributor/conhelp.php on line 1

Warning: main(poll/include.php): failed to open stream: No such file or directory in /home/gamesour/public_html/contributor/conhelp.php on line 1

Warning: main(): Failed opening 'poll/include.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/gamesour/public_html/contributor/conhelp.php on line 1

When I go to the include.php file I get an internal server error. Please help with what I need to change.

Sirbular
07-21-2005, 12:00 AM
No such file or directory in /home/gamesour/public_html/contributor/conhelp.php on line 1

madgamer01
07-21-2005, 12:15 AM
Warning: main(http://www.gamesource.biz/poll/include.php): failed to open stream: HTTP request failed! HTTP/1.1 500 Internal Server Error in /home/gamesour/public_html/contributor/conhelp.php on line 1

I get that and


Warning: main(): Failed opening 'http://www.gamesource.biz/poll/include.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/gamesour/public_html/contributor/conhelp.php on line 1

So it is just an Internal Server error that prevents it or is there anything else I can do?

Cojawfee
07-21-2005, 01:05 AM
Have you tried reuploading include.php?

madgamer01
07-21-2005, 01:08 AM
Yeah, reuploaded and received the same errors.

Cojawfee
07-21-2005, 03:44 AM
And you are sure that include.php is in ../contributer/poll/? Because the error is saying that there is no include.php in that folder.

BihiraJonathan
07-21-2005, 04:03 AM
Paste your conhelp.php code, so I can see how you are calling upon the stream.

madgamer01
07-21-2005, 05:33 AM
Here is where the include is:

<?php include("http://www.gamesource.biz/poll/include.php"); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>

This now gives these errors:

[I]
Warning: main(http://www.gamesource.biz/poll/include.php): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in http://www.gamesource.biz/layout.html on line 1

Warning: main(http://www.gamesource.biz/poll/include.php): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in http://www.gamesource.biz/layout.html on line 1

Warning: main(): Failed opening 'http://www.gamesource.biz/poll/include.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in http://www.gamesource.biz/layout.html on line 1

BihiraJonathan
07-21-2005, 03:15 PM
I see the problem now, you can't stream a URL, you can only stream though paths. So your stream has be like this "/poll/include.php" instead of "http://www.gamesource.biz/poll/include.php", let me know if that works.