0
votes
1answer
17 views
ie complicated subdomain cookie problem
all my cookies work great on subdomain, but if subdomain has "_" in it, then cookie dont get read at all and dont get right at all eaither. following are my tested result, which will self explain
…
0
votes
2answers
12 views
One Central Header/Footer used by Multiple Docs (Word 2003 or 2007)
Inside Word (2003 or 2007), is there a way to have one Header/Footer that is used by Multiple documents?
I want to be able to change the header/footer in one spot and have it affect multiple …
2
votes
4answers
75 views
Which headers should I use for serving static content?
I am gzipping my static Javascript and CSS files using PHP. When the original file is requested, the server sends the Last-Modified and ETag headers. I'm not sending these with PHP just yet. I've also …
1
vote
3answers
53 views
PHP Include Error
After changing my include header to a add a function. It disabled my php echo username code.
So it went from
htp://example.com/register.php?r=username
to
htp://example.com/register.php?r=
…
-1
votes
3answers
59 views
How to find if InputStream is empty (contains only headers)
I'm getting InputStream of attached file by web service.
When the user attaches an empty file,
the input stream is not empty, but contains the header of the file (taht can be image, video, zip and …
2
votes
6answers
105 views
Python: Checking Header Format
I'm new to python and need help with a problem. Basically I need to open a file and read it which I can do no problem. The problem arises at line 0, where I need to check the header format.
The …
1
vote
7answers
140 views
C++: Forward declaration of class doesn’t seem to work?
The follwing code is compiled in VC++6. I don't understand why I am getting the compilation error "C2079: 'b' uses undefined class 'B'" for the following code?
//Class B Source
#include "B.h"
void …
0
votes
5answers
123 views
Gmail/Facebook without username/password - PHP Login Header Problem
Hi all.
I want to create my own personal login gateway into Gmail/Facebook/any other site. In this gateway I enter my master username and password, then I can choose where to login …
0
votes
1answer
69 views
Declare default parameter circular reference without pointers?
Is there any way to declare these classes in a header file without indirection?
// Forwards declaration of B
class B;
class A
{
public:
// Default parameter referring to B. May return its …
1
vote
2answers
63 views
c# HttpWebResponse Header encoding
Hi,
I have the following problem. I contact an address which I know employs a 301 redirect.
using HttpWebRequest loHttp = (HttpWebRequest)WebRequest.Create(lcUrl);
and loHttp.AllowAutoRedirect = …
0
votes
3answers
56 views
PHP header(”Refresh”) problems
I have some code like:
header('Refresh: 15; url=' . $url);
This works fine, except when people are visiting this url via Twitter (posted from a Hootesuite client). Apparently, in all browsers …
0
votes
11answers
189 views
Is there a way to prevent a header defined c++ function from being treated as inlined.
Hi, I am making a Qt application and as I was coding, I took the habit of defining my slots in the header. I found it was easier for me to develop that way though I still define normal functions in …
0
votes
0answers
34 views
How to dynamically set HTTP Header in Apache 2.2? [closed]
Seems like this should be easy, but I cannot figure out the syntax. In Apache, I want to use the value of an existing request header to set a new request header. Some simple non-working code that …
1
vote
4answers
101 views
Does defining a function inside a header always make the compiler treat it as inline?
I just learned that defining a c++ function inside a class's header file make the function inline. But I know that putting the inline keyword next to a function is only a suggestion and the compiler …
0
votes
1answer
28 views
Does internet Explorer 7 honour the Vary header by caching properly?
I'm using a technique similar to Rick Strahls example, but have notcied using google's speed tracer that
Resource Caching : @10.88s - The following resources specify a "Vary" header that disables …
