• » 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
    20.06.2013 - 01:59 - 0 Replies
    » [4SALE] EXCLUSIVE WEBSITE
    [4SALE] EXCLUSIVE WEBSITE
    Last post: hornyst
    Board: EN - Offers
    20.06.2013 - 01:59
    20.06.2013 - 01:58 - 5 Replies
    » PHP Code wird als Text au...
    PHP Code wird als Text ausgegeben
    Last post: janfolio
    Board: DE - Allgemeiner Support
    20.06.2013 - 01:58
    19.06.2013 - 19:22 - 5 Replies
    » Bewertungs-CMS gesucht!
    Bewertungs-CMS gesucht!
    Last post: Schalla
    Board: DE - Suche
    19.06.2013 - 19:22
    19.06.2013 - 02:59 - 10 Replies
    » [SELL] Gaming Website - E...
    [SELL] Gaming Website - EXCLUSIVE WEBSITE
    Last post: hornyst
    Board: EN - Offers
    19.06.2013 - 02:59
    18.06.2013 - 23:10 - 1 Replies
    » [S] Aufträge Web- und Pri...
    [S] Aufträge Web- und Printdesign
    Last post: neiD-
    Board: DE - Suche
    18.06.2013 - 23:10
    18.06.2013 - 12:30 - 9 Replies
    » Querry Failed Error no 10...
    Querry Failed Error no 1054
    Last post: LoRd
    Board: EN - Technical support
    18.06.2013 - 12:30
    18.06.2013 - 09:43 - 13 Replies
    » webSPELL Bootstrap (respo...
    webSPELL Bootstrap (responsible)
    Last post: sKy-e.belst
    Board: EN - General
    18.06.2013 - 09:43
    18.06.2013 - 01:11 - 1 Replies
    » how can i transform back ...
    how can i transform back to old my website ?
    Last post: Schalla
    Board: EN - Technical support
    18.06.2013 - 01:11
    17.06.2013 - 20:50 - 3 Replies
    » Suche Coder !
    Suche Coder !
    Last post: naki
    Board: DE - Suche
    17.06.2013 - 20:50
    17.06.2013 - 12:48 - 0 Replies
    » [4SALE] Custom team websi...
    [4SALE] Custom team website
    Last post: element-
    Board: EN - Offers
    17.06.2013 - 12:48
    16.06.2013 - 21:21 - 3 Replies
    » update webspell problem
    update webspell problem
    Last post: RUSSHEL
    Board: EN - General support
    16.06.2013 - 21:21
    16.06.2013 - 20:42 - 0 Replies
    » "Make sure you have cooki...
    "Make sure you have cookies enabled" During Login
    Last post: Sasquatch
    Board: EN - General support
    16.06.2013 - 20:42
    16.06.2013 - 16:22 - 8 Replies
    » Farbe von "Dein Profil wu...
    Farbe von "Dein Profil wurde aktualisiert. Du wirst weitergeleitet" ändern!
    Last post: Cali-go
    Board: DE - Allgemeiner Support
    16.06.2013 - 16:22
    16.06.2013 - 16:19 - 2 Replies
    » Sehr erfahrener Programmi...
    Sehr erfahrener Programmierer gesucht (Community,Clanpage)
    Last post: StufF
    Board: DE - Suche
    16.06.2013 - 16:19
    15.06.2013 - 22:39 - 0 Replies
    » portfolio/agency for sale
    portfolio/agency for sale
    Last post: Thoomii
    Board: DE - Biete
    15.06.2013 - 22:39
    15.06.2013 - 16:39 - 2 Replies
    » [4SALE] eSport Design/Tem...
    [4SALE] eSport Design/Template
    Last post: LeG3nDz
    Board: EN - Offers
    15.06.2013 - 16:39
    15.06.2013 - 10:35 - 12 Replies
    » externe Festplatte spinnt
    externe Festplatte spinnt
    Last post: plenergy
    Board: DE - Internet
    15.06.2013 - 10:35
    14.06.2013 - 20:53 - 11 Replies
    » Webspell ver 1070 EN
    Webspell ver 1070 EN
    Last post: TyRRRax
    Board: EN - General support
    14.06.2013 - 20:53
    14.06.2013 - 19:03 - 4 Replies
    » Kostenlose Clanmappen!
    Kostenlose Clanmappen!
    Last post: unikat
    Board: DE - Biete
    14.06.2013 - 19:03
    14.06.2013 - 15:22 - 6 Replies
    » Userpic & Avatar
    Userpic & Avatar
    Last post: Tuxx
    Board: DE - Technischer Support
    14.06.2013 - 15:22
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers