473,395 Members | 2,446 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Problems getting "require" to work in PHP5 under Apache2

The require() I'm using in a PHP script has stopped working after I
moved from PHP4 and Apache 1.3.x to PHP5 and Apache 2.x. Now I get
messages like this:

Warning: main(/includes/ReloadScript.html) [function.main]: failed to
open stream: No such file or directory in
/usr/local/www/htdocs/main/AOLCompression.php on line 14

Fatal error: main() [function.require]: Failed opening required
'/includes/ReloadScript.html' (include_path='.:/usr/local/lib/php') in
/usr/local/www/htdocs/main/AOLCompression.php on line 14

I've seen references to the problems, but no workarounds or solutions.
What's the status? Is there a way around it?

--
Transpose hotmail and mxsmanic in my e-mail address to reach me directly.
Jul 17 '05 #1
4 2779
On Sun, 19 Dec 2004 11:33:01 +0100, Mxsmanic <mx******@hotmail.com> wrote:
The require() I'm using in a PHP script has stopped working after I
moved from PHP4 and Apache 1.3.x to PHP5 and Apache 2.x. Now I get
messages like this:

Warning: main(/includes/ReloadScript.html) [function.main]: failed to
open stream: No such file or directory in
/usr/local/www/htdocs/main/AOLCompression.php on line 14

Fatal error: main() [function.require]: Failed opening required
'/includes/ReloadScript.html' (include_path='.:/usr/local/lib/php') in
/usr/local/www/htdocs/main/AOLCompression.php on line 14


According to the message it's looking for:

/includes/ReloadScript.html

Note the leading slash, indicating it's looking from the root directory of the
server. Are you sure this is correct?

Does the actual require() statement have something prepended to the path,
perhaps a variable or constant, that due to your change in configuration is now
blank? Post line 14 of /usr/local/www/htdocs/main/AOLCompression.php (and any
previous line relevant to it, i.e. showing definitions of variables).

On a related note; are you sure you want to require() an html file? Wouldn't
readfile() be more appropriate?

--
Andy Hassall / <an**@andyh.co.uk> / <http://www.andyh.co.uk>
<http://www.andyhsoftware.co.uk/space> Space: disk usage analysis tool
Jul 17 '05 #2
Andy Hassall writes:
According to the message it's looking for:

/includes/ReloadScript.html

Note the leading slash, indicating it's looking from the root directory of the
server. Are you sure this is correct?
It worked previously (in php4 under Apache 1.3.x).
Does the actual require() statement have something prepended to the path,
perhaps a variable or constant, that due to your change in configuration is now
blank? Post line 14 of /usr/local/www/htdocs/main/AOLCompression.php (and any
previous line relevant to it, i.e. showing definitions of variables).
Yes. It had $DOCUMENT_ROOT prepended. That now appears to be blank;
I'm not sure why (I thought it was initialized to the document root from
the Apache configuration file). I changed this with php.ini, but it
still didn't work.

The original line looks like this in the script:

<?PHP require($DOCUMENT_ROOT."/includes/ReloadScript.html"); ?>
On a related note; are you sure you want to require() an html file? Wouldn't
readfile() be more appropriate?


I originally wanted to make sure the include was there. The idea was to
emulate a #include line in a PHP script (since PHP scripts cannot use
SSI).

However, as an experiment after looking around the Net, I changed it to
this:

<?PHP require($_SERVER["DOCUMENT_ROOT"]."/includes/counter"); ?>

For some reason, this appears to work. I don't know why. The contents
of $_SERVER["DOCUMENT_ROOT"] should be the same as $DOCUMENT_ROOT,
right? Anyway, this is either a workaround or a fix (not sure which at
this point), because it eliminates the error. Did something change in
later versions of PHP4 or PHP5 (I was getting the same error with the
latest version of PHP4, so it wasn't just going to PHP5 that did it).

Also, when will the very latest version of PHP5 (5.0.3 or above) install
correctly? I'm still running 5.0.1 because that's apparently the last
version with a correct make install script (for FreeBSD UNIX).

--
Transpose hotmail and mxsmanic in my e-mail address to reach me directly.
Jul 17 '05 #3
On Mon, 20 Dec 2004 05:56:50 +0100, Mxsmanic <mx******@hotmail.com>
wrote:
However, as an experiment after looking around the Net, I changed it to
this:

<?PHP require($_SERVER["DOCUMENT_ROOT"]."/includes/counter"); ?>

For some reason, this appears to work. I don't know why. The contents
of $_SERVER["DOCUMENT_ROOT"] should be the same as $DOCUMENT_ROOT,
right? Anyway, this is either a workaround or a fix (not sure which at
this point), because it eliminates the error. Did something change in
later versions of PHP4 or PHP5 (I was getting the same error with the
latest version of PHP4, so it wasn't just going to PHP5 that did it).


Only with register_globals enabled does $DOCUMENT_ROOT =
$_SERVER['DOCUMENT_ROOT']. Register_globals is considered a security
risk and is disabled in later version of PHP.

All this is explained in the manual.

Jul 17 '05 #4
Wayne writes:
All this is explained in the manual.


I wish there were 200 hours in a day so that I could actually read
manuals.

--
Transpose hotmail and mxsmanic in my e-mail address to reach me directly.
Jul 17 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Phil Powell | last post by:
I'm sorry but I can't figure out how to explain this any better than this. In PHP we have a command "require()" that obtains a file and logically places it into another file. I cannot figure...
2
by: Don | last post by:
I have a set of modules that all have the same interface, and package name: _______________________________ package dataSourcePackage; # Initialize global variables $hashOne{'uniquekey1'} =...
15
by: Michael | last post by:
Guten Morgen, I am implementing a script that my client wants on their website. Within the script there are several "require" statements. Any time one of these "require" statements is...
31
by: Yeah | last post by:
Is it absolutely necessary to include "http://" in an A HREF hyperlink? Would it be wise to remove this from one's Links page, just to save code?
5
by: Jim Carlock | last post by:
I've set up the following using an Alias in Apache... Alias /phpdocs/ "C:/Apache/htdocs/common/docs/php/" <Directory "C:/Apache/htdocs/common/docs/php"> Options Indexes FollowSymlinks MultiViews...
1
by: yaru22 | last post by:
when I read a book, it just said we need to do import pygtk pygtk.require("2.0") import gtk in order to import gtk modules What is that pygtk.require("2.0") command for?
2
by: =?Utf-8?B?Sm9obiBC?= | last post by:
A windows forms 2.0 ClickOnce deployment fails when both SSL is enabled and "require client certificate" enabled on the IIS deployment web server. Can anyone assist with how to configure this...
5
by: lister | last post by:
Hi all, I have a fairly diverse range of data that I want to cache in the session rather than pulling it from the database on every page refresh. The problem is is that it seems that PHP...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.