Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Including Module.php from a subfolder
#1
I'm creating a new file in the 'module/Calendar4You/' folder. I saw that other files in that folder included PHP files from the system in respect to the system root, so I tried including Module.php like:

PHP Code:
include_once('vtlib/Vtiger/Module.php'); 

Which gave me an error I understood, because I had to use:

PHP Code:
include_once('../../vtlib/Vtiger/Module.php'); 

to tell PHP to move back two levels first. But now I receive an error when Module.php tries to include files ("ModuleBasic.php") in its turn, because it is also trying to use a relative path. How come other PHP files can include using the system root, and I can only include using a relative one? Must be an easy answer but I can't see it.
Reply
#2
they probably use the PHP function set_include_path() which tells PHP where to search for files.
Joe
TSolucio
Reply
#3
Ah great, thanks. I'll look into this
Reply
#4
No luck, but I'm starting a topic in which this is used, so you can see the context. Maybe this helps.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)