Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Perl Beginners Cgi > Re: Cant Displa...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 8 of 12 Topic 1415 of 1496
Post > Topic >>

Re: Cant Display the image...

by njus@[EMAIL PROTECTED] (Lars Haugseth) Sep 8, 2007 at 12:49 PM

* jeevan.ingale@[EMAIL PROTECTED]
 (jeevs) wrote:
> 
>         qx{rm -rf /var/www/images/file.png};

Use Perl:

  unlink '/var/www/images/file.png';

>         qx{chmod -R 777 /var/www/images/file.png};

Use Perl:

  chmod 0777, '/var/www/images/file.png';

What happens when two users try to access your CGI script simultaneously?

You could include something unique in your filename, like this:

  my $filename = '/var/www/images/' . $$ . time() . 'png';

A better solution: call your own CGI script with some parameter that
makes it output the raw PNG data and use that URL in the <img>-tag.
Then you won't have to worry about creating files on the server at all.

-- 
Lars Haugseth

"If anyone disagrees with anything I say, I am quite prepared not only to
 retract it, but also to deny under oath that I ever said it." -Tom Lehrer
 




 12 Posts in Topic:
Cant Display the image...
jeevan.ingale@[EMAIL PROT  2007-09-06 01:03:27 
Re: Cant Display the image...
david@[EMAIL PROTECTED]   2007-09-06 10:17:47 
Re: Cant Display the image...
noreply@[EMAIL PROTECTED]  2007-09-06 12:23:27 
Re: Cant Display the image...
jeevan.ingale@[EMAIL PROT  2007-09-06 04:54:25 
Re: Cant Display the image...
jeevan.ingale@[EMAIL PROT  2007-09-06 05:03:08 
Re: Cant Display the image...
david@[EMAIL PROTECTED]   2007-09-06 13:51:26 
Re: Cant Display the image...
noreply@[EMAIL PROTECTED]  2007-09-07 01:04:08 
Re: Cant Display the image...
njus@[EMAIL PROTECTED] (  2007-09-08 12:49:09 
Re: Cant Display the image...
jeevan.ingale@[EMAIL PROT  2007-09-06 05:32:41 
Re: Cant Display the image...
noreply@[EMAIL PROTECTED]  2007-09-07 02:54:48 
Re: Cant Display the image...
jeevan.ingale@[EMAIL PROT  2007-09-07 04:06:56 
Re: Cant Display the image...
noreply@[EMAIL PROTECTED]  2007-09-09 06:19:18 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Nov 22 10:38:04 CST 2008.