Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
559 views

define my own BASE_PATH vs. set_include_path?

I learned of the function set_include_path(). All this time, I defined a constant in the config.php file define('BASE_PATH', '/var/www/mywebsite/public_html/'); And in all subsequent php files, I ...
2
votes
2answers
713 views

CLI include paths to run zend framework via cron

I wrote a command line utility using Zend Framework to do some nightly reporting. It uses a ton of the same functionality the accompanying site. It works great when I run it by hand, but when I run it ...
2
votes
7answers
703 views

php relative and absolute paths

I have read that when including a php file that using a absolute paths has a faster processing time than relative paths. What would you suggest to use? include("inlcudes/myscript.php"); or ...
1
vote
1answer
49 views

set_include_path() Can someone set me straight

I've been through the site regarding this subject but I'm still confused. I have fixed my problem but I know deep down I have kind of cheated and it's a fix that could cause me problems further down ...
1
vote
1answer
49 views

What is the proper way to include the zend framework?

I have downloaded the Zend Framework and put it just above the server root (Where /tmp is and such) and I'm having trouble getting it recognized by a single PHP file. I am using a shared host and this ...
1
vote
1answer
605 views

Why use set_include_path() in PHP and how to autoload classes from different folders?

I have a couple questions about the include path in PHP and including files and/or classes. Below is a simple snippet of code where we are setting multiple include paths. I saw this in another ...
0
votes
1answer
108 views

set_include_path function does not work, PHP 5.2.13

We are using a VPS server in our company and I'm trying to install Roundcube webmail interface But I can't even get to the configuration phase because the set_include_path function doesn't work and ...
0
votes
1answer
47 views

Does PHP/Apache look for an includes folder by default?

I have recently discovered set_include_path() and have found that the path that is returned is the path to my includes directory. Does PHP automatically look for an includes directory and update the ...
0
votes
1answer
20 views

include_path working fine with php, but not working in .htaccess… what gives?

I just moved some programs from 1 server to another. They were working on the old server... (I know that's loaded, but from what I see it shouldn't make a difference). I've looked at the "similar ...
0
votes
1answer
303 views

Where PHP “set_include_path” is effective?

I would like to add my_path to include_path and include files relatively to my_path. Is that enough to set the include_path using set_include_path in the main PHP file of my website, or I must do ...
0
votes
2answers
167 views

Having a problem with namespaces and set_include_path() in PHP

C:\xampp\htdocs contains Controller.php and ApplicationHelper.php. C:\xampp\htdocs\site contains index.php. Here is the error I am getting: Fatal error: Class 'site\controller\ApplicationHelper' ...
0
votes
1answer
496 views

Dealing with PHPUnit path issues

I am getting the following error when I try to run PHPUnit from within my current MVC framework application Fatal error: Cannot redeclare class PHPUnit_Util_FilterIterator in ...
0
votes
1answer
107 views

Include path and weird structure

Hai. I've got site which is really weird, and now is making me troubles. This is simplified structure public_html - adm --- raport ------ raportpdf.php --- class ------ Bonus --------- ...