coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 upload => Topic started by: RedFalcon on May 30, 2006, 12:29:06 AM

Title: Limiting uploads per day for cpg 1.4
Post by: RedFalcon on May 30, 2006, 12:29:06 AM
Hi

Well, in cpg 1.3 i used  this code in upload.php :

Quote$query = db_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} WHERE owner_id = ".USER_ID." AND ctime > ".time()." - (24*60*60)");
if (mysql_num_rows($query) > 0) {
   cpg_die(INFORMATION, "Usted sólo puede colocar una fotografía cada 24hrs. Gracias.");
}


Now, in cpg 1.4 it's possible?

my site cpg: http://www.foto.hijole.net

Thanks in advance
Regards
Title: Re: Limiting uploads per day for cpg 1.4
Post by: Nibbler on May 30, 2006, 12:36:56 AM
Change db_query to cpg_db_query
Title: Re: Limiting uploads per day for cpg 1.4
Post by: RedFalcon on May 30, 2006, 12:48:19 AM
Tks Nibbler, it's work  :)

Regards