|
Posted by John Doe on 01/13/06 05:23
MaKroZ wrote:
> On Thu, 12 Jan 2006 21:46:55 -0500, MaKroZ wrote:
>
>> I guess the issue is in upper-lower-case directory names. "CRM" is not the
>> same as "srm" in Linux (Unix) systems. Does it make sense?
>
> Oops, of course I meant "crm", not "srm". Sorry.
I understand what you are saying, but this wouldn't be the cause. The
directories are all lower case, etc.
Let me give an example. I installed Opensharepoint. Under the
subdirectory "modules/Documents" there is a file called index.php. In
that file it is referencing "mainfile.php" directories above. But here
is the exact text:
require_once("mainfile.php");
To get the page to work I had to change it to:
require_once("././mainfile.php");
As the "index.php" is under modules/documents, the file "mainfile.php"
is at the root of the website directory.
So, at this point I would have to open every single php file and re-edit
the location of files. I do not believe this is the actual cause as
otherwise these projects would be flamed into oblivion by users upset at
having to do this. Instead I have not found anyone experiencing this
issue so I can assume that in fact the package, when unpacked, will run
properly as it is supposed to. Thus I am assuming that there must be
something in how either Php or Apahe is configured.
[Back to original message]
|