Tagged Questions
0
votes
1answer
22 views
Opening file php
Supposing I have a file called "utils.php" where I open a file for writing or reading:
$myfile="myfile.txt";
$fileout=fopen($myfile,'w') or die("Not opened");
Now if I have another script UNDER ...
0
votes
1answer
21 views
Link to internal pages from include file - correct path from each page
I have an include file which contains the header section for each of my pages. What I am finding difficult to grasp is the fact that my index.php file is in the root of my directory but my other pages ...
1
vote
3answers
61 views
include() function in PHP behaves differently on XAMPP update
My files structure are :
/ (Root)
|-- includes
|-- |-- global.php
|-- |-- config.php
|-- index.php
In my index.php file I wrote :
<?php
include "includes/global.php";
?>
and in ...
0
votes
3answers
74 views
PHP: set_include_path and require_once(): Failed opening required
I got a problem with my php settings, I know that for sure 'cause the exact same lib works perfectly for my partner at HIS server.
$inc_path = get_include_path();
$inc_path .= PATH_SEPARATOR . ...
2
votes
2answers
78 views
path setting for c++ include headers for vim
My vim has path settings as shown below.
path=.,/usr/include,,
I think this is a default setting of 'path' I guess.
Because of this, g f opens c header files under the cursor.
But on C++ file C++ ...
0
votes
1answer
67 views
How to include loadpath/dependency in rakefile
I have installed, Ruby 1.8.7, ci_reporter 1.8.4, test unit 2.5.4, rake 10.0.3.
My testA.rb :
require 'includeA.rb'
require 'includeB.rb'
require 'includeC.rb'
require 'includeD.rb'
Begin of the ...
2
votes
2answers
57 views
Where the script is executed
it's a stupid question but I'm not sure...if I have an external js file that runs an ajax jquery call the url that I specified inside the file must be considered relative to the position of the ...
0
votes
3answers
58 views
PHP include file by relative path
This absolute path successfully includes my file httpapi.inc.php:
require_once '/home/devel/wwwroot/nm/dev/http-api/http-api/src/httpapi.inc.php';
The calling file is:
Caller relative:
...
2
votes
1answer
99 views
PHP require realpath - Failed opening required
I am trying to require/include a file by relative path. The paths exist and all rights are checked. The script to be included is readable and can be accessed via URL in browser...
However, I am ...
0
votes
2answers
36 views
Is it possible to force compiler to use the name of “working” directory to construct all full names from includes?
Let us assume that in first.h we have #include "aaa/second.h" and in the aaa/second.h we have #include "bbb/third.h". I think that in the "default settings" the compiler will complain if "third.h" is ...
-1
votes
4answers
77 views
How to set the include path in php [duplicate]
I am having a tough time with setting the include property per page.
It seems that it works fine when everything is in the same directory but if i reference a page from another directory then ...
0
votes
0answers
48 views
Resolving Relative Paths in different Start folders for script include in HTML and HTA
Copy-pasting the path to an HTA creates a working path different than expected and relative includes fail.
The following works fine if you open it in it's folder or run it from a shortcut, but copy ...
1
vote
3answers
107 views
Include a file which has included file in php [(!)Warning] [duplicate]
Possible Duplicate:
PHP: Why such weird behaviour when I include a file from another directory which also includes a file?
I have a problem including a file that has an included file.
...
0
votes
2answers
81 views
Set paths for PHP includes on localhost
My new ecom project is in the ecom folder on my mac located here:
"Applications/MAMP/htdocs/ecom"
I access it in the browser by typing localhost/ecom
Problem:
My script fails when I want to include ...
0
votes
0answers
96 views
Netbeans C++ include path recursive?
I am getting an uncomfortable issue using netbeans. I don't really use much of the features, I have my own makefile and pretty much the only thing I am using it for is to have a gdb interface. so ...
0
votes
3answers
244 views
How to edit python include path
I am trying to get the python-connect-mysql module to run, but when I execute python setup.py install on my command shell, I receive the following error:
[Errno 13] Permission denied: ...
1
vote
1answer
130 views
PHP include path problems when using PEAR Mail on Bluehost
I am trying to modify a TemplateMonster template that uses PHP to email data from a form. It uses localhost as the email server by default, but my client already uses gmail's mail exchange servers ...
3
votes
2answers
200 views
PHP include with a variable in the path
So we build websites that have to ported from local development servers, to a test server, then to a live server. For this reason we have created a variable:
<?php $path = '/_Folder_/_SubFolder_'; ...
0
votes
1answer
28 views
Facebook GraphAPI via another webpage php?
First: please forgive me - Im a bit of a novice as some of this...
I have a working test site which is running the php facebook SDK to perform some simple graphAPI requests successfully. Namely read ...
1
vote
1answer
790 views
#include absolute path syntax in c/c++
For some reason, I need to use the absolute path in #include for my system.
Is using #include "D:\temp\temp_lib\temp.h" acceptable?
I have tried these different usage and it all seems to work.
...
1
vote
2answers
240 views
NAnt - how to get the directory path of the included script
I have a common NAnt script (containing some common targets and constants) that I include in many other NAnt scripts like this:
<include buildfile="<path>\common.build" verbose="true" />
...
3
votes
1answer
105 views
prevent gcc from searching the current dir “-I-” option on include seach path
our dev env makes heavy use of directories with locally modified headers that should be seen by the compiler instead of the "committed" "repository" versions.
If header A includes header B gcc looks ...
0
votes
0answers
227 views
PowerShell script runs in ISE but not in command line
I am using PowerShell v1.0 and I try to create a WMI-EventSubscriber to listen for unsuccesful Remote-Desktop login attempts. I wrote a powershell script that uses Register-WMIEvent with the -action ...
2
votes
1answer
912 views
Dump include paths from g++
I'm trying to write a little build script - and want to determine if the includes are system includes or not. So I want g++ to tell me the include path's it's using.
cpp -v seems the obvious best ...
-3
votes
1answer
126 views
Better way for including file in calling controller folder (root controller has folders)
On working PHP MVC, on CONTROLLER folder i have a files controller, but inside has folders that must called controller inside folders.
Has anyone better way and nicely code implementation of these ...
-4
votes
3answers
274 views
includes php in linux apache not working [closed]
I've a problem with the includes, I had a web app in windows, very simple. Now I'm trying the same app in linux, but I'm having troubles with the includes. Searching in internet I finally tried with ...
0
votes
3answers
55 views
Included file's root path
how can i get "included file's root path" ?
d:\projects\project1\incs\inc.php :
In this file below line gives me "d:\projects\project1\incs"
<?php echo __DIR_; ?>
I want to get ...
0
votes
3answers
398 views
PHP Class path confliction when using include
I have a problem with including classes. Here's a simple example to explain the problem:
Class no. 1 (path: /home/day/Class_A.php):
class Class_A {
public function sayHi() {
echo "Good day";
...
0
votes
2answers
489 views
failed to open stream in php
i get this error on a simple include method:
Warning: include(/home/content/70/8352870/html/sites/mysite.com/preview/wp-content/themes/site-theme/mail/class.phpmailer.php)
[<a ...
1
vote
1answer
166 views
PHP Including a File 2 directories back
Here is my situation. I have a config.php file that I would like to share between all of my folders. It is located in my root: includes/config.php.
I am in my admin folder and am trying to include ...
1
vote
3answers
251 views
Change php include path with javascript
I'm trying to change the include path of a php file with javascript if the user changes the language of the website.
I'm using this code to check if the language of the website is english or not.
...
0
votes
3answers
408 views
php include vs library; correct path
I have been trying to research what is better to use in order to include repetitive parts of the website - php include function or library(provided in Dreamweaver).
Or maybe there are other - better ...
0
votes
0answers
106 views
php include path issues
I've read about 100 articles about include path problems, but something just isn't clicking for me. I'm using windows and XAMPP.
My current include_path = ".;C:\xampp\php\PEAR"
Now the file i'm ...
1
vote
4answers
99 views
when including() or require() do I always have to use ../../ relative to my file? Is there a simple way?
I'm building a web app that has php files spread out through different directories, so a typical file may have several includes. All these files everywhere.
a php file may look like this:
...
-1
votes
3answers
286 views
Confused in writing paths in php
I am confused writing a path in include.
Here are some details
I have a file index.php which is here :
localhost/widget/explore/staff/index.php
and want to include a file named constants.php which ...
0
votes
3answers
683 views
Relative paths in PHP not working on server
Background info:
I've been developing a self hosted Facebook app on my own server (localhost) and have everything all working. Recently, I uploaded my files to my shared hosting online server ...
0
votes
1answer
71 views
php set client side new path
i have used http://php.net/manual/en/function.set-include-path.php set include path to set new parent folder to include php files.
Now , after i seted the new parent file , i want to include CSS ...
0
votes
3answers
659 views
Why are these relative paths not working in php
My app structure is as follows
application -> views -> templates
// some more files
page.php
-> controllers
...
2
votes
4answers
1k views
php include_once path
I am trying to find a way to make the include_once(); path start from the beginning directory and then find the path e.g. instead of ../../../path/to/file I would have /path/to/file. If I do do that ...
1
vote
2answers
566 views
Output Include Paths and CMake
I would like to force CMake to provide verbosity in terms of include paths (-I...). Consider current output:
/D/Software/MinGW/bin/g++.exe -DQT_DEBUG -fmessage-length=0 -mfpmath=sse -msse2 -fopenmp ...
-1
votes
4answers
307 views
php require function using root
I have a site with several sub folders and an include folder in the root:
for example :
www.mysite.com
www.mysite.com/includes
www.mysite.com/includes/inc.php
then a sub folder:
...
1
vote
4answers
207 views
Including files by relative path
There must be something i don't understand about linking files -- but here's my problem.
Basically, i have three files.
generalfunctions.php
wordcount.php
index.php
All three files are in ...
3
votes
3answers
71 views
Restructuing the code structure is giving me an include issue in php
I restructured my already working code. My earlier directory structure was as follows:
web
css
style.css
model
db_functions.inc
view
view_functions.inc
controller
index.php
Here is the ...
0
votes
1answer
258 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 ...
1
vote
1answer
848 views
PHP set_include_path
I have a MainClass.php file with other .php files in the same directory. I noticed that I can include other .php files inside this file by using:
require "file.php";
and it seems to load them even ...
1
vote
1answer
584 views
Php: include files localhost and server: different paths
let's imagine this situation: your developer directory is something like this:
project A
project B
project C
common items
the "common items" are common files, classes, functions which are to be ...
0
votes
1answer
2k views
CakePHP include external php file in plugin
I'm making a main app in CakePHP 1.3.10 that has a couple of plugins. In one of them, I need to use a very big array ($array_test) populated "manually".
The way I have it now (which works perfectly) ...
5
votes
5answers
2k views
How to set include path
So, I've been writing include('a.php'), include('b.php'), etc. in my script to include to use functions a() and b() I've written (I named the functions the same as their file names; is this not ...
1
vote
1answer
606 views
Spring Freemarker render “includes” individually
I have a freemarker template (index.ftl) with an include (page1.ftl and page2.ftl) inside it:
this is the sample content on index.ftl
<#include "/pages/page1.ftl">
<#include ...
1
vote
6answers
1k views
Absolute (or relative?) path in PHP
Sorry for asking it as it may be answered many times before, but my question is little bit different
I have tree like
/var/www/path/to/my/app/
-- index.php
-- b.php
-- inc/
-- ...

