Jump to content

Include problems - quite weird!


genista

Recommended Posts

Hi guys,

I have a join script which calls a config script. This works fine.
However the following line in the config file calling a functions include does not work (its in the same directory as the config file which is being called fine from the join form):

include ("/Supplier/supplierfunctions");

I have tried: ..htdocs/Supplier/supplierfunctions.php
                www.fulladdress.com/htdocs/Supplier/ supplierfunctions.php
                Supplier/supplierfunctions.php
and everything else in between....

But all I get is "failed to open stream: No such file or directory"

Any help would be great, as I feel so close, yet so far!!!

Thanks,


G
Link to comment
Share on other sites

Hi it is quite difficult to answer without seeing the folder make ups, if they are both in the same folder i.e htdocs/supplier then the include statement should be
[code]
include ("supplierfunctions.php");
[/code]
note the inclusion of the .php which your origonal include did not have

if they are in different folders i.e the calling page is not in the same folder as supplierfunctions.php you could try
[code]
include ("../Supplier/supplierfunctions.php");
[/code]

see how you get on
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.