1
vote
2answers
21 views

Including config file in PHP

I am developing a project where I am not able to include the files. My Folder Structure: --Myproject -----Config ----------config.php -----Includes ----------Images ---------------image.jpg ...
0
votes
0answers
13 views

file not including in wordpress header

i want to include a file in the header file which is in this directory : wp-content/themes/themename/header.php the code i used for inclusion is : ...
0
votes
2answers
32 views

Python: Add to Include Path on the Command Line

Is there a way to add include paths to python on the command line? What I am trying to do is run a unit test that uses a some code in a lib directory: $ python -I lib/ test/my-test.py but this ...
-1
votes
1answer
39 views

Add new library in VC++

I have just downloaded a library and I want to use it in my programs in C++ (Visual studio 2012). In searching "How to add a library to VC++ project" I found 3 main action should be done: "Right ...
-2
votes
4answers
91 views

Can i put a PHP variable inside a PHP include?

I am unfamiliar with PHP; I suspect this is an easy question. Our web designer is out of town and I need to fix something on one of our web sites. Basically, I want to be able to use a variable as ...
-5
votes
3answers
87 views

Including CSS in .php file

I am trying to include a css file to my .php file. Inside the .php file, I have; <?php Loads of code.. ?> I'm wanting it like this.. <?php <link ...
1
vote
2answers
62 views

where are all the places C++ searches for includes?

Is there a way to check all of the locations C++ searches for includes? I would like to understand why some includes are found and others are not. EDIT: Platform is Linux, g++
1
vote
1answer
65 views

Doom 3 Project file includes

I am in the process of cleaning up code and want to minimalize #includes from some source files. I have been looking over id Softwares Doom 3 source code and have noticed that many files do not ...
0
votes
0answers
81 views

gcc include path for nested directories

I'm resurrecting legacy code. Below is a simple example of the file structure and code I am working with. It would appear the compiler is looking for 'class/class/class2.h'. If I enter g++ -I. ...
0
votes
4answers
106 views

PHP include path different on different servers

In my site, i have a place that says: include('../tpls/header_home.php'); and it works. Now i am moving the site to another server, where i get the error: Warning: include(../tpls/header_home.php) ...
0
votes
1answer
165 views

Spring JSP CSS referencing issues

My team had all ready created a project in spring framework and running successfully. Now i decided to make it run even faster. Existing project: My developers do their best and created dynamically ...
1
vote
1answer
74 views

change url path with php without using session_start() or any alternative method

I am running adsense on my site and using php includes files where entire adsense code is placed named ga1.php, ga2.php, ga3.php and ga4.php. everything within the code is identical except for a link ...
2
votes
1answer
1k views

visual studio 2010 include directory paths

I have a visual studio solution myvs.sln with the following path: c:\dir1\dir2\dir3\myvs\myvs\myvs.sln. I have boost version xxx installed in c:\dir1\dir2\dir3\boostxxx\. I have in the ...
0
votes
2answers
781 views

Eclipse C++ including header file from my source folder

I'm pretty new to C++ and Eclipse in general so I apologise if I'm missing something fairly obvious. The problem I'm having is that I'm trying to include a header file in one of my source files but ...
0
votes
2answers
34 views

Which way is better to use include - local address or remote url?

When I include php, css, graphic files etc., I tend to prefer using a local address, as this is easier to work with on local development (eg '../gfx/logo.png'). Nevertheless, this can cause problems ...
0
votes
1answer
181 views

including a specific html element from another site using php echo

im brand new to php (started yesterday) ive got a decent background of html/css and a bit of js so i though id give it a shot. Im trying to build a simple application to teach myself php and i wanted ...
0
votes
2answers
307 views

Why do I still need to declare require_once('../config.php') in index.php? [closed]

I have database.php that already has require_once('../config.php') inside it. I don't understand why I still need to put both require_once('../config.php') and require_once('../database.php') in my ...
0
votes
1answer
223 views

Classic ASP virtual includes

Lets suppose I have the following file structure, the top 4 of which are virtual dirs: 1/2/3/4/5/6/7/8 Is it possible, from a file in directory 8, to include a file in directory 4, using something ...
0
votes
3answers
310 views

How to get project root directory in php with user friendly URL

I created initialize.php to define my project's root directory. defined('DS') ? null : define('DS', DIRECTORY_SEPARATOR); defined('SITE_ROOT') ? null : define('SITE_ROOT', DS.'works'.DS.'myproject'); ...
0
votes
1answer
36 views

is there any difference in requiring a previous directory file with a slash at the begining?

Say I am in foo/bar/index.php and want foo/index.php. I require it by saying require_once '../index.php'; I saw somewhere that it is not good practice to do it like this, better to do prepend a slash ...
0
votes
1answer
1k views

