1
vote
3answers
52 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
vote
3answers
56 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
votes
3answers
55 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
103 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 …
0
votes
1answer
68 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 …
0
votes
5answers
99 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
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
2answers
61 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 = …
1
vote
7answers
139 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
3answers
55 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
1answer
24 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 …
0
votes
2answers
26 views
How to make the drop down list in header frame overlap body frame?
I have a header frame, and a body content frame.
My header frame by default is to put logo and logout button.
My body frame is to put all the contents.
Issue now is:
I decided to add in a drop …
0
votes
1answer
45 views
Need help with TabControl.ItemTemplate
Hello.
How do I set the TabItem.Header to bindings taken from few fields, each binding shown in a different size, all in the place of the original header text; without overriding the default style …
1
vote
0answers
31 views
UITableView tableHeaderView not painting in SDK 3.0
I am writing an iphone app. I use a UITableView and assign a my UIView derived class to the tableHeaderView property. When I build with SDK 3.1 the header displays properly. When I build with 3.0 …
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 …
