+ Reply to Thread
Results 1 to 8 of 8

Thread: Fixing a SQL script

  1. #1
    Wizet's Avatar
    Wizet is offline x10 Elder Wizet is an unknown quantity at this point
    Join Date
    May 2008
    Location
    Brooklyn, New York.
    Posts
    644

    Fixing a SQL script

    PHP Code:
    `idint(11NOT NULL auto_increment,
      `
    namevarchar(13NOT NULL,
      `
    passwordvarchar(128NOT NULL,
      `
    saltvarchar(32) default NULL,
      `
    emailtinytext NOT NULL,
      `
    createdattimestamp NOT NULL default CURRENT_TIMESTAMP,
      `
    verificationvarchar(200NOT NULL default '0',
      `
    verifiedvarchar(1NOT NULL default '0',
      `
    loggedintinyint(4NOT NULL default '0',
      `
    lastlogintimestamp NULL default NULL,
      `
    bannedtinyint(1NOT NULL default '0',
      `
    banreasontext NULL,
      `
    siteloginint(11) default NULL,
      `
    maincharacterint(255) default '0',
      `
    postedthreadint(11) default NULL,
      `
    webadminsmallint(1NOT NULL default '0',
      `
    positiveratingsint(11NOT NULL default '0',
      `
    neutralratingsint(11NOT NULL default '0',
      `
    negativeratingsint(11NOT NULL default '0',
      `
    sellingauctionsint(11NOT NULL default '8',
      `
    buyingauctionsint(11NOT NULL default '2'
    This is my website sql script. I am offering an amount of credits desired but not too much. (Don't worry I'm not that cheap) Also the object of this offer is to fix the script so that members do not need to verify themselves but you can only do that by editing the script and not removing any tables. It seems easy but it isn't.
    Last edited by Wizet; 01-05-2009 at 05:50 PM.

  2. #2
    michael9 is offline x10 Sophmore michael9 is an unknown quantity at this point
    Join Date
    Sep 2007
    Location
    U.S.A.
    Posts
    127

    Re: Fixing a SQL script

    Code:
    `id` int(11) NOT NULL auto_increment,
      `name` varchar(13) NOT NULL,
      `password` varchar(128) NOT NULL,
      `salt` varchar(32) default NULL,
      `email` tinytext NOT NULL,
      `createdat` timestamp NOT NULL default CURRENT_TIMESTAMP,
      `verification` varchar(200) NOT NULL default '0',
      `verified` varchar(1) NOT NULL default '1',
      `loggedin` tinyint(4) NOT NULL default '0',
      `lastlogin` timestamp NULL default NULL,
      `banned` tinyint(1) NOT NULL default '0',
      `banreason` text NULL,
      `sitelogin` int(11) default NULL,
      `maincharacter` int(255) default '0',
      `postedthread` int(11) default NULL,
      `webadmin` smallint(1) NOT NULL default '0',
      `positiveratings` int(11) NOT NULL default '0',
      `neutralratings` int(11) NOT NULL default '0',
      `negativeratings` int(11) NOT NULL default '0',
      `sellingauctions` int(11) NOT NULL default '8',
      `buyingauctions` int(11) NOT NULL default '2',
    There is your fix. I'd like 300 credits at the least
    Last edited by michael9; 01-05-2009 at 06:40 PM.
    Find my post helpful? Click on the at the bottom-right corner of this post!

  3. #3
    Wizet's Avatar
    Wizet is offline x10 Elder Wizet is an unknown quantity at this point
    Join Date
    May 2008
    Location
    Brooklyn, New York.
    Posts
    644

    Re: Fixing a SQL script

    *Nods head* I told you it wasn't that easy. If an admin lets me upload my site files which I doubt I could. I would be able to show you. If you have hamachi, if not download here: https://secure.logmein.com/products/hamachi/list.asp and use the hamachi ip http://5.95.152.209 to access my website. You can register and see for yourself as living proof as that doesn't work.
    Last edited by Wizet; 01-05-2009 at 07:03 PM.

  4. #4
    supajason's Avatar
    supajason is offline x10 Lieutenant supajason is an unknown quantity at this point
    Join Date
    Oct 2007
    Location
    England........:-)
    Posts
    288

    Re: Fixing a SQL script

    Quote Originally Posted by Wizet View Post
    PHP Code:
    `idint(11NOT NULL auto_increment,
      `
    namevarchar(13NOT NULL,
      `
    passwordvarchar(128NOT NULL,
      `
    saltvarchar(32) default NULL,
      `
    emailtinytext NOT NULL,
      `
    createdattimestamp NOT NULL default CURRENT_TIMESTAMP,
      `
    verificationvarchar(200NOT NULL default '0',
      `
    verifiedvarchar(1NOT NULL default '0',
      `
    loggedintinyint(4NOT NULL default '0',
      `
    lastlogintimestamp NULL default NULL,
      `
    bannedtinyint(1NOT NULL default '0',
      `
    banreasontext NULL,
      `
    siteloginint(11) default NULL,
      `
    maincharacterint(255) default '0',
      `
    postedthreadint(11) default NULL,
      `
    webadminsmallint(1NOT NULL default '0',
      `
    positiveratingsint(11NOT NULL default '0',
      `
    neutralratingsint(11NOT NULL default '0',
      `
    negativeratingsint(11NOT NULL default '0',
      `
    sellingauctionsint(11NOT NULL default '8',
      `
    buyingauctionsint(11NOT NULL default '2'
    This is my website sql script. I am offering an amount of credits desired but not too much. (Don't worry I'm not that cheap) Also the object of this offer is to fix the script so that members do not need to verify themselves but you can only do that by editing the script and not removing any tables. It seems easy but it isn't.
    please explain want you in more detail!

    verify themselves?
    supajason was here

  5. #5
    Wizet's Avatar
    Wizet is offline x10 Elder Wizet is an unknown quantity at this point
    Join Date
    May 2008
    Location
    Brooklyn, New York.
    Posts
    644

    Re: Fixing a SQL script

    No the thing is I don't want them to verified so when they register they can login without any problems. Unfortunately I told you it wasn't that easy.

  6. #6
    supajason's Avatar
    supajason is offline x10 Lieutenant supajason is an unknown quantity at this point
    Join Date
    Oct 2007
    Location
    England........:-)
    Posts
    288

    Re: Fixing a SQL script

    can you post the login script!

    and tell me your hamachi network name and password?
    supajason was here

  7. #7
    Wizet's Avatar
    Wizet is offline x10 Elder Wizet is an unknown quantity at this point
    Join Date
    May 2008
    Location
    Brooklyn, New York.
    Posts
    644

    Re: Fixing a SQL script

    Uh how should I say this. There is no page that says login.php so thats out of the question. Also the hamachi network is network name: x10hosting
    password: x10hosting. Also the network name is case-sensitive.

  8. #8
    Wizet's Avatar
    Wizet is offline x10 Elder Wizet is an unknown quantity at this point
    Join Date
    May 2008
    Location
    Brooklyn, New York.
    Posts
    644

    Re: Fixing a SQL script

    Does anyone else want to try. Please PM me to see it first-hand.

+ Reply to Thread

Similar Threads

  1. Access to 300+ PHP scripts (2500 credits)
    By jonathanyaniv in forum The Marketplace
    Replies: 11
    Last Post: 06-03-2008, 10:58 PM
  2. SQL on home PC, and script on x10?
    By Blazer9131 in forum Free Hosting
    Replies: 3
    Last Post: 04-16-2008, 06:53 PM
  3. Replies: 8
    Last Post: 12-03-2007, 04:12 PM
  4. install php script into sql database
    By LashRash in forum The Marketplace
    Replies: 2
    Last Post: 11-29-2007, 10:30 PM
  5. Server UP time Script
    By dharmil in forum Scripts & 3rd Party Apps
    Replies: 2
    Last Post: 04-03-2006, 04:39 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
x10hosting free hosting for the masses
dedicated servers