2
votes
4answers
75 views
Tell from where a .php file has been included?
Does anybody know of an automated way of telling whether a PHP script is being called directly (as a HTML page), or as a JavaScript, or as a CSS Stylesheet?
Without GET variables, …
1
vote
3answers
57 views
Decoding Binary via fget / buffer string (Trying to get mp3 header)
I'm writing some quick code to try and extract data from an mp3 file header.
The objective is to extract information from the header such as the bitrate and other vital informatio …
0
votes
6answers
74 views
Accessing binary MP3 Header in C via fopen
I am trying to extract the mp3 header from a file. This is different then the ID3 tags -- the mp3 header is where information about the MPEG version, bit rate, frequency, etc is he …
0
votes
3answers
80 views
Can I mix JNI headers implementation with normal C++ classes?
If I try to implement my class on this file I get an error UnsatisfiedLinkError, however if I remove the implementation of the Broker.h Class it goes ok. Why?
Broker.h
#include " …
2
votes
6answers
211 views
Is including C++ source files an approved method ?
I have a large C++ file (SS.cpp) which I decided to split in smaller files so that I can navigate it without the need of aspirins. So I created
SS_main.cpp
SS_screen.cpp
SS_disk. …
0
votes
1answer
22 views
UITableView: Header below a section gets duplicated if a row is deleted from the section above
In the editing mode of one of my tableviews, I delete a row from a section. The section below has a header. The deletion of the row in the section above leads to duplication of the …
0
votes
2answers
43 views
Header page caching
I'm using the below headers on my web site but I'm running into a problem. The first time I visit my site for the day I don' tsee my ACP link. There are also instances where info …
0
votes
1answer
24 views
https caching of resources used by main php script, NOT the script itself
I'm a little confused here. I read some of the earlier questions on https caching but I didnt get a clear answer.
I've got a script sitting on: https://www.example.com/main.php
I …
1
vote
3answers
35 views
What’s the all fit header to show images?
header("Content-type: image/gif");
readfile($filename);
The above can only be used to show gif images.
Is there a header that can be used to show jpg/png/gif?
1
vote
2answers
48 views
How to minimize the amount of place used by GPL copyright notice?
Gnu GPL page advocates a following header in each file of GPL project:
This file is part of Foobar.
Foobar is free software: you can redistribute it and/or modify
…
0
votes
0answers
32 views
Problem with resolving Qt headers in Eclipse [Linux]
My Eclipse CDT has some problems with either resolving Qt headers or code completion. The example will explain everything. Usually the include would look like this:
#include <Q …
1
vote
3answers
30 views
Python urllib2 Response header question
I'm trying to extract the response header of a URL request. When I use firebug to analyze the response output of a URL request, it returns
Content-Type text/html
however when I …
2
votes
1answer
58 views
Associate table cell with header
But i hope to get some help.
I want to associate a cell value in table with it's header. The header is not known, as it was
generated by SQL query.
Sizes as header came from SQL r …
0
votes
3answers
34 views
local host network monitor and httpservlet request
I have two Tomcat servers on my machine that communicate with one another.
1) Can someone recommend on a good (free) network sniffer so I'll be able to monitor the requests/ resp …
0
votes
1answer
50 views
Downloading files with PHP - Only downloading one at a time!
Hi there,
I have a PHP file that serves up a file, but the problem is that no matter what browser is being used, if you click on 2 links that go to 2 separate files, the second do …
