View Single Post
  #2  
Old 14th October 2013, 11:36
AutoSnipe AutoSnipe is offline
Senior Member
 
Join Date: May 2008
Posts: 84
Default
On the register.php or whatever it is, find the query that inserts the user into the database, add the uploaded table and tell it how much ya wanna give them.. easy as piss...

Bump: account-signup.php

Find
PHP Code:
SQL_Query_exec("INSERT INTO users (username, password, secret, email, status, added, last_access, age, country, gender, client, stylesheet, language, class, ip) VALUES (" .
      
implode(","array_map("sqlesc", array($wantusername$wantpassword$secret$email$statusget_date_time(), get_date_time(), $age$country$gender$client$site_config["default_theme"], $site_config["default_language"], $signupclassgetip()))).")"); 
Change to

PHP Code:

SQL_Query_exec
("INSERT INTO users (username, password, secret, email, status, added, last_access, age, country, gender, client, stylesheet, language, class, uploaded, ip) VALUES (" .
      
implode(","array_map("sqlesc", array($wantusername$wantpassword$secret$email$statusget_date_time(), get_date_time(), $age$country$gender$client$site_config["default_theme"], $site_config["default_language"], $signupclass'INSERTHOWMUCHYAWANNAGIVETHEMHERE'getip()))).")"); 
Change the obvious.. to something setout as '1024' for 1mb and so on
Reply With Quote
The Following User Says Thank You to AutoSnipe For This Useful Post:
easy62120 (14th October 2013)