Tagged Questions
The include-path tag has no wiki summary.
10
votes
2answers
3k views
How to append a path to PHP's include_path in .htaccess
Currently on my site I'm using statements like:
include 'head.php';
include '../head.php';
include '../../head.php';
depending on how many nested folders deep I am. I'm sure there is a better way ...
8
votes
7answers
5k views
How to include file outside document root?
What I want do to is to include 'file1.php' from 'domain1' into 'file2.php' on 'domain2'. So what I figured I should do is something like this:
file2.php
require_once ...
7
votes
3answers
454 views
GCC include directories
When i compile a very simple source file with gcc i don't have to specify the path to standard include files such as stdio or stdlib. How Gcc knows how to find these files, Dose it have the ...
5
votes
3answers
283 views
gcc -I and -L options don't seem to work
I am trying to compile a project in my system using qmake. Some dependencies of the project are not installed but reside in my home directory, more or less like this: libs files: ...
4
votes
2answers
4k views
Mac OS X Lion and Xcode upgraded: missing headers and libs
After upgrading to Lion, and upgrading Xcode, make can't seem to locate headers and libs. I looked in /usr/include. The only thing in there was 'parallels-server'. So, I renamed /usr/include to ...
4
votes
1answer
278 views
vim image placement
For the last few days I've been forcing myself to switch from Textmate to Vim.
for the most part, my efficiency is pretty much the same after some heavy Vim configuration.
one aspect of my workflow I ...
4
votes
1answer
1k views
Include() in EF4 using RIA Services Domain Service not loading!
I am having trouble returning multiple entities (eager loading) using the Include() method. I am trying to load the entites in a silverlight application using RIA services. The Data Model consists ...
4
votes
2answers
161 views
Is it possible to exclude '.' (ie. current dir) from PHP's include path?
From perusing the comments at
http://php.net/manual/en/function.set-include-path.php , it seems to me that '.', or rather basename(__FILE__), is always implicitly added to PHP's include path. Is it ...
4
votes
6answers
932 views
PHP how to find application root?
I'm having problems with my include files. I don't seem to be able to figure out how to construct my URLs when I use require_once('somefile.php'). If I try to use an include file in more than one ...
4
votes
1answer
143 views
calling include from an included file
So,
examining this directory structure
/include_one.php
/include_two.php
/directory/main_file.php
Assume that I am in /directory/main_file.php and I call include('../include_one.php'); inside of ...
3
votes
2answers
87 views
add Perl Modules' Directory to include path using .htaccess for CGI scripts
I've used Cpanel to install per modules on my host server running lightspeed.
It gave an "Installation Successful" message too.
But it shows:
Location of Your Perl Module(s)
Path: ...
3
votes
1answer
102 views
Rules for locating header files
When you write #include "foo.h" I would expect the compiler to check the directory of the file doing the including (as opposed to the current directory) first, and if not found there then fall back on ...
3
votes
3answers
244 views
Simple File include problem in Zend?
I have created a zend project on ubuntu which is in /var/www/student/ directory.
Now I have head.phtml file in this location:
/student/application/views/scripts/index/head.phtml
When I try to ...
3
votes
2answers
153 views
PHP's include_path - set it to an empty string doesn't work
I have Apache HTTP Server v2.2 with PHP in FastCGI communication.
I tried to edit the include_path variable in php.ini to an empty string but it didn't work,
the path remains: .:/usr/local/lib/php ...
3
votes
2answers
482 views
Adding an Include Path for a Module in a Simple Perl Tutorial
I'm trying to do a simple tutorial but I'm having trouble getting started. My problem seems to be installing and getting the correct path to the modules.
1. Here is the original code:*
...
3
votes
3answers
134 views
How do you define paths in application?
I'm using global constants, like this:
/project
/application
bootstrap.php
/public
index.php
index.php
defines PUBLIC_PATH and APPLICATION_PATH
calls APPLICATION_PATH . ...
3
votes
4answers
7k views
php require_once path confusion
I was writing an web app in php, when i encountered a strange situation. I wish to clear my confusion. To illustrate my problem, consider a web app of this structure:
/
index.php
f1/
...
3
votes
3answers
1k views
Proper way to set PHP include path for *Nix and Windows
Is this the proper way to define an include path for both *nix and Windows?
define( 'INCPATH', realpath( dirname( __FILE__ ) ) . '/' );
Note the trailing forward-slash I included above. Is the ...
3
votes
3answers
922 views
new Zend_Loader_Autoloader not finding files
I just upgraded from ZF 1.7 to ZF 1.9, and almost everything works fine... except for Autoloader.
Old:
require_once('Zend/Loader.php');
Zend_Loader::registerAutoload();
New:
require_once ...
3
votes
0answers
604 views
How can I get MIDL to search additional include directories for qualified paths
Update: Just over six months after opening a support call to Microsoft it has been rejected, they claim it is not a bug (since the documentation doesn't explicitly say that the behaviour seen isn't ...
2
votes
1answer
46 views
How to build in Visual Studio with include files with paths?
I am trying to get my project which builds fine on Linux to port to Visual Studio 2008.
At the moment, I am stumped by the behavior of include files where the inclusion specifies a directory path ...
2
votes
2answers
34 views
Is it possible to have a dynamic path as part of a jsp include
I have a include file in my jsp
<%@ include file = "includes/testinclude1.jsp" %>
Test Include1 contains struts tags, and therefore needs to be pulled in and compiled. Which works ok. Is ...
2
votes
4answers
135 views
Can I rely on nested #includes? [closed]
Possible Duplicate:
C++ style question: what to #include?
When I #include a header file, and I also need other files that are already #included from the first one, should I rely on the ...
2
votes
2answers
80 views
Finding custom includes directories with autoconf
I'm trying to compile a program which uses the festival library.
Basically, the requirements are that you include the festival and estools header directories in the include path, and you include both ...
2
votes
1answer
267 views
Zend_Tool include_path problem
I'm trying to install Zend Framework on my computer. I have done following:
I have placed Zend framework files on C drive, the path is like:
C:\ZendFramework\library
C:\ZendFramework\bin (The bin ...
2
votes
2answers
208 views
Entity Framework .Include does not support paths with more than 8 dot-separated names
I've opened a bug on Microsoft Connect for this, but no response (see edit below for their response) in a long while. So here it goes:
When trying to request an entity framework with its relation ...
2
votes
5answers
161 views
PHP is including relative to the URL path and not the file path, how do you change this?
I have a PHP file /a/b/file.php with the line
require("../connect.php");
In connect.php there is a line
require("../config.inc.php");
This all works fine on my local server. There are a bunch of ...
2
votes
1answer
371 views
How do I add the PHP libraries to my basic remote project in eclipse?
I have a basic project that was created from a remote system using the eclipse tools to setup that connection. I right clicked on the folder on my remote system and chose create a new project. Now, I ...
2
votes
4answers
213 views
include_path doesn't recurse?
I have several separate websites that live in separate directories. For includes that they have in common, I have it living in the root directory where the rest of them live.
user@hostname:/var/www$ ...
2
votes
1answer
3k views
Trouble setting up php Zend include path
I am trying to set up a PHP path to my Zend Framework. I am very confused on how to do this. My Zend Framework is located at the following location on my server:
amazon/ZendFramework-1.10.3-minimal
...
2
votes
3answers
777 views
Include path of php.ini ignored by Eclipse
I have a PHP script to run. If I run it from the command line, it works fine (include path is set correctly).
If I want to run it inside Eclipse (Run as script), then the PHP include path of my ...
2
votes
2answers
1k views
How do I include Zend Framework libraries in my domain?
Locally, on my xampp installation, the Zend folder is under PEAR\Zend, and Pear is in the include path. So when I do require_once "Zend\Date.php" there is no problem.
However, on my domain ...
2
votes
1answer
126 views
Question about the PHP include statement
I'm looking through the Zend_View source and I see this:
include 'zend.view://' . func_get_arg(0);
what does the string "zend.view://" represent and how would the include statement resolve that in ...
1
vote
2answers
71 views
Ubuntu, zend framework and PHPUnit - Testing Note: PHPUnit was not found in your include_path, therefore no testing actions will be created
I have fresh instalation of Zend Framework on my ubuntu. I've just installed PHPUnit. I could use it from terminal. Everything works fine. I've added manually PHPUnit path to include_path in php.ini ...
1
vote
2answers
37 views
Is it prefered to use $_SERVER['DOCUMENT_ROOT'] in the website?
Do you think it is preferred to use $_SERVER['DOCUMENT_ROOT'] in website's include statements? Is it supported everywhere without any problem?
1
vote
2answers
49 views
Including files in a VS2010 project
Suppose I have a C++ project in Visual Studio 2010 in Windows 7 with the following structure:
ProjectFolder
|
|_FirstFolder
| some_header.h
|
|_SecondFolder
main.cpp
In order to include the ...
1
vote
2answers
81 views
File included with <> can't find a file included with “”
I'm developing a library that is to be used (after compiled and installed) by another developer. All my includes are like this:
#include "../exception/CException.h"
All goes well but when I ...
1
vote
2answers
71 views
How to auto include files with php not OOP?
I have different mods such as users, statistics and etc. If I click over users I get information about users, if I click statistics I get user statistics and so on. But I want to do that ...
1
vote
1answer
224 views
Setup include path for PEAR on Wamp
Installed PEAR and followed the directions on http://www.phpunit.de/manual/current/en/installation.html:
pear config-set auto_discover 1
pear install pear.phpunit.de/PHPUnit.
Then, I created the ...
1
vote
1answer
133 views
Help setting up Zend Framework include paths on server
I'm struggling to get my Zend driven website work on a remote server, and I'm not clear on what's going wrong with the include paths. I'd really appreciate some help as I've tried every permutation I ...
1
vote
1answer
171 views
make emacs cedet semantic look for include directories
Cedet is a nice tool suite but in default configuration it has some difficulty locating included files.
I would like to make it look for a directory called include/ in each parent directory and get ...
1
vote
2answers
64 views
Whats wrong with my PHP include for database connection?
Im trying to move my database connection script to an external (and therefore more secure) file. However, it isnt working.
Here my PHP page (with include link)
<?php
include ...
1
vote
1answer
127 views
PHP include path issues: “./” doesn't link where I expect it?
I am developing a php MVC framework from scratch and have run into an interesting problem with the relative pathing of a default WAMP deployment... the problem arose when I was beginning to write ...
1
vote
1answer
69 views
What's the correct include path in this template?
I am editing file:
/templates/account/base.html
and in it want to include:
/templates/profiles/includes/sub_nav.html
I have tried the following:
{% block subnav %}{% include ...
1
vote
7answers
122 views
PHP - Best way to use above directory includes
I'm having some problems with some parts of my website are accessing some files from different roots and the includes end sometimes like this:
require_once ('../eggs/libs/lagger/lagger_config.php');
...
1
vote
3answers
178 views
PHP include path problem
I have set apache so that all requests go to a file /var/www/common_index.php
Now, common_index.php looks at requested file name and sources appropriate file
...
1
vote
1answer
82 views
How to Include source directory to Padre IDE?
How do you include source directory to Padre IDE for autocomplete and for running the script.
1
vote
1answer
99 views
Nested `include()` directives - How to include a file (which includes another) from more than one directories?
I have these three files to work with:
document_root/include/config.php
document_root/include/database.php
document_root/index.php
And the relevant part of the file contents are like below:
...
1
vote
0answers
427 views
Qt, qmake, Visual Studio 2008 and third party library
it is my first question here; I think I did my homework pretty well, however I am still stuck with that problem:
I try to add in the include search path of my project property page in Visual Studio ...
1
vote
4answers
228 views
How to handle and include headers and libraries for building a Visual Studio 2010 solution on different machines
I have a Visual Studio 2010 solution, that needs to include 4 different third party libraries and headers. These third party dependencies are installed separately before being included. So the include ...