• » webSPELL.org - Free Content Management System
  • Language switch: English German
  • login



    » lost password?   » register now
  • About webSPELL

    webSPELL is a free Content Management System which was especially developed for the needs of esport related communities. Since a short while we are also offering an optimized and enhanced webSPELL version for the special requirements of non-profit organisations. The purpose of both systems is to offer a professional and free opportunity to create and administrate your own website in an easy and optimized way.

    » Learn more about webSPELL     » Download webSPELL now!
  • Advertisement

    Follow us

  • Sort:      «  1 2 3 4 5 6  » printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
    Author
    Message
    webSPELL newbie
    96 Posts
    30.09.2012, 22:41 email offline quote 

    up need dump mysql
    webSPELL newbie
    96 Posts
    30.09.2012, 14:16 email offline quote 

    not works installation! help


    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    8.
    9.
    10.
    11.
    12.
    13.
    14.
    15.
    16.
    17.
    18.
    19.
    20.
    21.
    22.
    23.
    24.
    25.
    26.
    27.
    28.
    29.
    30.
    31.
    32.
    33.
    34.
    35.
    36.
    37.
    38.
    39.
    40.
    41.
    42.
    43.
    44.
    45.
    46.
    47.
    48.
    49.
    50.
    51.
    52.
    53.
    54.
    55.
    56.
    57.
    58.
    59.
    60.
    61.
    62.
    63.
    64.
    65.
    66.
    67.
    68.
    69.
    70.
    71.
    72.
    73.
    74.
    75.
    76.
    77.
    78.
    79.
    80.
    81.
    82.
    83.
    84.
    85.
    86.
    87.
    88.
    89.
    90.
    91.
    92.
    93.
    94.
    95.
    96.
    97.
    98.
    99.
    100.
    101.
    102.
    103.
    104.
    105.
    106.
    107.
    108.
    109.
    110.
    111.
    112.
    113.
    114.
    115.
    116.
    117.
    118.
    119.
    120.
    121.
    122.
    123.
    124.
    125.
    126.
    127.
    128.
    129.
    130.
    131.
    132.
    133.
    134.
    135.
    136.
    137.
    138.
    139.
    140.
    141.
    142.
    143.
    144.
    145.
    146.
    147.
    148.
    149.
    150.
    151.
    152.
    153.
    154.
    <?php
    if(isset($_POST['install'])){

         include ("_mysql.php");
              mysql_connect($host, $user, $pwd) or die ('No connection to mySQL server');
              mysql_select_db($db) or die ('Cannot connect to database: "'.$db.'"');
              
              mysql_query("DROP TABLE IF EXISTS ".PREFIX."shop_categories");
              mysql_query("CREATE TABLE ".PREFIX."shop_categories (
                catID int(11) NOT NULL auto_increment,
                name varchar(255) NOT NULL default '',
                pic varchar(255) NOT NULL default '',
                PRIMARY KEY  (catID)
              ) TYPE=MyISAM AUTO_INCREMENT=1");
              
              mysql_query("DROP TABLE IF EXISTS ".PREFIX."shop_products");
              mysql_query("CREATE TABLE ".PREFIX."shop_products (
                produktID int(11) NOT NULL auto_increment,
                name varchar(255) NOT NULL default '',
                preis float(8,2) NOT NULL,
                cat int(11) NOT NULL default '0',
                lager varchar(255) NOT NULL default '',
                lieferzeit varchar(255) NOT NULL default '',
                beschreibung text NOT NULL,
                artikelnr char(15) NOT NULL default '',
                pic varchar(255) NOT NULL default '',
                comments int(1) NOT NULL DEFAULT '0',
                  brand text NOT NULL,
                  weight text NOT NULL,
                share int(1) NOT NULL DEFAULT '0',
                PRIMARY KEY  (produktID)
              ) TYPE=MyISAM AUTO_INCREMENT=1");
              
              mysql_query("DROP TABLE IF EXISTS ".PREFIX."shop_warenkorb");
              mysql_query("CREATE TABLE ".PREFIX."shop_warenkorb (
                korbID int(11) NOT NULL auto_increment,
                ip varchar(255) NOT NULL default '',
                user int(11) NOT NULL default '0',
                anzahl varchar(255) NOT NULL default '',
                produktID int(11) NOT NULL default '0',
                PRIMARY KEY  (korbID)
              ) TYPE=MyISAM AUTO_INCREMENT=1");
              
              mysql_query("DROP TABLE IF EXISTS ".PREFIX."shop_config");
              mysql_query("CREATE TABLE ".PREFIX."shop_config(
                ID int(1) NOT NULL default '1',
                bankname varchar(255) NOT NULL default '',
                ktno varchar(255) NOT NULL default '',
                blz varchar(255) NOT NULL default '',
                iban text NOT NULL,
                bic text NOT NULL,
                firma text NOT NULL,
                inhaber text NOT NULL,
                anschrift text NOT NULL,
                fplz varchar(50) NOT NULL default '0',
                fstadt text NOT NULL,
                telefax text NOT NULL default '',
                url text NOT NULL,
                agb text NOT NULL,
                currency text NOT NULL,
                emaillogo text NOT NULL,
                mwst float(8,2) NOT NULL,
                checkouts int(1) NOT NULL default '0',
                PRIMARY KEY  (ID)
              ) TYPE=MyISAM;");
              
              /*Insert data*/
              mysql_query("INSERT INTO ".PREFIX."shop_config VALUES (
                   '1', 
                   '".mysql_escape_string($_POST['bankname'])."', 
                   '".mysql_escape_string($_POST['ktno'])."', 
                   '".mysql_escape_string($_POST['blz'])."', 
                   '".mysql_escape_string($_POST['iban'])."', 
                   '".mysql_escape_string($_POST['bic'])."', 
                   '".mysql_escape_string($_POST['firma'])."', 
                   '".mysql_escape_string($_POST['inhaber'])."', 
                   '".mysql_escape_string($_POST['anschrift'])."', 
                   '".mysql_escape_string($_POST['fplz'])."', 
                   '".mysql_escape_string($_POST['fstadt'])."', 
                   '".mysql_escape_string($_POST['telefax'])."', 
                   '".mysql_escape_string($_POST['url'])."',
                   '".mysql_escape_string($_POST['agb'])."',
                   '".mysql_escape_string($_POST['currency'])."',
                   '".mysql_escape_string($_POST['emaillogo'])."',
                   '".mysql_escape_string($_POST['mwst'])."',
                   '".mysql_escape_string($_POST['checkouts'])."'
              );");
              
              mysql_query("DROP TABLE IF EXISTS ".PREFIX."invoice");
              mysql_query("CREATE TABLE ".PREFIX."invoice(
                invoiceID int(11) NOT NULL AUTO_INCREMENT,
                  client varchar(255) NOT NULL,
                  date text NOT NULL,
              status varchar(255) NOT NULL DEFAULT '1',
                email text NOT NULL,
                ordered text NOT NULL,
              cost text NOT NULL,
                PRIMARY KEY  (invoiceID)
              ) TYPE=MyISAM AUTO_INCREMENT=1");
              
              mysql_query("DROP TABLE IF EXISTS ".PREFIX."orders");
              mysql_query("CREATE TABLE ".PREFIX."orders(
                orderID int(11) NOT NULL AUTO_INCREMENT,
              client text NOT NULL,
              total text NOT NULL,
                  order_email text NOT NULL,
              c_firstname text NOT NULL,
              c_lastname text NOT NULL,
              stat int(1) NOT NULL DEFAULT '2',
                date int(14) NOT NULL DEFAULT '0',
                ordered text NOT NULL,
                PRIMARY KEY  (orderID)
              ) TYPE=MyISAM AUTO_INCREMENT=1");
         
         /*SUPPORT SYSTEM*/
              
            mysql_query("DROP TABLE IF EXISTS ".PREFIX."support");
            mysql_query("CREATE TABLE `".PREFIX."support` (
           `ID` int(5) NOT NULL auto_increment,
           `sender` int(5) NOT NULL,
           `email` varchar(255) collate latin1_general_ci NOT NULL,
           `subject` varchar(255) collate latin1_general_ci NOT NULL,
           `topic` int(5) NOT NULL,
           `msg` text collate latin1_general_ci NOT NULL,
           `date` varchar(20) collate latin1_general_ci NOT NULL,
           `time` varchar(20) collate latin1_general_ci NOT NULL,
           `timestamp` varchar(20) collate latin1_general_ci NOT NULL,
           `status` varchar(10) collate latin1_general_ci NOT NULL,
            PRIMARY KEY  (`ID`)
            ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ;");

              mysql_query("DROP TABLE IF EXISTS ".PREFIX."support_topics");
              mysql_query("CREATE TABLE `".PREFIX."support_topics` (
              `ID` INT( 5 ) NOT NULL AUTO_INCREMENT PRIMARY KEY ,
              `topic_name` VARCHAR( 255 ) NOT NULL
              ) ENGINE = MYISAM ;");

              mysql_query("DROP TABLE IF EXISTS ".PREFIX."support_rights");
              mysql_query("CREATE TABLE `".PREFIX."support_rights` (
              `userID` INT( 5 ) NOT NULL ,
              `topicID` INT( 5 ) NOT NULL
              ) ENGINE = MYISAM ;");
              
              mysql_query("ALTER TABLE `".PREFIX."settings` ADD `autoclose` VARCHAR( 1 ) NOT NULL ;");
              
              mysql_query("ALTER TABLE `".PREFIX."settings` ADD `answerper` VARCHAR( 10 ) NOT NULL ;");
              /*shop admin*/
              mysql_query("ALTER TABLE `".PREFIX."user_groups` ADD `shop` INT( 1 ) NOT NULL AFTER `gallery` ;");

              
              
              
    }
    ?>
    webSPELL newbie
    73 Posts
    07.09.2011, 20:47 email offline quote 

    Will test this lächeln

    Thanks!
    webSPELL user
    154 Posts
    25.02.2011, 11:00 email offline quote 

    MoeTarhini wrote:

    http://weseo.de/download/ws-cart-shop-addon

    there you go mate


    WOW! Thank you SO MUCH! TIME TO UPLOAD!!!! THANKS!!
    EXCITEMENT LEVEL 100%!!

    Don't cry when you get shot.
    webSPELL user
    135 Posts
    24.02.2011, 14:51 email offline quote 

    webSPELL user
    154 Posts
    23.02.2011, 19:17 email offline quote 

    Can anyone mail this to me on edgarzakarjan@msn.com ??

    I really really need it!
    And the damn site has broken down, so i can't find this version anywhere..

    Don't cry when you get shot.
    webSPELL user
    154 Posts
    23.02.2011, 14:42 email offline quote 

    Where can i download this? :S!!
    The site has gone down!!

    Don't cry when you get shot.
    webSPELL user
    101 Posts
    07.01.2011, 14:21 email offline quote 

    Can confirm that it worked fine for me running 4.2.2a eSports.

    veni viddi....BANG.
    webSPELL newbie
    36 Posts
    07.01.2011, 00:38 email offline quote 

    Can anyone confirm if this works on v4.2.2a ?

    Hardcore Installation ?

    Does the coder expect to update this ?

    Cheers in advance
    webSPELL user
    246 Posts
    25.06.2010, 12:49 email offline quote 

    yeah it works with a hardcore installation!
    Sort:      «  1 2 3 4 5 6  » printview


    To start or to reply to a topic you have to be registered and logged in!

    register now
    login
  • » Support

    » Topics
    25.05.2013 - 00:46 - 8 Replies
    » Ändern der Größe php
    Ändern der Größe php
    Last post: andy5116
    Board: DE - Allgemeiner Support
    25.05.2013 - 00:46
    24.05.2013 - 23:39 - 33 Replies
    » [B]Userrank Addon
    [B]Userrank Addon
    Last post: Swordfish3000
    Board: DE - Erweiterungen
    24.05.2013 - 23:39
    24.05.2013 - 15:12 - 19 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: Swordfish3000
    Board: DE - Allgemeiner Support
    24.05.2013 - 15:12
    24.05.2013 - 12:03 - 1 Replies
    » Verkaufe prof. Clandesign
    Verkaufe prof. Clandesign
    Last post: Vith3r
    Board: DE - Biete
    24.05.2013 - 12:03
    24.05.2013 - 12:02 - 6 Replies
    » [S] Team/Clan Logos (Upda...
    [S] Team/Clan Logos (Update: 2 new Logos)
    Last post: a--w
    Board: EN - Offers
    24.05.2013 - 12:02
    24.05.2013 - 02:41 - 17 Replies
    » High Quality Website
    High Quality Website
    Last post: Dansjostedt
    Board: EN - Offers
    24.05.2013 - 02:41
    24.05.2013 - 02:24 - 5 Replies
    » [SELL] Gaming Website
    [SELL] Gaming Website
    Last post: hornyst
    Board: EN - Offers
    24.05.2013 - 02:24
    23.05.2013 - 22:37 - 2 Replies
    » Bilder Breite im Forum an...
    Bilder Breite im Forum anpassen
    Last post: nappel.ger
    Board: DE - Vorschläge
    23.05.2013 - 22:37
    23.05.2013 - 15:35 - 6 Replies
    » I cannot upload template ...
    I cannot upload template to my cms .
    Last post: bazic
    Board: EN - General
    23.05.2013 - 15:35
    23.05.2013 - 14:50 - 3 Replies
    » Kalendar-Box
    Kalendar-Box
    Last post: kassor
    Board: DE - Anfragen
    23.05.2013 - 14:50
    23.05.2013 - 10:14 - 12 Replies
    » Mein Forum
    Mein Forum
    Last post: Lordy4007
    Board: DE - Fragen zur Seite
    23.05.2013 - 10:14
    22.05.2013 - 23:06 - 9 Replies
    » When the update?
    When the update?
    Last post: kola60
    Board: EN - General
    22.05.2013 - 23:06
    22.05.2013 - 22:21 - 2 Replies
    » Website For SALE! CODED
    Website For SALE! CODED
    Last post: Osamakillz
    Board: EN - General
    22.05.2013 - 22:21
    22.05.2013 - 21:43 - 3 Replies
    » Slider Links Bitte um Hil...
    Slider Links Bitte um Hilfe
    Last post: bazic
    Board: DE - Allgemein
    22.05.2013 - 21:43
    22.05.2013 - 21:28 - 464 Replies
    » Wettscript 2.1 for 4.2.3a...
    Wettscript 2.1 for 4.2.3a - Betscript
    Last post: Amokossi
    Board: DE - Fertige Skripte
    22.05.2013 - 21:28
    22.05.2013 - 17:46 - 3 Replies
    » Admin login
    Admin login
    Last post: blackmoonstah
    Board: DE - Allgemeiner Support
    22.05.2013 - 17:46
    22.05.2013 - 17:28 - 1 Replies
    » Design Ausverkauf - alles...
    Design Ausverkauf - alles unter 70€
    Last post: Freestyler92
    Board: DE - Biete
    22.05.2013 - 17:28
    22.05.2013 - 14:54 - 2 Replies
    » adminlogin auf allypage f...
    adminlogin auf allypage funktioniert nicht mehr. bitte um hilfe
    Last post: blackmoonstah
    Board: DE - Technischer Support
    22.05.2013 - 14:54
    22.05.2013 - 14:41 - 4 Replies
    » Content laden
    Content laden
    Last post: bazic
    Board: DE - Anfragen
    22.05.2013 - 14:41
    22.05.2013 - 09:57 - 0 Replies
    » [4SALE] eSport Design/Tem...
    [4SALE] eSport Design/Template
    Last post: LeG3nDz
    Board: EN - Offers
    22.05.2013 - 09:57
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers