Tagged Questions
The include-paths tag has no wiki summary.
2
votes
7answers
716 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
4answers
50 views
How do you developers set your paths for templates?
I thought i would ask in case i could do it a better way.
On my local (WAMP) i have all my website in the www folder. ( C:\wamp\www )
Now currently i do this when i include a file:
...
1
vote
4answers
199 views
Library include paths with same header name
What is the best method to include a file that has same name in another folder from additional include directories?
Example:
lib1/include/foo.h
lib2/include/foo.h
where both lib1/include and ...
0
votes
0answers
25 views
php internal paths broken on content load
I'm integrating posts from wordpress into the front page of a site that has animated content (using jQuery).
Essentially on loading the website the user is presented with a nav and content. The ...
0
votes
2answers
105 views
PHP: paths confusion
I have just started learning PHP and I have read several answers to pretty much similar question, but it didn't help ).
I have several files:
index.php
folder1\file.php
folder2\file.php
So ...
0
votes
1answer
403 views
xcode include paths conflicts
In MSVS when I #include < someHeader > it is searched in a different folder than the headers included with #include "someheader". Same thing should be in xcode, but it seems that it does not work. ...
0
votes
1answer
226 views
require_once file not found in php eclipse project
I have a php script that has the following requirement command: require_once 'HTTP/OAuth.php'; the file HTTP/OAuth.php is in php's include_path that is .:/usr/lib/php.
Nevertheless in Eclipse the ...