4
votes
7answers
224 views
Is it a good idea to put all project headers into one file HEADERS.h?
I talked to my instructor the other day and asked him this question. He told me that I could go for smaller projects, but I'm starting a chess program and I was wondering what Stac …
0
votes
1answer
40 views
emails sent with php mail don’t show up correctly in outlook
I'm working on a site that was recently moved. After the move all the scripts that use the php mail() function AND have MIME-Version: and Content-type in the header fail to display …
0
votes
2answers
93 views
Does Not Name A Type in C++
in C++ when i get an error that says xxxxx does not name a type in yyy.h
What does that mean?
yyy.h has included the header that xxxx is in.
Example, I use:
typedef CP_M_Refere …
0
votes
3answers
101 views
Separating Enums from Class Definitions using Namespaces in C++?
I'm working with a legacy class that looks like this:
class A
{
enum Flags { One = 1, Two = 2 };
};
I'd like to pull out all the enums into a new namespace defined in a new …
1
vote
2answers
52 views
How to tell clicking “back” to load the cache?
I realize that you can't 100% know that this will work in all browsers. All I care about is IE 8, Chrome, and Firefox. I need some base headers that I can put at the top of my PH …
2
votes
1answer
44 views
Duplicate Referrer Header - HTTP.sys barfs
I have been testing the PS3 browser (NetFront) with embedded Flash components on a web page and there seems to be a rather serious bug with the way that any requests from Flash are …
3
votes
6answers
229 views
C++ Headers - Best practice when including
C++ headers
If I have A.cpp and A.h as well as b.h, c.h, d.h
Should I do:
in A.h:
#include "b.h"
#include "c.h"
#include "d.h"
in A.cpp:
#include "A.h"
or
in A.cpp:
#inc …
0
votes
1answer
33 views
Python: appengine urllib2 headers from a 302
A normal urllib2 works fine:
>>> import urllib2
>>> r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
>>> r.geturl()
'http://www.writing.com/main/handler/act …
0
votes
2answers
17 views
Reporting Services - Header Columns not showing?
I'm using Reporting Services 2008 and Report Builder 2.0. I've used a tablix to display my data in a simple way - essentially each row in the database receives a row in the tablix …
0
votes
0answers
37 views
How do I prevent duplicate headers when dealing with threads in PHP?
I've written a PHP script that has to fork and do some processing in parallel, and then the main page returns data after processing. I'm currently using the pcntl functions to do t …
0
votes
4answers
32 views
Persisting data cross domains?
I have 2 applications, each in different domains. When a user comes to the first application, clicks a link, the user is sent to the second application.
My problem is as follow …
1
vote
2answers
38 views
Browser behavior on 403 Forbidden error
My server returns a 403 forbidden error when a user tries to access a resource that they do not have access to. Along with the header the server also writes a small message describ …
2
votes
7answers
161 views
Parsing variable length descriptors from a byte stream and acting on their type
I'm reading from a byte stream that contains a series of variable length descriptors which I'm representing as various structs/classes in my code. Each descriptor has a fixed lengt …
0
votes
3answers
95 views
Firefox plugin or way to monitor ALL request data, including headers and content downloaded to browser
I am having problems getting ALL of the information that is downloaded to a browser. For example, I want a plugin, ideally a firefox plugin to download the HTML content and monito …
0
votes
1answer
27 views
Adding headers in postfix incoming mails
Hello,
I am unable to see the following headers in e-mails received on my Postfix e-mail receiving server:
Return-Path
Received: from
Similar to header on gmail
Received: from …
