Two thing may be missing in your httpd.conf file
Server side includes must be enabled.
For the folder containing the file, make sure Options +Includes is specified
You may also want to specify additional file extensions to be filtered
AddOutputFilter INCLUDES .shtml
The following links will...
No, No virtual hosting. Single site on the box. Single apache instance.
Still no luck - moving to Centos 5
Also having issues with perl operator <> not using STDIN without explicitly specifying <STDIN>
Oh well...
Ubunbtu is nice for desktop, but weak as server platform
sh vs bash is also...
elgrandeperro,
You are correct, it is a paste and haste error.
even the predefined referer format won't work, let alone my custom_io format
LogFormat "%{Referer}i -> %U" referer
CustomLog /var/log/apache2/jb_referer referer
No errors in the error_log unless I intentionally misspell...
Maybe something more like this would get you to the character you want. (Ignoring the controllatch bytes, I am not fluent on the handshaking.)
void PRTFuntion (unsigned char* whatCharToPrint )
{
char* pLCDByte = 0;
// print on each "page" is each page a color ?
for ( int LCDPage = 0 ; LCDPage...
When you switch to binmode, could it be chopping off an end of file marker? Some files may be using char 26 as an end of file marker.
If you skip the binmode call, does all work as expected?
Visual C++ certainly does give you some visual design tools. Its not the the same, but it gets you off to a good start.
Click the resources tab and create a new dialog. You can drag and drop controls onto the dialog face. You can use class wizard to associate member variables ad events to...
I guess you probably found your answer, but if not...
It sounds like the original dll either had a databse file that si missing from this project, or it had a dependency on some other dll for the database stuff. Missing a linker dependency to another .lib file...
I find it easier to export things using __declspec
void __declspec(dllexport) beep(DWORD dwCounter)
{
DWORD loop;
for(loop=0; loop<dwCounter; loop++) {
Beep(400, 100);
Sleep(1000);
}
}
And to simplify usage by clients,
add _BUILDING_MY_DLL to the C++ Preprocessor...
I am doing first JWS project. Application can run from a jar file, but for the "Help" function I use registered default browser to open the help.htm.
How to bundle "loose" files with project, or do a loadAsResource from the jar and get it into the browser?
new to jws, but generally strong in...
I'm with RhythmAce. I don't think your ssi is functioning.
Make sure your httpd.conf includes
AddHandler server-parsed .shtml
AddType text/html .shtml
Options +Includes
Either globally, or put the Options +Includes in a <Directory> Tag
Test it with a simple
<!--#include...
You need to attach to the apache application. Make sure you have sp5 applied, there should be a "show all processes" check box or something similar to allow you to see processes owned by other users.
Do the attach, then set your breakpoint.
Are the cgi's dlls or exes. With dlls when you...
you could set upt the aliases in a hash
my %aliases;
$aliases{'jdoe'} = 'abc';
$aliases{'bfoo'} = 'abc';
$aliases{'jjones'} = 'abc';
$aliases{'msmith'} = 'xyz';
$aliases{'zbills'} = 'asdf';
$aliases{'vgoo'} = 'asdf';
# etc
while loop over input
$account = $aliases{$uid};
# process...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.