• » 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:      «  ... 15 16 17 18 19 20 21 22 23 ...  » printview
    Author
    Message
    webSPELL newbie
    20 Posts
    03.09.2009, 22:02 offline quote 

    weiss keiner weiter?

    würd gern das addon zum laufen kriegen.
    wie gesagt, installer hab ich ausgeführt. dann auf page und dann kam error.

    wenn ich diese tabelle erstellen muss, wieviele felder muss ich haben und was muss da rein?
    noch nie ne tabelle erstellt bisher.

    kann einer helfen pls?


    MfG
    webSPELL newbie
    48 Posts
    04.09.2009, 15:26 email offline quote 

    Du öffnest mit einem Editor die Datei "videos.sql".
    Dann hälst du Ausschau nach .PREFIX.
    Du loggst sich über phpmyadmin in deine Datenbank ein und guckst nach welches prefix du bei allen anderen Tabellen hast. Das Prefix ist das was vor allen Tabellennamen davorsteht.
    Das Prefix baust du jetzt überall dort ein wo .PREFIX. in der videos.sql steht.
    Danach gehst du in deinem phpmyadmin auf SQL Befehl ausführen, dort ist ein Fenster wo du Text hineinkopieren kannst. Du kopierst einfach den gesamten Inhalt der sql Datei in das Fenster und führst es aus. Es werden 4 Tabellen angelegt.

    Schau einfach mal in die videos.sql datei hinein, es ist fast selbsterklärend.


    webSPELL newbie
    20 Posts
    05.09.2009, 00:18 offline quote 

    hm, wenn ich das eingebe, dann kommt folgender fehler:

    #1193 - Unknown system variable 'SQL_MODE'
    Moderator
    5320 Posts
    05.09.2009, 00:47 email offline quote 

    einmal bitte das komplette sql statement hier posten. falls es was länger ist die toggle funktion verwenden
    webSPELL newbie
    20 Posts
    05.09.2009, 02:17 offline quote 

    also das ist genau die, die ich gesaugt habe


    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.
    -- phpMyAdmin SQL Dump
    -- version 3.1.3.1
    -- http://www.phpmyadmin.net
    --
    -- Host: localhost
    -- Erstellungszeit: 17. August 2009 um 00:23
    -- Server Version: 5.1.33
    -- PHP-Version: 5.2.9

    SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

    -- --------------------------------------------------------

    --
    -- Tabellenstruktur für Tabelle `'.PREFIX.'_videos`
    --
    DROP TABLE IF EXISTS `.PREFIX.videos`;
    CREATE TABLE IF NOT EXISTS `.PREFIX.videos` (
      `vidID` int(11) NOT NULL AUTO_INCREMENT,
      `rubric` int(11) NOT NULL DEFAULT '0',
      `vidheadline` varchar(255) DEFAULT NULL,
      `vidlength` varchar(255) NOT NULL,
      `vidsource` varchar(255) NOT NULL,
      `viddescription` varchar(255) DEFAULT NULL,
      `vidclip` varchar(255) DEFAULT '0',
      `vidpreview` varchar(255) NOT NULL,
      `hits` int(11) DEFAULT '0',
      `comments` int(1) DEFAULT '0',
      `portal` int(11) NOT NULL DEFAULT '1',
      PRIMARY KEY (`vidID`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ;



    -- --------------------------------------------------------

    --
    -- Tabellenstruktur für Tabelle `'.PREFIX.'videos_portals`
    --
    DROP TABLE IF EXISTS `.PREFIX.videos_portals`;
    CREATE TABLE IF NOT EXISTS `.PREFIX.videos_portals` (
      `id` int(20) NOT NULL AUTO_INCREMENT,
      `name` varchar(255) NOT NULL,
      `embed` varchar(255) NOT NULL,
      `preview` varchar(255) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;

    -- --------------------------------------------------------

    --
    -- Tabellenstruktur für Tabelle `.PREFIX.videos_rubrics`
    --
    DROP TABLE IF EXISTS `.PREFIX.videos_rubrics`;
    CREATE TABLE IF NOT EXISTS `.PREFIX.videos_rubrics` (
      `rubricID` int(11) NOT NULL AUTO_INCREMENT,
      `rubric` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`rubricID`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;



    -- --------------------------------------------------------

    --
    -- Tabellenstruktur für Tabelle `ws_l8x_videos_settings`
    --
    DROP TABLE IF EXISTS `.PREFIX.videos_settings`;
    CREATE TABLE IF NOT EXISTS `.PREFIX.videos_settings` (
      `max` int(11) NOT NULL,
      `sort` varchar(255) NOT NULL,
      `hd` int(1)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

    --
    -- Daten für Tabelle `ws_l8x_videos_settings`
    --

    INSERT INTO `.PREFIX.videos_settings` (`max`, `sort`, `hd`) VALUES
    (20, 'vidID', 0);
    Moderator
    5320 Posts
    05.09.2009, 03:38 email offline quote 

    und dein prefix lautet wie?
    webSPELL newbie
    20 Posts
    05.09.2009, 13:21 offline quote 

    ouh, sry

    db_
    webSPELL newbie
    48 Posts
    05.09.2009, 14:29 email offline quote 

    So, ich denke mal das Fenster für SQL-Befehl ausführen hast du gefunden.
    Dann poste ich mal den korrekten Code um die 4 einzelnen Tabellen anzulegen.
    Jeder einzelne Block ist eine Tabelle.
    p.s. welche mysql version benutzt du ?

    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.
    DROP TABLE IF EXISTS `db_videos`;
    CREATE TABLE IF NOT EXISTS `db_videos` (
      `vidID` int(11) NOT NULL AUTO_INCREMENT,
      `rubric` int(11) NOT NULL DEFAULT '0',
      `vidheadline` varchar(255) DEFAULT NULL,
      `vidlength` varchar(255) NOT NULL,
      `vidsource` varchar(255) NOT NULL,
      `viddescription` varchar(255) DEFAULT NULL,
      `vidclip` varchar(255) DEFAULT '0',
      `vidpreview` varchar(255) NOT NULL,
      `hits` int(11) DEFAULT '0',
      `comments` int(1) DEFAULT '0',
      `portal` int(11) NOT NULL DEFAULT '1',
      PRIMARY KEY (`vidID`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ;



    DROP TABLE IF EXISTS `db_videos_portals`;
    CREATE TABLE IF NOT EXISTS `db_videos_portals` (
      `id` int(20) NOT NULL AUTO_INCREMENT,
      `name` varchar(255) NOT NULL,
      `embed` varchar(255) NOT NULL,
      `preview` varchar(255) NOT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;



    DROP TABLE IF EXISTS `db_videos_rubrics`;
    CREATE TABLE IF NOT EXISTS `db_videos_rubrics` (
      `rubricID` int(11) NOT NULL AUTO_INCREMENT,
      `rubric` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`rubricID`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;



    DROP TABLE IF EXISTS `db_videos_settings`;
    CREATE TABLE IF NOT EXISTS `db_videos_settings` (
      `max` int(11) NOT NULL,
      `sort` varchar(255) NOT NULL,
      `hd` int(1)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    INSERT INTO `db_videos_settings` (`max`, `sort`, `hd`) VALUES
    (20, 'vidID', 0);
    webSPELL newbie
    20 Posts
    05.09.2009, 17:14 offline quote 

    ok, erstmal danke.
    aber leider hat es nicht geklappt.

    ich habe es so kopiert und eingeführt und dann auf ok.
    aber es kommt folgende meldung:

    Code:
    1.
    2.
    3.
    4.
    5.
    6.
    7.
    8.
    9.
    10.
    11.
    12.
    13.
    14.
    15.
    16.
    17.
    18.
    19.
    SQL-Befehl:

    CREATE TABLE IF NOT EXISTS `db__videos` (
    `vidID` int( 11 ) NOT NULL AUTO_INCREMENT ,
    `rubric` int( 11 ) NOT NULL DEFAULT '0',
    `vidheadline` varchar( 255 ) DEFAULT NULL ,
    `vidlength` varchar( 255 ) NOT NULL ,
    `vidsource` varchar( 255 ) NOT NULL ,
    `viddescription` varchar( 255 ) DEFAULT NULL ,
    `vidclip` varchar( 255 ) DEFAULT '0',
    `vidpreview` varchar( 255 ) NOT NULL ,
    `hits` int( 11 ) DEFAULT '0',
    `comments` int( 1 ) DEFAULT '0',
    `portal` int( 11 ) NOT NULL DEFAULT '1',
    PRIMARY KEY ( `vidID` )
    ) ENGINE = MYISAM DEFAULT CHARSET = latin1;

    MySQL meldet: Dokumentation
    #1064 - You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'DEFAULT CHARSET=latin1' at line 14 



    ich nutze anscheinend folgende version:
    # MySQL-Client-Version: 3.23.58
    Moderator
    1708 Posts
    05.09.2009, 17:16 offline quote 

    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.
    DROP TABLE IF EXISTS `db_videos`;
    CREATE TABLE IF NOT EXISTS `db_videos` (
      `vidID` int(11) NOT NULL AUTO_INCREMENT,
      `rubric` int(11) NOT NULL DEFAULT '0',
      `vidheadline` varchar(255) DEFAULT NULL,
      `vidlength` varchar(255) NOT NULL,
      `vidsource` varchar(255) NOT NULL,
      `viddescription` varchar(255) DEFAULT NULL,
      `vidclip` varchar(255) DEFAULT '0',
      `vidpreview` varchar(255) NOT NULL,
      `hits` int(11) DEFAULT '0',
      `comments` int(1) DEFAULT '0',
      `portal` int(11) NOT NULL DEFAULT '1'
      PRIMARY KEY (`vidID`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 ;


    DROP TABLE IF EXISTS `db_videos_portals`;
    CREATE TABLE IF NOT EXISTS `db_videos_portals` (
      `id` int(20) NOT NULL AUTO_INCREMENT,
      `name` varchar(255) NOT NULL,
      `embed` varchar(255) NOT NULL,
      `preview` varchar(255) NOT NULL
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;


    DROP TABLE IF EXISTS `db_videos_rubrics`;
    CREATE TABLE IF NOT EXISTS `db_videos_rubrics` (
      `rubricID` int(11) NOT NULL AUTO_INCREMENT,
      `rubric` varchar(255) DEFAULT NULL
      PRIMARY KEY (`rubricID`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
    DROP TABLE IF EXISTS `db_videos_settings`;
    CREATE TABLE IF NOT EXISTS `db_videos_settings` (
      `max` int(11) NOT NULL,
      `sort` varchar(255) NOT NULL,
      `hd` int(1)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    INSERT INTO `db_videos_settings` (`max`, `sort`, `hd`) VALUES
    (20, 'vidID', 0);


    Versuch es mal damit
    Sort:      «  ... 15 16 17 18 19 20 21 22 23 ...  » printview


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

    register now
    login
  • » Support

    » Topics
    20.05.2013 - 11:47 - 5 Replies
    » Suche Designer GGL:Geld
    Suche Designer GGL:Geld
    Last post: Dynamic-Webmedia
    Board: DE - Suche
    20.05.2013 - 11:47
    20.05.2013 - 11:20 - 2 Replies
    » login startseite
    login startseite
    Last post: Fr34k4z01d
    Board: DE - Technischer Support
    20.05.2013 - 11:20
    20.05.2013 - 10:52 - 3 Replies
    » [S] Tester für neuen Foru...
    [S] Tester für neuen ForumMod
    Last post: Ki1Lu
    Board: DE - Anfragen
    20.05.2013 - 10:52
    20.05.2013 - 04:06 - 3 Replies
    » forum anzeige erweitern
    forum anzeige erweitern
    Last post: Swordfish3000
    Board: DE - Allgemeiner Support
    20.05.2013 - 04:06
    20.05.2013 - 00:07 - 0 Replies
    » [S] Suche Programmierer
    [S] Suche Programmierer
    Last post: phoenix762
    Board: DE - Suche
    20.05.2013 - 00:07
    19.05.2013 - 03:55 - 8 Replies
    » Mein Forum
    Mein Forum
    Last post: Lordy4007
    Board: DE - Fragen zur Seite
    19.05.2013 - 03:55
    18.05.2013 - 19:58 - 36 Replies
    » Exklusiv Webseite zur Mie...
    Exklusiv Webseite zur Miete
    Last post: liQweb
    Board: DE - Biete
    18.05.2013 - 19:58
    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 - 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
    » Partners
    Bilderkiste.org Image Hosting
    k3rmit.org
    PascalMh.de


    » Blog
    28.03.2013 - derchris
    » Those damn spammers