• » 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
    18.05.2013 - 16:29 - 2 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: Swordfish3000
    Board: DE - Allgemeiner Support
    18.05.2013 - 16:29
    18.05.2013 - 14:40 - 35 Replies
    » Exklusiv Webseite zur Mie...
    Exklusiv Webseite zur Miete
    Last post: Maidzen
    Board: DE - Biete
    18.05.2013 - 14:40
    18.05.2013 - 14:00 - 0 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Argu
    Board: DE - Anfragen
    18.05.2013 - 14:00
    18.05.2013 - 12:21 - 1 Replies
    » Query failed
    Query failed
    Last post: LoRd
    Board: DE - Allgemeiner Support
    18.05.2013 - 12:21
    18.05.2013 - 09:36 - 3 Replies
    » benötige hilfe bei paar k...
    benötige hilfe bei paar kleinigkeiten
    Last post: immostar
    Board: DE - Technischer Support
    18.05.2013 - 09:36
    18.05.2013 - 03:33 - 4 Replies
    » [SELL] Gaming Website
    [SELL] Gaming Website
    Last post: hornyst
    Board: EN - Offers
    18.05.2013 - 03:33
    18.05.2013 - 00:32 - 6 Replies
    » Hide BBCODE Echo
    Hide BBCODE Echo
    Last post: dado2106
    Board: EN - Technical support
    18.05.2013 - 00:32
    17.05.2013 - 21:42 - 0 Replies
    » website help
    website help
    Last post: envy0024
    Board: EN - Technical support
    17.05.2013 - 21:42
    17.05.2013 - 21:03 - 1 Replies
    » Need Coder!
    Need Coder!
    Last post: iG.ShAdOw
    Board: EN - Requests
    17.05.2013 - 21:03
    17.05.2013 - 20:44 - 9 Replies
    » Query failed!
    Query failed!
    Last post: LoRd
    Board: DE - Allgemeiner Support
    17.05.2013 - 20:44
    17.05.2013 - 18:08 - 0 Replies
    » [4 SALE] Layouts (Gaming,...
    [4 SALE] Layouts (Gaming, Portfolio and more)
    Last post: Freestyler92
    Board: EN - Offers
    17.05.2013 - 18:08
    17.05.2013 - 18:06 - 0 Replies
    » Design Ausverkauf - alles...
    Design Ausverkauf - alles unter 70€
    Last post: Freestyler92
    Board: DE - Biete
    17.05.2013 - 18:06
    17.05.2013 - 10:56 - 6 Replies
    » [Biete] Template Designs
    [Biete] Template Designs
    Last post: Marceld
    Board: DE - Biete
    17.05.2013 - 10:56
    17.05.2013 - 10:41 - 7 Replies
    » register captcha
    register captcha
    Last post: nappel.ger
    Board: DE - Allgemeiner Support
    17.05.2013 - 10:41
    17.05.2013 - 09:56 - 3 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Freestyler92
    Board: DE - Suche
    17.05.2013 - 09:56
    17.05.2013 - 00:13 - 0 Replies
    » News
    News
    Last post: dado2106
    Board: EN - Modifications
    17.05.2013 - 00:13
    16.05.2013 - 15:04 - 2 Replies
    » [V] mehrere Webspell Temp...
    [V] mehrere Webspell Templates und Designs
    Last post: Dynamic-Webmedia
    Board: DE - Biete
    16.05.2013 - 15:04
    16.05.2013 - 13:09 - 2 Replies
    » Content laden
    Content laden
    Last post: Helgon
    Board: DE - Anfragen
    16.05.2013 - 13:09
    16.05.2013 - 13:07 - 18 Replies
    » [B] Web, Print und Logode...
    [B] Web, Print und Logodesign
    Last post: Helgon
    Board: DE - Suche
    16.05.2013 - 13:07
    15.05.2013 - 22:50 - 2 Replies
    » Query failed: errorno=105...
    Query failed: errorno=1054
    Last post: Tw0Player
    Board: DE - Technischer Support
    15.05.2013 - 22:50
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers