header

UITableView tableFooterView weird resizing

Hey, I want to display a UIButton in a UITableView's Footer (should be exactly the same for the header). This code is in the viewDidLoad of my TableViewController: UIButton *footerShareButton = [UIButton buttonWithType:UIButtonTypeRoundedRect]; [footerShareButton setFrame:CGRectMake(10, 0, 70, 50)]; NSLog(@"%f", footerShareButton.fram...

redirecting with if statment based on cookie using header('location:') gives weird error in firefox

Hi. I am trying to redirect my visitors to for example http://localhost/site/test.php?lang=en_USbased on the country code in the cookie like this: if (isset($_COOKIE['country'])) { $country = $_COOKIE['country']; header('Location: test.php?lang=en_US'); if ($country == "NO"){ header('Lo...

Carousel Type of Jquery Slide with Numbers

Hi, I have a big problem, please tell me how to do this code? That is just like the jquery header slideshow done in http://www.skype.com/ The one that has the "< 1 2 3 4 >" buttons. I just want to know the code for these buttons. If you can give samples for me to learn. Thank you!!! ...

PHP: display content after forcing download?

I got a script like this <?php if (file_exists("./foo.txt")) { header("Content-type: application/force-download"); header("Content-length: ".filesize("./foo.txt")); header('Content-Disposition: attachment; filename="foo.txt"'); readfile('./foo.txt'); } print "HEY!"; ?> and I want the "Hey" to be written to the page...

android listview empty message with header

Is there any way to display the empty message and the listview header at the same time? It seems that when i set the empty view and the list is empty, the header will not be displayed. thx Ben ...

asp.net: add attribute to headers th

Hello, I changed a gridview's header to ... with Sub MakeAccessible(ByVal grid As GridView) If grid.Rows.Count > 0 Then grid.UseAccessibleHeader = True grid.HeaderRow.TableSection = TableRowSection.TableHeader grid.HeaderRow.CssClass = "" 'grid.FooterRow.TableSection = TableRowSection.TableFoote...

Http Range header

I was reading http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35 and trying to figure out how to continue a file download. For example, suppose a file is of length 100 bytes and I have all the 100 bytes. However, I don't know what the expected file size should be, so I ask for the file and specify a Range header that looks ...

disable datagrid header rollover color and selection collor

how could i remove these two colors for the header.... i could override rollover for the columns and leave the selection, but i want to remove these two effects from the header and i couldn't find a way to do that.... ...

php headers already sent error

I have a single php file, with this code in it: <?php header("Location: somepage.php"); ?> Absolutely no spaces before or after the php opening or closing tags and I am getting the Warning: Cannot modify header information - headers already sent by (output started at C:\ ... \test.php:1 Usually when I get this error, the 1 is the ...

How to remove headers in an array

All, I have a PHP application that seems to generate the following headers in an array. I wish to remove these headers, so I can set new ones like the one for a pdf download. array(2) { [0]=> string(23) "X-Powered-By: PHP/5.3.1" [1]=> string(23) "Content-type: text/html" } How do I do this, as this doesn't seem to work: var_...

Help on changing the page language without changing the current page (PHP)

Hello I have a multi-langauage web. I set 3 links, Français... (href=changeLanguage.php?lang=fr,es,en) changLanguage.php session_start(); if(isset($_SESSION['bckTo']) && isset($_GET['lang'])){ $lang = preg_replace('/[^a-z]/','',trim($_GET['lang'])); #TODO #More vlidation ... $full_url = $_SESSION['bckTo']; $ful...

Why is this returning a "Not Found" with PHP and cURL?

My script works with all other links I tried, and i get the same response with cURL also (and this is a lot smaller, so I like this code): <?php $url = $_GET['url']; $header = get_headers($url,1); print_r($header); function get_url($u,$h){ if(preg_match('/200/',$h[0])){ echo file_get_contents($u); ...

Including C headers inside a C++ program

I have a C++ program (.cpp) inside which I wish to use some of the functions which are present inside the C header files such as stdio.h, conio.h, stdlib.h, graphics.h, devices.h etc. I could include the stdio.h library inside my cpp file as : #include <cstdio>. How do I include the other library files? How do I add the graphics.h libr...

Header inclusion and compiler errors

In my CPP file I have a call that is: pt.x = mDownPoint.x + FSign(pt.x-mDownPoint.x) * FMax( FAbs(pt.x-mDownPoint.x), FAbs(pt.y-mDownPoint.y) ); I get compiler errors for FSign, FMax, FAbs, but I include the header file where they are at. So I don't see why it would not find it, unless I have done something wrong in the creat...

Using same cache from different static servers

I'm thinking about adding another static server to a web app, so I'd have static1.domain.tld and static2.domain.tld. The point would be to use different domains in order to load static content faster ( more parallel connections at the same time ), but what 'troubles' me is "how to get user's browser to see static1.domain.tld/images/what...

How do I set the correct json headers?

Is there a way in htaccess to ensure the headers for my json are correct? Update: Does anyone see anything wrong with these headers for json? Date Mon, 26 Jul 2010 08:31:11 GMT Server Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.7a mod_fcgid/2.3.5 Phusion_Passenger/2.2.15 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0....

Setting Return-Path with Python sendmail for a MIME message

Hi, Hi would like to set the "Return-Path" header for a MIME message I send with Python. Basically, I tried something like this : message = MIMEMultipart() message.add_header("Return-Path", "[email protected]") #... smtplib.SMTP().sendmail(from, to, message.as_string()) The message I receive have its "Return-Path" header set ...

How can I use different .h files for several targets?

I have a project with several targets. For most of my classes, I can use a single .h file and change the details in the .m file (adding a different .m file for each target). For one of my UIViewController subclasses, I need to declare different UILabel IBOutlets for the different targets (each target shows a different set of labels depe...

How to write content type in cakephp ?

Hi, How can i write ["Content-Type"] = "text/xml" in cakephp and in which file i have to include that one. Please Help. Thanks. ...

how to make sure POST data comes from specific domain?

I have a page confirm_payment.php receiving POST data from other pages. How can I make sure this POST data comes only from one specific domain? I cannot rely on IP addresses as in my case this might change. I want to avoid "fake" submissions to my confirm_payment.php server side code. Without going into details this is to make sure th...