how i can obtain the USER table from VB3 B7 ?!!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • random_X
    New Member
    • Jul 2003
    • 24
    • 3.0.0 Beta 4

    how i can obtain the USER table from VB3 B7 ?!!

    how i can obtain the USER table from VB3 B7 ?!!

    i want only abstraction the specific VALU as :

    username
    password
    e-mail


    who this r done ?
  • Faruk
    Senior Member
    • Aug 2001
    • 1320
    • 3.0.0 'Gold'

    #2
    ew, font.
    ew, spelling.
    ew, what exactly are you trying to get? a database dump of your own db.user table or from someone elses? o_O

    Comment

    • rylin
      Senior Member
      • Jan 2001
      • 1067

      #3
      Originally posted by random_X
      how i can obtain the USER table from VB3 B7 ?!!

      i want only abstraction the specific VALU as :

      username
      password
      e-mail


      who this r done ?
      You'll probably be asked to enter your license information in the members area.
      I'd suggest you do it before someone asks you to do that
      My open eyes see everything, and you see nothing. . .
      That forum

      Comment

      • Steve Machol
        Former Customer Support Manager
        • Jul 2000
        • 154488

        #4
        The only way to do what you want is to download vB3 and either set up a test forum, or extract the queries to create the user table from the install file.
        Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
        Change CKEditor Colors to Match Style (for 4.1.4 and above)

        Steve Machol Photography


        Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.


        Comment

        • random_X
          New Member
          • Jul 2003
          • 24
          • 3.0.0 Beta 4

          #5
          Originally posted by KuraFire
          ew, font.
          ew, spelling.
          ew, what exactly are you trying to get? a database dump of your own db.user table or from someone elses? o_O
          But u Got waht i want "KuraFire" ...

          Now do u know how i make database dump for my own db.user table ?!!

          Comment

          • random_X
            New Member
            • Jul 2003
            • 24
            • 3.0.0 Beta 4

            #6
            Originally posted by rylin
            You'll probably be asked to enter your license information in the members area.
            I'd suggest you do it before someone asks you to do that
            heh heh heh hehhee

            Comment

            • random_X
              New Member
              • Jul 2003
              • 24
              • 3.0.0 Beta 4

              #7
              Originally posted by Steve Machol
              The only way to do what you want is to download vB3 and either set up a test forum, or extract the queries to create the user table from the install file.
              do u have any example ?!!

              Comment

              • Steve Machol
                Former Customer Support Manager
                • Jul 2000
                • 154488

                #8
                You don't need an example. The actual query is in the install file as I said (mysql-schema.php). Assuming you are not using db prefixes, it is:

                Code:
                CREATE TABLE user (
                		userid INT UNSIGNED NOT NULL AUTO_INCREMENT,
                		usergroupid SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		membergroupids CHAR(250) NOT NULL DEFAULT '',
                		displaygroupid SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		username CHAR(50) NOT NULL DEFAULT '',
                		password CHAR(32) NOT NULL DEFAULT '',
                		passworddate date NOT NULL DEFAULT '0000-00-00',
                		email CHAR(50) NOT NULL DEFAULT '',
                		styleid SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		parentemail CHAR(50) NOT NULL DEFAULT '',
                		homepage CHAR(100) NOT NULL DEFAULT '',
                		icq CHAR(20) NOT NULL DEFAULT '',
                		aim CHAR(20) NOT NULL DEFAULT '',
                		yahoo CHAR(32) NOT NULL DEFAULT '',
                		showvbcode SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		usertitle CHAR(250) NOT NULL DEFAULT '',
                		customtitle SMALLINT NOT NULL DEFAULT '0',
                		joindate INT UNSIGNED NOT NULL DEFAULT '0',
                		daysprune SMALLINT NOT NULL DEFAULT '0',
                		lastvisit INT UNSIGNED NOT NULL DEFAULT '0',
                		lastactivity INT UNSIGNED NOT NULL DEFAULT '0',
                		lastpost INT UNSIGNED NOT NULL DEFAULT '0',
                		posts INT UNSIGNED NOT NULL DEFAULT '0',
                		reputation SMALLINT NOT NULL DEFAULT '0',
                		reputationlevelid INT UNSIGNED NOT NULL DEFAULT '1',
                		timezoneoffset CHAR(4) NOT NULL DEFAULT '',
                		pmpopup SMALLINT NOT NULL DEFAULT '0',
                		avatarid SMALLINT NOT NULL DEFAULT '0',
                		avatarrevision INT UNSIGNED NOT NULL DEFAULT '0',
                		options INT UNSIGNED NOT NULL DEFAULT '15',
                		birthday CHAR(10) NOT NULL DEFAULT '',
                		maxposts SMALLINT NOT NULL DEFAULT '-1',
                		startofweek SMALLINT NOT NULL DEFAULT '1',
                		ipaddress CHAR(15) NOT NULL DEFAULT '',
                		referrerid INT UNSIGNED NOT NULL DEFAULT '0',
                		languageid SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		msn VARCHAR(100) NOT NULL DEFAULT '',
                		emailstamp INT UNSIGNED NOT NULL DEFAULT '0',
                		threadedmode SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		autosubscribe SMALLINT UNSIGNED NOT NULL DEFAULT '-1',
                		pmtotal SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		pmunread SMALLINT UNSIGNED NOT NULL DEFAULT '0',
                		salt CHAR(3) NOT NULL DEFAULT '',
                		PRIMARY KEY (userid),
                		KEY usergroupid (usergroupid),
                		KEY username (username),
                		KEY birthday (birthday)
                );
                Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
                Change CKEditor Colors to Match Style (for 4.1.4 and above)

                Steve Machol Photography


                Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.


                Comment

                • random_X
                  New Member
                  • Jul 2003
                  • 24
                  • 3.0.0 Beta 4

                  #9
                  THANK'S Steve

                  i didn't Know Where i can find it exactly ... But u make it easier ...


                  thank's agine

                  Comment

                  widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
                  Working...