header

headers to force the download of a tar archive

Hi, i have a tar archive on the server that must be downloadable through php. This is the code that i've used: $content=file_get_contents($tar); header("Content-Type: application/force-download"); header("Content-Disposition: attachment; filename=$tar"); header("Content-Length: ".strlen($content)); unlink($name); die($content); Th...

lobobrowser - setting aditional headers

is it possible to add some request headers to lobobrowser? ...

Javascript / AJAX - Send Data to Server w/o Headers?

JS - Is there a way to send data to the server backend without headers? ...

Regex to parse C/C++ functions declarations

I need to parse and split C and C++ functions into the main components (return type, function name/class and method, parameters, etc). I'm working from either headers or a list where the signatures take the form: public: void __thiscall myClass::method(int, class myOtherClass * ) I have the following regex, which works for most fu...

Classic ASP MSXML2.ServerHTTP Post - Youtube Api

I am trying to build an application where i can upload files to youtube. I have gotten OAuth working, and Youtube is returning a session! The problem i am having is, youtube requires i make an XMLHTTP POST to get a url where i can upload through my web page. I have no idea how to make an XMLHTTP Post with the extra parameters youtube r...

How do I control column width of the Vaadin Table?

I have a large table to display in one of our Vaadin application. The table has 110 columns with large text header for each column. On display the table looks awful as all the column header goes off the screen and the header separator loses the alignment with the data record column separator. I have set the table width to 100% to displ...

How to dynamically set header value in JSP

I have a JSP file which creates an Excel document. I want to dynamically set the name of the file to be downloaded. This is how I set the file name to "test.xsl": <% response.setContentType("application/vnd.ms-excel"); response.setHeader("Content-Disposition","attachment; filename=" + "test.xsl" ); %> How can I set the file nam...

How to correctly write declarations of extern arrays (and double arrays) in C's header files?

Suppose I want to share a global array of data across my program, for example: int lookup_indexes[] = { -1, 1, 1, -1, 2, 1, 1, -2, 2, 2, -1, 1, 1, 2 }; What is the correct extern declaration for this array in the C header file? Also what about an array like this: int double_indexes[][5] = { { -1, 1, 1, -1, 1 }, { 2, -2, 2, 1, -1 } }...

Should a server adhere to the HTTP Connection: close header sent from a client?

I have a HTTP client that sets the Connection header to the following value when I make a request: Connection: close However when the server sends a response, it is setting the header to Keep-Alive: Connection: Keep-Alive This seems intuitively wrong to me, and I am wondering how the client should handle such a response from ...

Adding system header search path to Xcode

(Posting this question for reference purpose, I'll answer immediately) How to header search paths to Xcode? Especially using include it this syntax: include <myheader.h> Adding path globally to all projects like system headers. Adding path to only to a specific project. ...

<header> vs. <head>

In this tutorial: http://railstutorial.org/chapters/filling-in-the-layout#top There is "header" I know that in HTML there is "head" But, what is <header> ? Thanks. ...

Identify which file has included some particular header file

Sometimes with a complex header structure it happens some header is included, but it is hard to tell where from. Is there some tool (depedency viewer?) or a method how to find the "inclusion stack" (which source / which header / which header / ...) is including one particular header file? If the header file is included multiple times, ...

Class in header file

I'm having a bit of trouble with a C++ program I'm working on. I've created an abstract class with a single pure virtual method. Since the class has no variables or implemented methods, I've stored the class in a header file without an .cpp implementation file (there isn't any need for one). The method is: virtual void handleEvent() = ...

PHP Header("Location:...") works on one computer and not another...

So I just got a nasty surprise when I deployed some code I thought I'd tested. It would seem there must be some difference between my test machine and my server. The exact same code, featuring a header redirect, worked perfectly on my test machine and not at all on the server. The redirect on the server simply didn't happen, leaving a...

TCPDF Problem with header

Hi, guys. I have a weird bug with tcpdf. I am generating a pdf document with tcpdf. I derived tcpdf and created a class and made my own header and footer. The content of the pdf is printed using writeHTML function. The content is about 4~5 pages. The problem is the header is under the content from page 2. You can check it here http://m...

Include file mess

I'm having 2 classes - one holding Entity information other holding Component information. Now the problem is that the Entity class needs Component class already defined for using it in vector of children, but at the same time Component needs Entity to declare it as it's parent (I'm keeping everything linked in between). This puts out st...

How to run Javah from Eclipse

So I'm trying to run the 'javah' tool on a compiled .class file in Eclipse, but I have no idea how to do it. The examples I found simply said something along the lines of 'run javah on your class...' but I don't really know where I'd find such a command line in Eclipse. If someone can give me a set of idiot proof instructions get this ...

Image centered in Firefox but not IE

Can anyone tell me why the logo on this page is not centering in IE? http://www.cateringvisions.com Thanks! ...

Headers in 3rd party frameworks on Mac OS X

I'm using the Sparkle framework in Qt. I've added the following to my .pro file: LIBS += -framework Sparkle QMAKE_CXX_FLAGS += -F/path/to/the/directory/sparkle.framework/is/in However I get a compilation error saying "Sparkle/Sparkle.h" cannot be found. Framework headers physically reside in MyFramework.framework/Headers/*.h and are i...

Groovy read text file but omit header

This is a follow up to the question asked here: http://stackoverflow.com/questions/3360191/groovy-parsing-text-file The difference now is my file has a header, I attempted to read past the header first and then onto the content that I am wanting, but for some reason it doesn't seem to cooperate. def dataList = [] def theInfoName = 'tes...