g++ makefile, include error, no such file or directory

I am trying to include the following headers: #include <libs/serialization/example/portable_binary_iarchive.hpp> #include <libs/serialization/example/portable_binary_oarchive.hpp> These ...
-1
votes
2answers
84 views

A weird error while including file

I'm trying to include file on ubuntu but I have a weird problem. The including file is in this path - /var/www/cms-dev/corefiles/classes/config.hp The file i'm trying to include is this file - ...
-2
votes
1answer
110 views

how to include a header file in c

I have some files like: ~/code/include/test.h, ~/code/src/test.c. I use include "test.h" in test.c but the compiler can't find test.h. Is there any way to solve the problem EXCEPT include ...
1
vote
2answers
1k views

gcc : Unable to find Python.h, When its there in /usr/includes/python2.7?

My C code: #include<stdio.h> #include "Python.h" int main() { printf("Hello World"); return 0; } I have python-dev installed for python2.7. Moreover, Python.h is available in ...
15
votes
6answers
21k views

Eclipse CDT: Symbol 'cout' could not be resolved

The error is as above. I have what should be all the necessary files include in the eclipse project: /usr/include/c++/4.6 /usr/include /usr/include/linux /usr/local/include etc. I tried std::cout ...
1
vote
2answers
43 views

As soon as I try to include a file inside a folder, my relative paths break?

Just wondering what I'm doing wrong here. I've been setting up a linux dev environment. If I do something like this: include 'test.php'; It works great. If I then move my test.php file into a ...
-2
votes
4answers
4k views

std::string could not be resolved in eclipse ubuntu

I've tried searching the problem and even saw a similar question in: "string could not resolved" error in eclipse for C++ but his solution of installing mingw did not work. (what is msys? ...
0
votes
2answers
92 views

How to handle with “separate including” from different files in php?

A index.php file has many including files and in some of these including files, there are some variables belonging to a file which index.php included.Can I Only write "include codes" to index.php file ...
1
vote
4answers
549 views

Get calling file name from include()

I want to get the name of the file that includes another file from inside the included file. I know there is the __FILE__ magic constant, but that doesn't help, since it returns the name of the ...
0
votes
4answers
1k views

Relative path for a included file - ASP/HTML

Sorry if this question is answered somewhere else but I tried searching several pages and was unsuccessful. So i have an include file (sidebar) which i am using in all pages. Default.asp ...
1
vote
1answer
2k views

expected unqualified-id before ‘-’ token

I ran into a weird situation. My understanding is that the order of include header files doesn't matter much if I have put #ifndef #define #endif flag to all .h files. Old codes a.h #ifndef A_H ...
3
votes
2answers
93 views

How to structure content of PHP includes for use in both non-secure (http://) and secure (https://) areas and across multiple directories?

I have a footer file that includes links and images. This file is used on my main homepage, and in multiple directories. It is also used on the secure part of my website (https://) after a user ...
0
votes
3answers
141 views

Including Files from Different Directories

So I have these files: / | + include/ | | | + database.php | + cart/ | | | + table.php | + cart.php My cart.php displays the page with a table that was generated by table.php (included ...
1
vote
2answers
84 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
131 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
437 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 ...
2
votes
1answer
436 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
333 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 ...
0
votes
1answer
76 views

Is there a way to load a variable page with a java <%@ include?

I would like to do something like: <%@ include file="links/"+linkFile %> Is there any way to do something like this? It's for a jsp page, but I don't want to use <jsp:include> because I ...
0
votes
1answer
268 views

File exists but will not include with variable as path, not permission issue

I have a template that I am working on that generates dynamic content pulled in by dynamic includes. The problem is that although these include files exist (yes I check), they won't include or require ...
0
votes
1answer
256 views

PHP include path problems on OSX

I'm working on Mac OSX Lion. This is a new computer and I'm working to set up my dev environment again. When I try to include a nonsense, nonexistent file, the page loads fine. $dir = ...
0
votes
2answers
149 views

Any downsides or security risks with set_include_path?

Ok, to start with - I am addicted to using a root relative link structure for everything. Include in php always makes that difficult for me, but I happened upon a line of code that lets me include ...
0
votes
1answer
146 views

Strange behaviour with cascading includes (2 servers acts differently)

We reproduced a kind of error that occurs on one of our production servers. Here how it goes : We have 3 PHP files test1.php : Test 1 <?php require_once('test2.php'); ?> test2.php : Test 2 ...
2
votes
2answers
459 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
7answers
490 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
2k 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 ...
2
votes
4answers
360 views

Can I rely on nested #includes? [duplicate]

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
1answer
262 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
408 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: ...
4
votes
1answer
512 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 ...

1 2