gumchat.net v4 alpha

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    gumchat.net v4 alpha

    here is gumchat v4 alpha

    upload zip contents to your hosting,
    chmod 0777 all folders in include/gum_tmp,

    add this to your database
    Code:
    -- phpMyAdmin SQL Dump
    -- version 3.3.9.2
    -- http://www.phpmyadmin.net
    --
    -- Host: localhost
    -- Erstellungszeit: 13. April 2011 um 05:07
    -- Server Version: 5.1.56
    -- PHP-Version: 5.2.6
    
    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
    
    --
    -- Datenbank: `gumchat_chat`
    --
    
    -- --------------------------------------------------------
    
    --
    -- Tabellenstruktur für Tabelle `v4_chat_messages`
    --
    
    CREATE TABLE IF NOT EXISTS `v4_chat_messages` (
      `message_id` int(11) NOT NULL AUTO_INCREMENT,
      `message_user_id` int(11) NOT NULL,
      `message_user_name` varchar(50) NOT NULL,
      `message_to_user_id` int(11) DEFAULT NULL,
      `message_message` text NOT NULL,
      `message_color` varchar(10) DEFAULT NULL,
      `message_room_id` int(11) NOT NULL,
      `message_time` int(11) NOT NULL,
      PRIMARY KEY (`message_id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
    
    -- --------------------------------------------------------
    
    --
    -- Tabellenstruktur für Tabelle `v4_chat_rooms`
    --
    
    CREATE TABLE IF NOT EXISTS `v4_chat_rooms` (
      `room_id` int(11) NOT NULL AUTO_INCREMENT,
      `room_user_id` int(11) DEFAULT NULL,
      `room_name` varchar(50) NOT NULL,
      `room_settings` text,
      `room_position` int(11) NOT NULL,
      `room_last_active` int(11) DEFAULT NULL,
      PRIMARY KEY (`room_id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
    
    -- --------------------------------------------------------
    
    --
    -- Tabellenstruktur für Tabelle `v4_chat_users`
    --
    
    CREATE TABLE IF NOT EXISTS `v4_chat_users` (
      `user_id` int(11) NOT NULL AUTO_INCREMENT,
      `user_user_name` varchar(50) NOT NULL,
      `user_password` varchar(255) NOT NULL,
      `user_login_key` varchar(255) DEFAULT NULL,
      `user_first_name` varchar(50) DEFAULT NULL,
      `user_last_name` varchar(50) DEFAULT NULL,
      `user_email` varchar(50) DEFAULT NULL,
      `user_infos` text,
      `user_country` varchar(10) DEFAULT NULL,
      `user_settings` text,
      `user_ip` varchar(100) NOT NULL,
      `user_ua` varchar(255) NOT NULL,
      `user_location` varchar(50) DEFAULT NULL,
      `user_registered` int(11) DEFAULT NULL,
      `user_last_active` int(11) DEFAULT NULL,
      PRIMARY KEY (`user_id`),
      UNIQUE KEY `user_user_name` (`user_user_name`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
    open include/include_top.php and add your database settings like username, password and database name to it.

    Done!
    Attached Files
    Advertise your mobile site for FREE with AdTwirl


    #2
    thanks to share bro
    please add sql to txt file for mobile users

    Comment


      #3
      here is sql.............

      Added after 10 minutes:

      how i create room? and have it any admin panel?
      Attached Files
      Last edited by Parag; 13.04.11, 04:44.

      Comment


        #4
        Originally posted by GumSlone View Post
        here is gumchat v4 alpha

        upload zip contents to your hosting,
        chmod 0777 all folders in include/gum_tmp,

        add this to your database
        Code:
        -- phpMyAdmin SQL Dump
        -- version 3.3.9.2
        -- http://www.phpmyadmin.net
        --
        -- Host: localhost
        -- Erstellungszeit: 13. April 2011 um 05:07
        -- Server Version: 5.1.56
        -- PHP-Version: 5.2.6
        
        SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
        
        --
        -- Datenbank: `gumchat_chat`
        --
        
        -- --------------------------------------------------------
        
        --
        -- Tabellenstruktur für Tabelle `v4_chat_messages`
        --
        
        CREATE TABLE IF NOT EXISTS `v4_chat_messages` (
          `message_id` int(11) NOT NULL AUTO_INCREMENT,
          `message_user_id` int(11) NOT NULL,
          `message_user_name` varchar(50) NOT NULL,
          `message_to_user_id` int(11) DEFAULT NULL,
          `message_message` text NOT NULL,
          `message_color` varchar(10) DEFAULT NULL,
          `message_room_id` int(11) NOT NULL,
          `message_time` int(11) NOT NULL,
          PRIMARY KEY (`message_id`)
        ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
        
        -- --------------------------------------------------------
        
        --
        -- Tabellenstruktur für Tabelle `v4_chat_rooms`
        --
        
        CREATE TABLE IF NOT EXISTS `v4_chat_rooms` (
          `room_id` int(11) NOT NULL AUTO_INCREMENT,
          `room_user_id` int(11) DEFAULT NULL,
          `room_name` varchar(50) NOT NULL,
          `room_settings` text,
          `room_position` int(11) NOT NULL,
          `room_last_active` int(11) DEFAULT NULL,
          PRIMARY KEY (`room_id`)
        ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
        
        -- --------------------------------------------------------
        
        --
        -- Tabellenstruktur für Tabelle `v4_chat_users`
        --
        
        CREATE TABLE IF NOT EXISTS `v4_chat_users` (
          `user_id` int(11) NOT NULL AUTO_INCREMENT,
          `user_user_name` varchar(50) NOT NULL,
          `user_password` varchar(255) NOT NULL,
          `user_login_key` varchar(255) DEFAULT NULL,
          `user_first_name` varchar(50) DEFAULT NULL,
          `user_last_name` varchar(50) DEFAULT NULL,
          `user_email` varchar(50) DEFAULT NULL,
          `user_infos` text,
          `user_country` varchar(10) DEFAULT NULL,
          `user_settings` text,
          `user_ip` varchar(100) NOT NULL,
          `user_ua` varchar(255) NOT NULL,
          `user_location` varchar(50) DEFAULT NULL,
          `user_registered` int(11) DEFAULT NULL,
          `user_last_active` int(11) DEFAULT NULL,
          PRIMARY KEY (`user_id`),
          UNIQUE KEY `user_user_name` (`user_user_name`)
        ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
        open include/include_top.php and add your database settings like username, password and database name to it.

        Done!
        1+rep will be helpful in my czv3 lol

        Comment


          #5
          Originally posted by Parag View Post
          here is sql.............

          Added after 10 minutes:

          how i create room? and have it any admin panel?
          there is no admin panel and to add chatrooms you need to do this in mysql.
          Advertise your mobile site for FREE with AdTwirl

          Comment


            #6
            how i do this ?

            Comment


              #7
              Originally posted by Parag View Post
              how i do this ?
              YouTube - 4. Entering records into a mySQL table using phpMyAdmin
              Advertise your mobile site for FREE with AdTwirl

              Comment


                #8
                Originally posted by FunGalaxy
                there is a problem in it
                check this error here
                please solve it and also one error in ignore list
                why you have placed your own copyright to it?
                Advertise your mobile site for FREE with AdTwirl

                Comment


                  #9
                  i can change it later
                  but 1st solve the error

                  Comment


                    #10
                    Thats y u need not to share anythin n if share then bind it with encoder.
                    These ppl neve give u credit in ur very own script. lol

                    Comment


                      #11
                      Originally posted by khan View Post
                      Thats y u need not to share anythin n if share then bind it with encoder.
                      These ppl neve give u credit in ur very own script. lol
                      I agree completely with khan. Gumslone should encode the script and put it up. These people will never give credit to Gumslone for his work. Instead will make unrighteous demands to modify and update.
                      tinyurl.com/earnbymobile
                      Easy earning for Indians
                      ---------------------
                      Alternative mobile advertising network .. Minimum 100 USD pay / NET15 pay cycle, Good Brand, Best targeting for Android
                      goo.gl/6vub3

                      Comment


                        #12
                        am not steal ur script.
                        I use it only to see how it work.
                        Ok and am going to remove it.
                        Ok

                        Comment


                          #13
                          Originally posted by FunGalaxy View Post
                          i can change it later
                          but 1st solve the error
                          yes... you could change it later...
                          BUT why did you remove GumSlone's copyright at first place ???
                          i'm just guessing... but imho there wont be any help for you...

                          Originally posted by FunGalaxy View Post
                          am not steal ur script.
                          I use it only to see how it work.
                          Ok and am going to remove it.
                          Ok
                          WTF ?!?!?!?
                          the very first moment you have removed GumSlones copyright,
                          YES(!!!) you've stolen his script !
                          It's better to keep your mouth shut and give the impression that you're stupid, than to open it and remove all doubt.
                          ⓣⓗⓔ ⓠⓤⓘⓔⓣⓔⓡ ⓨⓞⓤ ⓑⓔ©ⓞⓜⓔ, ⓣⓗⓔ ⓜⓞⓡⓔ ⓨⓞⓤ ⓐⓡⓔ ⓐⓑⓛⓔ ⓣⓞ ⓗⓔⓐⓡ !
                          ιη тнєσяу, тнє ρяα¢тι¢є ιѕ α яєѕυℓт σƒ тнє тнєσяу, вυт ιη ρяα¢тι¢є ιѕ тнє σρρσѕιтє.
                          キノgんイノ刀g 4 ア乇ムc乇 ノ丂 レノズ乇 キucズノ刀g 4 √ノ尺gノ刀ノイリ!

                          Comment


                            #14
                            ya me too getting this error any solution gumslone???

                            Comment


                              #15
                              put this into the code to fix the error
                              PHP Code:
                              if(is_array($vars)) 
                              Advertise your mobile site for FREE with AdTwirl

                              Comment

                              Working...
                              X