Re: [PHP] Image list performance ISSUE

2006-08-07 Thread Andy
] To: 'Andy' [EMAIL PROTECTED]; php-general@lists.php.net Sent: Thursday, August 03, 2006 9:32 PM Subject: RE: [PHP] Image list performance ISSUE Why don't you name the images with the GUID of the user? I want to see someone try to guess another user's GUID... -Original Message- From: Andy

Re: [PHP] Image list performance ISSUE

2006-08-07 Thread Chris
Andy wrote: Sorry for the late answer, I have different applications and the users are kept in DB so I cannot make for every user a directory. I made a solution with .htaccess from apache and redirection to a php script that outputs the image if the user has rights to the images. I will

Re: [PHP] Image list performance ISSUE

2006-08-07 Thread Andy
-general@lists.php.net Sent: Monday, August 07, 2006 10:58 AM Subject: Re: [PHP] Image list performance ISSUE Andy wrote: Sorry for the late answer, I have different applications and the users are kept in DB so I cannot make for every user a directory. I made a solution with .htaccess from

Re: [PHP] Image list performance ISSUE

2006-08-07 Thread David Tulloh
Andy wrote: ... I want to know... is this a big performance issue or not(the image is handled by php and not by apache directly) OR... Is there any other way to handle this situation??? Thanx, Andy. I'd recomend doing a bit of benchmarking to figure out if the performance hit is

Re: [PHP] Image list performance ISSUE

2006-08-07 Thread Richard Lynch
On Mon, August 7, 2006 2:44 am, Andy wrote: The performance Issue that I asked was: Is there a difference if apache sends the image or If I output it with php with readfile. Yes. How much of a difference it makes depends on YOUR hardware. Test it and see is the only sensible answer we can

[PHP] Image list performance ISSUE

2006-08-02 Thread Andy
Hi, I have tons of images, which belongs to different users. In the software we show to the users only the images that they have, but If they take the image links manually they can also see the other images if they modify the image name in the link. Now, I can override the image request

Re: [PHP] Image list performance ISSUE

2006-08-02 Thread tedd
At 12:15 PM +0300 8/2/06, Andy wrote: Hi, I have tons of images, which belongs to different users. In the software we show to the users only the images that they have, but If they take the image links manually they can also see the other images if they modify the image name in the link.