Re: [PHP] Trouble sending an image's contents as output using header Content-Type...

2003-11-10 Thread Marek Kilimajer
Manuel Vázquez Acosta wrote:
Hi all:

I have a page with a img tag:
img src=/getthumbnail.php?fileid=12230983
Any tips?
Manu.
Type http://server.com/getthumbnail.php?fileid=12230983 in the location 
bar and see what happens.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Trouble sending an image's contents as output using header Content-Type...

2003-11-10 Thread Manuel Vázquez Acosta
 Type http://server.com/getthumbnail.php?fileid=12230983 in the location
 bar and see what happens.

I have already done it; it didn't work.

Manu.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Trouble sending an image's contents as output using header Content-Type...

2003-11-10 Thread Marek Kilimajer
Manuel Vázquez Acosta wrote:
Type http://server.com/getthumbnail.php?fileid=12230983 in the location
bar and see what happens.


I have already done it; it didn't work.

Manu.

Did you see any error? If not, do you have display_errors set to on?

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] Trouble sending an image's contents as output using header Content-Type...

2003-11-10 Thread Manuel Vázquez Acosta

Marek Kilimajer [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED]
 Manuel Vázquez Acosta wrote:
 Type http://server.com/getthumbnail.php?fileid=12230983 in the location
 bar and see what happens.
 
 
  I have already done it; it didn't work.
 
  Manu.
 
 Did you see any error? If not, do you have display_errors set to on?


I have a log file and nothing is logged; my error_reporting setting is to
E_ALL; but now that you metion it I call some functions with an appending @;
I will check this.

Manu.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Trouble sending an image's contents as output using header Content-Type...

2003-11-09 Thread Manuel Vázquez Acosta
Hi all:

I have a page with a img tag:
img src=/getthumbnail.php?fileid=12230983

The script getthumbnail.php searchs for a thumbnail of the specified image
id; if not thumbnail exists, the script creates one; and then using
readfile() and header() functions flushes it contents to the browser. But it
fails.

The code is very simple:

header('Content-Type: image/jpeg');// I'm testing with JPEGs

// If the thumbnails exists (or it gets generated this time)
if ($path = _generateThumbnail($_GET['fileid']))
@readfile($path);
else
@readfile(GENERIC_THUMBNAIL);// A constant to a generic icon



Any tips?
Manu.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Trouble sending an image's contents as output using header Content-Type...

2003-11-09 Thread Manuel Vázquez Acosta
 Maybe there's an error with _generateThumbnail() ?
 Do you know for certain that _generateThumbnail() works okay ?

 Martin


I do; it works correctly, the returned path exists. I also tested sending
the Content-Length header and it didn't work either.

Manu.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php