active questions tagged include - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T15:04:34Zhttp://stackoverflow.com/feeds/tag/includehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1854304/c-how-to-include-boost-library-header-in-vc60C++ : How to include boost library header in VC++6?Lopper2009-12-06T04:04:22Z2009-12-06T04:21:57Z
<p>I used <a href="http://shoddykid.blogspot.com/2008/07/getting-started-with-boost.html" rel="nofollow">this guide</a> to rebuild the boost library in VC++6 under windows XP. But is having problems trying to include the header files. By default, the boost library makes use of point 1 as follows to declare the header files. But if I used point 1, I get "fatal error C1083: Cannot open include file...". I tried using point 2 to declare and it seem to work but all the header files referenced internally by point 2 will have to be changed. This lead to a cascade of header declaration to be changed which is not realistic.</p>
<p>Did I miss something? What is the correct way of including the header file without errors?</p>
<pre><code>1) #include <boost/interprocess/managed_shared_memory.hpp>
2) #include "..\boost\interprocess\managed_shared_memory.hpp"
</code></pre>
http://stackoverflow.com/questions/1853481/include-document-in-joomla-with-php0Include document in joomla with PHPDom2009-12-05T21:09:24Z2009-12-05T21:12:53Z
<p>Hi</p>
<p>I'm very fresh to PHP world.</p>
<p>Trying to do as I think very simple thing(?)- include external file in Joomla template.</p>
<pre><code><?php include_once('templates/' echo $this->template '/includes/footer.php'); ?>
</code></pre>
<p>But unfortunately it is not working.</p>
<p>can someone please tell me how correct string should look like?</p>
<p>Thank you in advance</p>
http://stackoverflow.com/questions/1853060/opencv-and-include-files0OpenCV and include filesMax2009-12-05T18:48:16Z2009-12-05T18:55:28Z
<p>Hi - has anyone installed OpenCV 2.0 on windows? Does the installation create directories such as "...\opencv\cxcore\include"? How do you link the libraries in Visual C++ 2008 (Express) and also the include files? In short how do you use OpenCV2.0 with VC++ 2008?</p>
<p>Any help greatly appreciated.</p>
<p>Max.</p>
http://stackoverflow.com/questions/1844223/include-iostream-in-c0#include iostream in C?Phenom2009-12-04T01:07:42Z2009-12-05T10:58:29Z
<p>In C++ we always put the following at the top of the program</p>
<pre><code>#include <iostream>
</code></pre>
<p>What about for C?</p>
http://stackoverflow.com/questions/1850897/how-to-include-specific-filename-from-multiple-directories-using-php1How to include specific filename from multiple directories using PHPrevive2009-12-05T02:21:30Z2009-12-05T09:24:11Z
<p>Hello,
I'm trying to include specific 'admin view' files from within a folder structure. I'm familiar with include/require or how to recursively include a folder, but all I need to do is include one filename from each directory - the admin_view.php file.</p>
<p>So, my dir. structure looks like this:</p>
<p>File to have includes is at root.</p>
<pre><code> - mods
- type
-- type1
-admin_view.php
-other files I do not need included
-- type2
-admin_view.php
-other files I do not need included
-- type3
-admin_view.php
-other files I do not need included
</code></pre>
<p>As you can see, recursively including the files wont work, and manually including them works fine,.. until we start adding and removing directories from the main 'type' folder.. then, we have to manually edit all the include codes.. so, I am hoping to find a function, or snippet, that will allow me to look through al the directories with the 'type' directory and include ONLY a specific filename (admin_view.php)</p>
<p>This is what I've pieced together so far, but it's not working... :(</p>
<pre><code>$modulesDir = array (
ROOT_DIR.'mods/type',
);
$view_name = "admin_view.php";
function __autoload($view_name) {
global $modulesDir;
foreach ($modulesDir as $directory) {
if (file_exists($directory . $view_name)) {
require_once ($directory . $view_name);
return;
}
}
}
</code></pre>
<p>Thanks so much! This place is an awesome resource.. and I really appreciate all the knowledge, correction, clarification, etc. that it provides the development community!
J</p>
<p><strong>EDIT:</strong></p>
<p>I was able to get the view files loaded with this.. but I have a feeling that there's a better way to do this:
<p>foreach (glob($view_name) as $filename) {
include $filename;
}
?></p>
<p><strong>CLARIFICATION</strong></p>
<p>I was misusing the __autoload function.. as I am NOT loading classes.. just php files to include in the main document... sorry for the error, I'm learning :)</p>
http://stackoverflow.com/questions/1850870/php-catch-empty-includes1PHP Catch "Empty" Includesgms89942009-12-05T02:12:53Z2009-12-05T02:18:30Z
<p>We have a custom framework that we use, that allows us to <code>include</code> code in to other pages. However, the header for this code is always printed, even if the <code>include</code> code doesn't output anything. Is there a way that I can <code>exit</code>, or <code>return</code> something specific, that I can trap and catch via <code>include</code>/<code>require</code>, so that I can do the right thing?</p>
http://stackoverflow.com/questions/1849738/including-h-file-from-a-different-application-directory0including .h file from a different application/directoryJaelebi2009-12-04T21:26:48Z2009-12-04T21:53:39Z
<p>I have some .h files as follows (on Linux)</p>
<pre><code>Source/Server/connect.h
Source/Server/message.h
...
</code></pre>
<p>I am developing another application that needs the two .h files but is in a different directory</p>
<pre><code>Source/App2/..
</code></pre>
<p>How can I include the connect.h file in the App2 application, considering that I use perforce and everyone else working on the application would have their own copy so adding an absolute path to the include library might not be a good idea but im not sure.</p>
<p>EDIT:
I use a proprietary build mechanism for building the code so will not be able to specify gcc options directly.</p>
http://stackoverflow.com/questions/1848286/include-iostream-c0include <iostream> C++Neeraj2009-12-04T16:57:38Z2009-12-04T21:34:59Z
<p>Follow up of this <a href="http://stackoverflow.com/questions/1847822/name-collision-in-c">question</a>: </p>
<p>When I do <code>include <iostream> </code>.<br>
It happens that it includes many files from <code>/usr/include</code> .A <code>grep "\usr\include"</code> over <code>g++ -E prog.cpp</code> counted to about 1260 entries ;).</p>
<p>Is their a way to control including various files?<br>
Platform: Linux<br>
G++ version: 4.2.4</p>
http://stackoverflow.com/questions/1847822/name-collision-in-c2name collision in C++Neeraj2009-12-04T15:47:36Z2009-12-04T18:34:54Z
<p>Hi all,<br>
While writing some code i came across this issue:
<pre><code>
#include <iostream></p>
<p>class random
{
public:
random(){ std::cout << "yay!! i am called \n" ;}
};</p>
<p>random r1 ;</p>
<p>int main()
{
std::cout << "entry!!\n" ;
static random r2;
std::cout << "done!!\n" ;
return 0 ;
}
</pre></code></p>
<p>When i try to compile this code i get the error<br>
<code>error: ârandomâ does not name a type.</code><br>
When I use some different name for the class the code works fine.<br>
Seems like <code>random</code> is defined somewhere else(although the compiler message is not very informative). </p>
<p>My question is how can i assure that a name i am using doesn't collides with a name used in included files. I have tried using namespaces but that leads to ambiguity at the time of call.
Any insights?<br>
<b>[EDIT]</b><br>
I used namespaces as <code>using namespace myNSpace</code><br>
But when i used it as <code>use myNSpace::random</code> it worked fine.</p>
http://stackoverflow.com/questions/1837165/can-two-classes-see-each-other-using-c3can two classes see each other using C++?Asj2009-12-03T01:49:42Z2009-12-03T14:03:55Z
<p>So I have a class A, where I want to call some class B functions. So I include "b.h". But, in class B, I want to call a class A function. If I include "a.h", it ends up in an infinite loop, right? What can I do about it?</p>
http://stackoverflow.com/questions/1836644/php-wont-include-an-existing-file-permission-denied0php won't include an existing file: permission deniedabolotnov2009-12-02T23:34:29Z2009-12-03T00:08:53Z
<p>You will laugh if you read to the end of this :) This is now driving me nuts - can't get php to include an existing file with proper permissions set etc.</p>
<p>I have test.php file and "lib/tools.php" file.</p>
<p>I run the following code:</p>
<pre><code>$fn = 'C:\Sasha\ThreeDiamonds\www\lib\tools.php';
if(file_exists($fn)){
echo "Trying to INCLUDE THE BLoody file: $fn";
if(require_once($fn)==false) echo("failed to include: ".$fn);
}
</code></pre>
<p>and get the following:</p>
<blockquote>
<p>Trying to INCLUDE THE BLoody file:
C:\Sasha\ThreeDiamonds\www\lib\tools.php
Warning:
require_once(C:\Sasha\ThreeDiamonds\www):
failed to open stream: Permission
denied in
C:\Sasha\ThreeDiamonds\www\test.php on
line 5 Fatal error: require_once():
Failed opening required ''
(include_path='.;C:\php5\pear') in
C:\Sasha\ThreeDiamonds\www\test.php on
line 5</p>
</blockquote>
<p>Now, this is running Windows/IIS and recent version of php. </p>
<p>The following works fine if I call another php file from same with tools.php directory with the following code in it:</p>
<pre><code>require('tools.php');
$mytools = new tools();
$mytools->ShowGallery();
</code></pre>
<p>This is driving me really mad :) IIS is setup to annon auth with app pool identity - I can see php-cgi.exe is running under Local Service account and I did make sure tools.php effective permissions allow full access for this account.</p>
<p>I enabled security auditing for this tools.php file for failed attempts and it's not showing any issues.</p>
<p>ok, I went ahead and installed ProcMon to see what's going on here. All I get is "FAST IO DISALLOWED" for "Query Open" operation. Mmmmm? Windows7 yeah.</p>
<p>I'm lost, please help :)</p>
http://stackoverflow.com/questions/439662/what-is-the-difference-between-import-and-include-in-objective-c3What is the difference between #import and #include in Objective-C?Ryan Guill2009-01-13T16:25:17Z2009-12-01T22:39:38Z
<p>What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?</p>
<p>I was reading the following tutorial: <a href="http://www.otierney.net/objective-c.html#preamble" rel="nofollow">http://www.otierney.net/objective-c.html#preamble</a> and its paragraph about #import and #include seems to contradict itself or at least is unclear.</p>
http://stackoverflow.com/questions/1828250/how-to-include-codeigniter-generated-pages1How to include CodeIgniter generated pages?Indrek2009-12-01T19:16:58Z2009-12-01T19:51:18Z
<p>What would be the easiest way to include a CI file?
Let's say I want to include <a href="http://example.com/ci/index.php/mycontroller/" rel="nofollow">http://example.com/ci/index.php/mycontroller/</a> on example.com</p>
<p>example.com doesn't run CI and I can't do include('ci/index.php/mycontroller').</p>
http://stackoverflow.com/questions/1825399/relative-includes-dont-work-anymore-after-moving-to-iis0Relative includes dont work anymore after moving to IIS?Ali2009-12-01T10:49:11Z2009-12-01T11:17:02Z
<p>Ok, I have seen a lot of gripes about the php include() directive here. It seems this is become a cause of grief for me too.</p>
<p>My site structure is something like this:</p>
<pre><code>public_html\index.php
public_html\includes\content.inc.php
public_html\language\en\language.inc.php
public_html\classes\db.inc.php
</code></pre>
<p>The site runs swell on Apache no issues. It does not work on IIS however (grr... #@!!!%).</p>
<p>Let me explain:
What is done is that <strong>index.php</strong> is always called by the webbrowser and depending on the request, it includes <strong>content.inc.php</strong> (there are many of these content files and index.php includes the appropriate one based on logic) </p>
<pre><code>// -- index.php --
include(includes/content.inc.php);
</code></pre>
<p>So far it works well on both Apache and IIS.</p>
<p>Now <strong>content.inc.php</strong> in turn includes <strong>lang.inc.php</strong> and <strong>db.inc.php</strong>. </p>
<p>It looks like:</p>
<pre><code>// -- content.inc.php --
include(language/en/language.inc.php)
include(classes/db.inc.php)
</code></pre>
<p>These lines work well on Apache but IIS complains it cant file the files to be included.</p>
<p>Why? Because Apache maintains the current folder "." is <code>public_html\</code> where the script execution first started.
IIS on the other hand changes the meaning of "." to be the file that is currently being processed. i.e after including content.inc.php, IIS interprets "." as being <code>public_html\includes\</code></p>
<p>Now I know one solution is to change all include paths to be absolute in some way. But my question is, is this really an Apache/IIS issue as I understand it? Is there an IIS or PHP setting to make it behave correctly without mucking about in the code?</p>
<p>BTW, PHP.ini has the </p>
<pre><code>include_path=".;C:\PHP\PEAR"
</code></pre>
http://stackoverflow.com/questions/1818135/how-to-use-php-include-to-insert-an-html-stub-across-all-pages-in-a-website0How to use PHP include to insert an HTML stub across all pages in a websitesenthil2009-11-30T06:23:27Z2009-11-30T10:56:12Z
<p>Hi,</p>
<p>I am developing a simple website. It will have close to 20 pages. It has a 3 level hierarchy.</p>
<pre><code>Home
MenuStub
Category1
Page1
Page2
Category2
Page1
Page2
....
....
....
</code></pre>
<p>The main navigation will have 4 - 5 items representing each 'category'
This will be constant for all the pages. I am not even planning to
highlight the current category or anything.</p>
<p>Previously I decided to put the menu HTML stub alone in a separate file
and use PHP include to include it in all pages.</p>
<p>But, relative paths might be frustrating. Assume that the menu stub
file is located at the root directory. </p>
<p>So, in the root-level pages, the php include will read like</p>
<pre><code>include "menustub.html";
</code></pre>
<p>in the second level pages, it should say</p>
<pre><code>include "../menustub.html";
</code></pre>
<p>and in third level pages, it should say</p>
<pre><code>include "../../menustub.html";
</code></pre>
<p>First, is this the best way to include a single file
across all pages in a website?</p>
<p>Second, if the website grows big, and many more levels
are added, maintaining this will be a problem. If I suddenly
decide to move an entire set of pages one (or several) levels
up or down, I should manually go and change the relative paths
in each file.</p>
<p>Am I missing something here? Is there a universal way to point
to a particular file, that every page will understand, regardless
of where it is located?</p>
<p>What is the best way to have a stub and include it in all the pages
without having these maintenance nightmares?</p>
http://stackoverflow.com/questions/1814182/get-the-results-of-an-include-in-a-string-in-php1Get the Results of an Include in a String in PHP?Kirk2009-11-28T23:55:10Z2009-11-29T12:23:12Z
<p>Let's say file test.php looks like this:</p>
<pre><code><?php
echo 'Hello world.';
?>
</code></pre>
<p>I want to do something like this:</p>
<pre><code>$test = include('test.php');
echo $test;
// Hello world.
</code></pre>
<p>Can anyone point me down the right path?</p>
<p>Edit:</p>
<p>My original goal was to pull PHP code intermingled with HTML out of a database and process it. Here's what I ended up doing:</p>
<pre><code>// Go through all of the code, execute it, and incorporate the results into the content
while(preg_match('/<\?php(.*?)\?>/ims', $content->content, $phpCodeMatches) != 0) {
// Start an output buffer and capture the results of the PHP code
ob_start();
eval($phpCodeMatches[1]);
$output = ob_get_clean();
// Incorporate the results into the content
$content->content = str_replace($phpCodeMatches[0], $output, $content->content);
}
</code></pre>
http://stackoverflow.com/questions/1777670/use-application-within-application-on-android0Use Application within Application on AndroidPitney Jules2009-11-22T02:51:14Z2009-11-28T05:01:39Z
<p>I'm writing a program for the Android Platform and I would like to implement the code of a preexisting application found here (<a href="http://blogoscoped.com/archive/2008-12-15-n14.html" rel="nofollow">http://blogoscoped.com/archive/2008-12-15-n14.html</a>) There is a button in my application menu that says "Show Friends on Map" so I want this program to start from the button press.</p>
<p>For greater detail I will give a small diagram. </p>
<p>User Starts My application > User Presses "Menu" Key > User Presses "Show Friends on Map" > WAMF.apk (the application in the link above) is launched </p>
<p>Is there any way I can do this?</p>
http://stackoverflow.com/questions/1809986/css-file-path-is-right-css-codes-are-valid-but-it-doesnt-take-effect0css file path is right, css codes are valid, but it doesnt take effect !artmania2009-11-27T17:56:38Z2009-11-27T18:06:36Z
<p>Hi friends,</p>
<p>so weird, annoying problem I have. I have css/ folder and index.html at the root. i load css files in head as below:</p>
<pre><code><!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>blabla</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="keywords" content="keywords" />
<meta name="description" content="desc" />
<!-- style files -->
<link rel="stylesheet" type="text/css" href="css/reset.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/layout.css" media="screen" />
<link rel="stylesheet" type="text/css" href="css/global.css" media="screen" />
</head>
</code></pre>
<p>and the css codes are not taking action. I see a plain index.html. I'm sure about css path is right; when I make "view source" and copy-paste the css files paths, it shows the css content. </p>
<p>When I copy css codes into index.html head, it works well. </p>
<p>any idea about what can be the problem?</p>
<p>I appreciate helps!!!</p>
http://stackoverflow.com/questions/1799384/how-can-i-sanitize-my-include-statements1How can I sanitize my include statements?Mike2009-11-25T19:25:53Z2009-11-27T15:17:06Z
<p>How do I clean this so users can't pull pages outside of the local domain? </p>
<pre><code><?php
if(!empty($_GET['page']))
{
include($_GET['page']);
}
else
{
include('home.php');
}
?>
</code></pre>
http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include1How do I include a common file in VBScript (similar to C #include)?paxdiablo2008-11-25T02:23:31Z2009-11-26T22:48:18Z
<p>VBScript doesn't appear to have a way to include a common file of functions.</p>
<p>Is there a way to achieve this?</p>
http://stackoverflow.com/questions/1805886/one-many-many-assoc-find-conditions0one-many-many assoc find conditions Nik2009-11-26T22:11:01Z2009-11-26T22:47:14Z
<p>Hello all! I've got the following models:</p>
<p><strong>project.rb</strong></p>
<pre><code>has_many :tasks
</code></pre>
<p><strong>task.rb</strong></p>
<pre><code>belongs_to :project
has_many :assignments
has_many :users, :through => :assignments
</code></pre>
<p><strong>user.rb</strong></p>
<pre><code>has_many :assignments
has_many :tasks, :through => :assignments
</code></pre>
<p><strong>assignment.rb</strong></p>
<pre><code>belongs_to :task
belongs_to :user
</code></pre>
<p><strong>So for example:</strong>
Project.first.title #=> "Manhattan"
Project.first.tasks.map(&:name) # => ['Find Scientists', 'Find Money', 'Find Location']
Project.first.tasks.first.users.map(&:full_name) #=> ['James Maxwell', 'Evariste Galois', 'Jules Verne']</p>
<p><strong>My first question is:</strong>
How can I find all the persons' names possibly with symbol to proc in one shot, I tried:</p>
<p><code>Project.first.tasks.users.full_name #=> AND FAILED</code>
<code>Project.first.tasks.map(&:users).full_name #=> AND FAILED</code>
<code>Project.first.tasks.map(&:users).map(&:full_name) #=> AND FAILED</code></p>
<p>Any ideas?</p>
<p>And I think this following question might be in the same ball park:</p>
<p>How can I do a find of Project with conditions that search the 'full_name' attribute of the users its tasks?</p>
<p><strong>Example</strong></p>
<p><code>Project.all(:include => {:tasks => :users}, :conditions => ['tasks.users.full_name LIKE ?', query]) #this failed</code></p>
<p>I think the problem is at the 'tasks.users'.</p>
<p>Thanks everyone, have a happy thanksgiving!</p>
http://stackoverflow.com/questions/1782505/innoseup-no-error-reporting-on-include-scripts0Innoseup - no error reporting on #include scripts?Brian Frost2009-11-23T11:17:15Z2009-11-25T09:41:33Z
<p>I'm using Innosetup and I've started getting modular with the "#include Slave.iss" construct. Today I noticed that compile-time errors in the Slave.iss seem to be ignored, although correct lines are processed, for example a missing file in the [Files] section is correctly highlighted in the master.iss but not in the Slave.iss. This is potentially nasty for a source file that goes missing and may not then be highlighted during a subsequent compile. Am I missing something?</p>
http://stackoverflow.com/questions/1791437/how-to-include-files-with-die-function0How to include files with die(); function?w35t2009-11-24T16:59:39Z2009-11-24T17:09:49Z
<p>Hi. file1.php and file2.php with die(); function. </p>
<p>include.php:</p>
<pre><code><? include 'file1.php';
include 'file2.php' ?>
</code></pre>
<p>file1.php</p>
<pre><code><? echo 'included'; die(); ?>
</code></pre>
<p>file2.php</p>
<pre><code><? echo 'not included'; die(); ?>
</code></pre>
<p>How can I included both files with die(); function?</p>
<p>P.S My English poor, sorry for that.</p>
http://stackoverflow.com/questions/1784215/request-uri-showing-include-path0request uri showing include pathjohnsz2009-11-23T16:19:30Z2009-11-23T16:38:23Z
<p>I am trying to get the URL from a function I wrote. But because the function is included into the file, its brining back the include path and not the url. Is there a work around?</p>
<p>i should get /example.php but instead i get includes/url-logger.php</p>
<p>this is done via $_SERVER['request_uri']</p>
<p>cheers</p>
http://stackoverflow.com/questions/374600/how-can-i-generate-multiple-classes-from-xsds-with-common-includes2How can I generate multiple classes from xsd's with common includes?edosoft2008-12-17T13:57:09Z2009-11-23T03:40:00Z
<p>Aloha</p>
<p>I received a few nice xsd files which I want to convert to classes (using xsd.exe)
All the xsd's have the same includes, like this:</p>
<pre><code><xs:include schemaLocation="kstypes.xsd" />
<xs:include schemaLocation="ksparams.xsd" />
</code></pre>
<p>When I generate a class for each xsd the types declared in these files are duplicated for each original xsd. Is there any easy way to 1) only generate the types in the included xsd's once and 2) make sure all other classes use these types?</p>
<p>-Edoode</p>
http://stackoverflow.com/questions/1777397/rtldnext-undeclared0'RTLD_NEXT' undeclaredPhenom2009-11-22T01:06:15Z2009-11-22T02:18:45Z
<p>I'm trying to compile a C program but I get the error 'RTLD_NEXT' undeclared. I think this is supposed to be defined in dlfcn.h which the c program includes, but when I looked inside dlfcn.h there is no RTLD_NEXT.</p>
<p>How do I fix this?</p>
http://stackoverflow.com/questions/1774122/php4-problems-with-include-within-a-file-created-by-fwrite0PHP4 problems with include() within a file created by fwrite()Pranab2009-11-21T00:54:36Z2009-11-21T12:52:38Z
<p>I have a file called <code>generator.php</code> that uses <code>fwrite()</code> to create a <code>result.php</code> on the server (Apache, PHP4).</p>
<p>One of the lines in <code>result.php</code> is a PHP <code>include()</code> statement.</p>
<p>So, in <code>generator.php</code>:</p>
<pre><code>if (!is_file($fname)){
$resultfile = fopen($current_path . "/" . $fname, "w+");
}
fwrite($resultfile, '<?php include($_SERVER["DOCUMENT_ROOT"] . "'. '/inc/footer.php"); ?>' . "\n");
fclose($resultfile);
chmod($current_path . "/" . $fname, 0755);
</code></pre>
<p>And in <code>result.php</code>:</p>
<pre><code><h2>Sponsored Links</h2>
<!-- begin sidebar_top ad -->
<?php echo $_SERVER['DOCUMENT_ROOT'] . "/ads/sidebar_top.php" . "<hr />";
include($_SERVER['DOCUMENT_ROOT'] . "/ads/sidebar_top.php"); ?>
<!-- end sidebar_top ad -->
</code></pre>
<p>But that <code>include()</code> statement doesn't work when I visit <code>result.php</code> in a browser. The echo statement does, so I know the path is correct.</p>
<p>Another <code>test.php</code> with the same code, which I uploaded using FTP into the same folder, works fine.</p>
<p>The code in the same in both files, when recovered via FTP.</p>
<p>In <code>test.php</code>: (works, echoes and includes correctly.)</p>
<pre><code><?php
echo $_SERVER['DOCUMENT_ROOT'] . "/ads/sidebar_top.php" . "<hr />";
include($_SERVER['DOCUMENT_ROOT'] . "/ads/sidebar_top.php");
?>
</code></pre>
<p>Any idea why the <code>include()</code> is working in <code>test.php</code> (created manually) and not in <code>result.php</code> (created using <code>fwrite()</code>), when both are in the same folder?</p>
<p>The only differences I know of between the files:</p>
<ol>
<li>Owner could be different (wouldn't <code>result.php</code> be created by user <code>nobody</code>?)</li>
<li>Permissions are originally different. FTP'd file (working) is <code>0775</code>, while the ones created using fwrite() (include not working) had <code>664</code>, and is chmoded by the <code>generator.php</code> to <code>0775</code>.</li>
<li>Working <code>test.php</code> file was edited on a Mac with Smultron and uploaded via FTP, while <code>result.php</code> was created by <code>fwrite()</code> in <code>generator.php</code> on Linux, called from a browser.</li>
</ol>
http://stackoverflow.com/questions/1768015/c-programming-preprocessor-include-files-from-macro0C Programming: Preprocessor, include files from macroJoshua Cheek2009-11-20T02:51:05Z2009-11-20T04:02:12Z
<p>If I could find a way to do something similar to this, I could cut out hundreds of lines of code in my application, and dramatically increase maintainability. Anyone have any ideas?</p>
<pre><code>#include <stdio.h>
int main( )
{
#define include_all_files(root) \
#include #root "1.h" \
#include #root "2.h" \
#include #root "3.h" \
#include #root "4.h"
include_all_files( first_library )
include_all_files( second_library )
include_all_files( third_library )
return 0;
}
</code></pre>
<p><strong>EDIT</strong>:</p>
<p>I appreciate the responses, my example seems to be causing a misdirection in effort, so here is the problem I am actually trying to solve:</p>
<p>I am implementing a finite state machine. Through naming conventions, I have gotten it to be as simple to add a state as:</p>
<pre><code> STATE(initial_screen)
#include "initial_screen.state"
END_STATE
STATE(login)
#include "login.state"
END_STATE
</code></pre>
<p>However, if I could answer the original question, I could refactor this down to something as simple as:</p>
<pre><code> ADD_STATE(initial_screen)
ADD_STATE(login)
</code></pre>
<p>This is because the file name and the state name, and all the underlying wiring and everything else all follow similar conventions. However, I cannot figure out how to implement the include file based on the token received in a macro.</p>
http://stackoverflow.com/questions/1762070/in-which-include-file-eperm-returned-by-pthreadmutexunlock-error-code-is-decl0In which include file EPERM (returned by pthread_mutex_unlock) error code is declared?raj_arni2009-11-19T09:42:49Z2009-11-19T09:58:35Z
<p>Can anyone give me the right direction for this, as I am not able to find the declaration of EPERM in either pthread.h or errno.h (on openSUSE Linux). I found this in asm-generic/errno-base.h but is this the right one? Why its not in errno.h? Thanks</p>
http://stackoverflow.com/questions/1755216/php-relative-and-absolute-paths1php relative and absolute pathsLizard2009-11-18T10:56:38Z2009-11-18T11:23:57Z
<p>I have read that when including a php file that using a absolute paths has a faster processing time than relative paths.</p>
<p>What would you suggest to use?</p>
<pre><code>include("inlcudes/myscript.php");
</code></pre>
<p>or</p>
<pre><code>include("/home/ftpuser/public_html/includes/myscript.php");
</code></pre>
<p>or even</p>
<pre><code>set_include_path("/home/ftpuser/public_html/includes");
include("myscript.php");
</code></pre>
<p>Or is it something that I really shouldn't worry about?</p>
<p>Thanks in advance!</p>