0
votes
1answer
39 views
Is there a name for name.d/ (e.g. /etc/httpd/conf.d) directories?
I'm writing an application which reads a bunch of config files from a /etc/myapp.d folder (so /etc/myappd.d/*.conf). However, I don't understand the significance of the .d part.
…
1
vote
2answers
61 views
Include a .txt file in a .h in C++?
I have a number of places where I need to re-use some template code. Many classes need these items
In a .h could I do something like:
#include <xxx.txt>
and place all of …
0
votes
2answers
86 views
Is there a way of including HTML pages without needing any javascript or server-side code, only HTML
Is there a way of including HTML pages without needing any javascript or server-side code, only HTML.
Basically I can't be sure if the server supports server side includes. I don' …
0
votes
2answers
55 views
Compiler compiling external includes
Hello,
I have a little problem in my project. I have build static library(e.g. test.lib) . Included it into my binary project linker and included #include "test.h" into stdafx.h. …
0
votes
2answers
236 views
htaccess rewriteRule restrict access to one particular folder problem
Hello,
I have problem with getting the folder inc restricted.
It is only the inc folder in the root directory and not the inc folders higher up de hiarchie
Problems are:
IE w …
0
votes
1answer
28 views
Dealing with path issues with PHPUnit
I've just started to use PHPUnit, but I've run into a bit of a snag.
My code uses $_SERVER['DOCUMENT_ROOT'] to compute paths for includes, which works when my apache server is the …
1
vote
3answers
44 views
Server Side Includes vs. ASP.NET Techniques is there a performance difference?
I was recently hired to update an ASP.NET 1.0 site, created before master pages were available. Hence the pages have server side includes (ssi) like <!-- #include file="footer.h …
0
votes
3answers
59 views
Including dynamic HTML with PHP
I have PHP variables to place within an included HTML file. What's the best way of executing this?
//contents of file1.php
$variable1 = "text 1";
$variable2 = "text 2"
$newContent …
1
vote
3answers
118 views
Vs2008 C++: how can I make recursive include directories?
I am including a complicated project as a library in C++ using Visual Studio 2008.
I have a set of include files that are scattered throughout a very complicated directory tree …
0
votes
3answers
111 views
Does d3d9.h include windows.h? (C++)
When I use #include <d3d9.h> in my programs, I no longer need to include windows.h to use windows functions like WinMain, and CreateWindow.
Is this because d3d9.h &c. in …
4
votes
4answers
153 views
Linux Reference for C++?
I want to know if there is any site like cpluplus.com which explains all the headers files and its available features, but for Linux ? Like for example explaining the sys/, net/, d …
15
votes
8answers
418 views
How secure is PHP?
I am somewhat new to PHP coding and I am aware that malicious users can hack a website if you have not sanitized your PHP code. What I am wondering is whether they need a data entr …
1
vote
0answers
88 views
How do you debug functions from includes in Erlang?
The implementation of ScrumJet on GitHub (as of this writing) shares essentially identical functions between the storage modules for tasks, categories and boards. This was achieve …
2
votes
6answers
205 views
Find Missing Javascript Includes in Website
Say I have several JavaScript includes in a page:
<script type="text/javascript" src="/js/script0.js"></script>
<script type="text/javascript" src="/js/script1.js"& …
0
votes
4answers
143 views
How to use a PHP includes across multiple directories/sub directories with relative paths
I'm having difficulty with paths in a cms system I'm attempting to build, I've basically got a folder with my header.php and footer.php files inside.
These are included in index.p …
