header

Graph of included files

When I work on someone else's code, I tipically need to abuse of grep in order to find data types declarations etc, and this usually makes me confused. I'd like to have some tool which analyzes the source code and produces some graphviz-like drawing and allows me to follow dependencies. Also I've found this on the internet, but I think...

PHP header location redirect causing 500 Internal Server error

Hi, I I keep getting a 500 Internal Server Error when the script below reaches the header('location:php_email_thankyou.php'). Im not sure what is causing this, as I can place the header expression before or after the if statements and it works fine. In firebug it mentions a GET request for the php_email_thankyou.php page not sure if that...

What are the benefits and drawbacks of using header files?

I had some experience on programming languages like Java, C#, Scala as well as some lower level programming language like C, C++, Objective - C. My observation is that low level languages try separate out header files and implementation files while other higher level programming language never separate it out. Those languages use some i...

gridview doubt asp.net

i want to load grid view as header with roles tablle horizontally and first column datafields with page table vertically and for other column datafields with these two table interaction the access table ...

How to add http headers in suds 0.3.6?

Hi everyone, I have an application in python 2.5 which sends data through suds 0.3.6. The problem is that the data contains non-ascii characters, so I need the following header to exist in the soap message: Content-Type="text/html; charset="utf-8" and the header that exists in the SOAP message is just: Content-Type="text/html" I kn...

Why i get everytime the error-message that i've already sent the headers

Hey, i've another question about web-programming. I programmed a login script, but everytime when i try to login it says that i've send the header informations already. Here are the 2 files: <?php if($_GET['logout'] == 1) { setcookie('authorized', 1, time()-3600); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitiona...

Ajax cache control

Hello, I am having a problem with ajax requests in Internet Explorer and in Chrome - I cannot bust the cache. Normal pages don't have the problem - it's just the ajax requests. I know that one workaround is to append a random query string variable to the end of the URL. However, I don't want to lose all the benefits of caching, I jus...

Options for header in raw byte file.

I have a large raw data file (up to 1GB) which contains raw samples from a USB data logger. I need to store extra information relating to the file (sample rate, description, trigger point, last seek position etc) and was looking into adding this as a some sort of header. The header file should ideally be human readable and flexible so...

How to check if Headers already been sent in PHP

Hi! I think most of us know about the infamous "Headers already sent" error in PHP. Can I check someway if headers already have been sent? It would be really handy to do such, before going all out with trying to set some SESSION data or similar. Thanks! ...

redefinition c++

hi, how does header including in c++ work? I have the classes already implemented in .h file and when there is #include in two files, there's this error: files.h:14:7: error: redefinition of ‘class abstract_file’ files.h:14:20: error: previous definition of ‘class abstract_file’` multiple times for each class and enum. Can anyone expl...

Header how to modify title of the page "on the fly"

Hello, My header is called as you can imagine, on each pages. it means that on each pages i've the same title (bad for SEO) Is there a workaround to set pages title outside the header.php ? Thanks ...

urllib and proxies

Hello, I need in using Tor+Privoxy with my python-script. proxies = { 'http' : '127.0.0.1:8118', 'ssl' : '127.0.0.1:8118', 'socks' : '127.0.0.1:9050' } The first question: is the 'socks' name right? Maybe there should be something like 'socks5'? The next step is that I should pass user-agent string with this proxies to...

Freeze Table Header with Microsoft Expression

I am using the below code to achieve the results. The scenario is working fine with single DIV on the page. But when i am adding one more DIV to the page, then problem comes into picture. Find my HTMLcode @ http://docs.google.com/Doc?docid=0Adbmqz8tzPkZZGQ3cjQ5YnJfM2c2NTZkc2Nk&amp;hl=en When i scroll first DIV, the header of second DIV...

Using an objects date (without time) for a table header instead of an objects date and time (iphone)?

I've been working on an iphone project and have run into an issue. Currently In the table view where it displays all the objects, I use headers based on the objects datePerformed field. The only problem is that my code apparently creates a header that contains both the date and time resulting in objects not being grouped solely by thei...

Have xcode search regular include paths before my HEADER_SEARCH_PATHS

I need to force xcode/gcc to search the default system header search paths BEFORE searching my project HEADER_SEARCH_PATHS. Any idea how I can accomplish this? ...

Are tr1 headers available for gcc v3.4.6?

Are tr1 headers available for g++ v3.4.6? If so, how can I locate them at compile time. The following is failing to compile: #include <tr1/memory> With the following error: myModule.h:20:24: tr1/memory: No such file or directory Do I need to move to a later compiler or do I have the headers somewhere? ...

PHP: How to check for response code?

Hi, I'm a relative PHP newbie implementing a PayPal IPN listener and all seems to be working fine, except I dont really know how to check for a response code. I've tried something ugly with cURL but it doesn't work at all (I'm not understanding cURL). I've tried this piece of code that I grabbed from somewhere on the net: $fp = fsock...

Importing a CSV file without headers into SQL 2008

I want to import a CSV with 4,8M records into a SQL 2008 table. I'm trying to do it with the Management Studio wizard but it keeps trying to recognize a header row which the CSV doesnt have. I don't find any option to skip this and although I specify the columns myself, the wizard still tries to find a header row and doesnt import anythi...

Force download working, but showing invalid when trying to open locally.

Hi, I wrote this function and everything works well till i try to open the downloaded copy and it shows that the file is invalid. Here is my function function download_file() { //Check for download request: if(isset($_GET['file'])) { //Make sure there is a file before doing anything if(is_file($this->path ....

C header file won't compile with C, but will with C++.

I have the following chunk of a header file BKE_mesh.h: /* Connectivity data */ typedef struct IndexNode { struct IndexNode *next, *prev; int index; } IndexNode; void create_vert_face_map(ListBase **map, IndexNode **mem, const struct MFace *mface, const int totvert, const int totface); void create_vert_edge_map(ListBas...