including files in other directories

Ask a Question related to PHP Development, Design and Development.

  1. #1

    Default including files in other directories

    I have some code running on windows on my local machine that uses the
    jpgraph image library. I include the jpgraph libs using

    include ("C:\Programming\php\jpgraph-1.14\src\jpgraph.php");

    I am trying to get this code to run on my web host's unix server, with
    no luck.
    I put the folder (jpgraph) containing all the jpgraph libs in the same
    directory as my php code. I have tried all of the following:

    include ("/jpgraph/jpgraph-1.14/src/jpgraph.php"); //(relative
    path)

    include ("jpgraph/jpgraph-1.14/src/jpgraph.php"); //(relative
    path without leading slash)

    include ("/usr/www/users/mysite/jpgraph/jpgraph-1.14/src/jpgraph.php");
    //(absolute path)

    include("http://www.mysite.com/jpgraph/jpgraph1.14/src/jpgraph.php");
    //(url)

    include ("http://" . $_SERVER['HTTP_HOST']
    . "/" . dirname($_SERVER['PHP_SELF'])
    . "/" . "jpgraph/jpgraph-1.14/src/jpgraph.php");

    None of these have worked. Does anyone know the proper technique to
    include files in other directories when using Unix or Linux? Keeping
    all php files in the same directory is not feasible.

    Thanks,

    Esoos
    ebobnar Guest

  2. Similar Questions and Discussions

    1. Including files with a control
      I am attempting to make an ASP.NET server control (inheriting from System.Web.UI.Control) and, when the control is dragged from the Visual Studio...
    2. Including text files in Modules
      Greetings, Q1. Is it possible to include txt files (as data sources) inside a Perl package? (not to dump the contents as some kind of variables;...
    3. How to secure files and directories in asp.net
      Hi, How can i secure files and directories in asp.net ..... i'm using form based authentication to secure my asp.net pages but when any user...
    4. Including files to pick up variables
      Hey there, what is the best way of including a Perl so that the contents of it override the existing variables. For example, I have: <main Perl...
    5. Comparing directories and files
      I have directories with sub directories where the same files have been placed in both areas, with differing dates and updates. How can I "compare"...
  3. #2

    Default Re: including files in other directories

    ebobnar <ebobnar74@yahoo.com> wrote or quoted:
    > include ("jpgraph/jpgraph-1.14/src/jpgraph.php"); //(relative
    > path without leading slash)
    That should normally work.
    --
    __________
    |im |yler [url]http://timtyler.org/[/url] [email]tim@tt1lock.org[/email] Remove lock to reply.
    Tim Tyler Guest

  4. #3

    Default Re: including files in other directories

    ebobnar wrote:
    >
    > I have some code running on windows on my local machine that uses the
    > jpgraph image library. I include the jpgraph libs using
    >
    > include ("C:\Programming\php\jpgraph-1.14\src\jpgraph.php");
    >
    > I am trying to get this code to run on my web host's unix server, with
    > no luck.
    > I put the folder (jpgraph) containing all the jpgraph libs in the same
    > directory as my php code. I have tried all of the following:
    > include ("jpgraph/jpgraph-1.14/src/jpgraph.php"); //(relative
    > path without leading slash)
    This should work (or the absolute path). You also have to make sure the owner
    of the PHP files have permission to access the directory and the libraries.
    What are the permissions set to on the directory and files? What error are you
    getting? --> error_reporting(E_ALL)

    Shawn
    --
    Shawn Wilson
    [email]shawn@glassgiant.com[/email]
    [url]http://www.glassgiant.com[/url]
    Shawn Wilson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139