include

PHP include works on Wordpress's index.php file and not in the header.php file?

I wanted to include localization.php in header.php but it only works when I include it in index.php (see below). I thought that including it in header.php would make localization.php work in every file. (localization.php have functions that include a lang file in order to display a language). Any suggestions?? It works like this: inde...

Including outside the root on heart internet servers

Hello I have a site I am trying to deploy with includes outside the site root, on heart internet hosting. I've having difficulty including the files outside the root (above public_html). The path is something like include "home/barbadosholidaylettings.org/demoinclude/core.php"; But I can't retrieve the files I need. Does anyone know ...

Javascript code, unterminated string literal with included javascript

This script works fine, unless the included file contains javascript, then it breaks with the "unterminated string" literal error. Removing spaces and linebreaks does not cure the problem. <script type="text/javascript"> var myArray = [ 'url', 'url2', 'url3', 'url4', 'url5', ]; var i, numDomains = myArray.length, found = false; for (i =...

OS X can't find ANY libraries!!

I recently had some HD issues and had to get a new one. I transferred over my data using Migration Assistant on my freshly imaged disk. Then with but a minute left until I was in the clear, there is a town wide power outage. I was at work and had no backup generator and the university's didn't source the outlets, so my transfer was stopp...

Javascript file inclusion 406 error in CakePHP

Hi, I have several js files under webroot http://www.in-culture.info/app/webroot/js/ All the files are ok Eg http://www.in-culture.info/app/webroot/js/lightbox.js Except this http://www.in-culture.info/app/webroot/js/jquery.cookie.js It's throwing 406 Not acceptable error. Help please. ...

Include external class php

How can include a external class in a php file? example: //Test.class.php <?php class Test{ function print($param){ echo $param; } } ?> //###################################################### //test.php <?php include('http://www.test.com/Test.class.php'); $obj = new Test(); echo $obj->print("hola"); ?> ...

Inconsistent #include css look

For some reason, I'm having a problem with these two pages on my website that should have some elements look the same, but for some reason, they look a little bit different. I have some included asp files which are linked to the same CSS files, so that is why I believe they should be the same. The spacing looks off on the about.asp pag...

Include various Javascripts without getting "unterminated string literal" error?

I get the "unterminated string literal" error with this code. This code used to work by using escaped quotes. Not possible now because because Google Adsense is including several script files. <script type="text/javascript"> <!-- var t=0; var myArray = []; myArray[0]= 'condition1'; myArray[1]= 'condition2'; myArray[2]= 'condition3';...

PHP include Problem

hey everyone i'm trying to apply some module system on my web, using get and include, here's some of my code on my index.php $section = 'user'; if(isset($_GET) && !empty($_GET) && $_GET !== ''){ $module = $_GET['module'].".php"; load_module($section, $module); } load_module function function load_module($s...

Difference between "include" and "require" in php

Is there any difference between them? Is using them a matter of preference? Does using one over the other produce any advantages? Which is better for security? ...

Set allow_url_include on SINGLE file

I've created a php file called pagebase.php that I'm quite proud of. It contains a class that created the whole html file for me from input such as css links and js links. In any case, this file is several hundred lines long, as it includes several helper functions such as cleanHTML() that removes all whitespace from the html code then, ...

How to include a config file for .Net

Is there a way to have the main .net configuration file app.config/web.config include another configuration file? I have a need to keep things in separate files, but link them together. Here is a sample of what I want to include: <?xml version="1.0" encoding="utf-8" ?> <configuration> <configSections> <sectionGroup name="applicat...

C++ output with webpages

Is it possible to have a c++ program like this... #include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0; } And have it's output on a webpage like this... <html> <head> <title>C++</title> </head> <body> <div src = "cpp.exe"></div> </body> </html> ...

PHP include best practices question.

I have been learning syntax for PHP and practicing it. I come from a .NET background so masterpages always made things pretty easy for me when it came to headers and footers. So far I have a mainHeader.php and mainFooter.php which have my head menu and my footer html. I created a mainBody.php and at the top I put <?php include "ma...

create javascript code in a php file - SAFARI/CHROME doesn't work

Hello, I've created a .php file that write out js code like that: <? //my_js.php // javascript header header('Content-type: text/javascript'); // Date in the past header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // always modified header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT'); // HTTP/1.1 header('Cache-Control: no-stor...

PHP require problem with "./"

I have a file index.php in root directory: <?php require_once "./include/common.php"; ?> and file common.php in include folder: <?php require_once "globalConfig.php"; ?> file globalConfig in the same folder with common.php. The tree folder as: xxx/index.php xxx/include/common.php xxx/include/globalConfig.php index.php run norma...

Will require_once and include_once together include the file twice?

If I have this: require_once('myfile.php'); then later: include_once('myfile.php'); Will the file get included again or just the once? Also what is the difference between the two? Require causes an error on failure and include tries to recover? any other differences? ...

PHP variable scope question

According to the PHP manual $a should be available to b.inc in the following code segment: <?php $a = 1; include 'b.inc'; ?> However when I try to do the same when calling a static method, $a seems to be out of scope. class foo { public static function bar() { $a = 1; include('b.inc'); } } foo...

Offline HTML5 .html pages - need to include file into another file

We have an offline set of HTML pages we're working with using HTML5 document type. We want to include our sub-navigation via a <script src="____"> but for some reason it's not including. Is there some other method of including the file without needing server-side assistance somewhere? Because of how we're delivering these files to the c...

C++: include multiple header files with same name from different namespaces

How do you solve created by including a header file with the same name as another header file already indirectly included as a result of another include? For instance: // src/blah/a.hpp #ifndef A_HPP #define A_HPP namspace blah { class A { } } #endif // src/blah/b.hpp #ifndef B_HPP #define B_HPP #includes "a.hpp" namspace blah {...