ja, das merke ich jetzt auch. Warum, weiß ich eigentlich nicht. Aber mit Version 1.2.0 werde ich das Problem sicher beheben. Hier die SQL-Anweisung für phpMyAdmin:
Code: Alles auswählen
-- phpMyAdmin SQL Dump
-- version 2.10.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 10. Januar 2009 um 11:06
-- Server Version: 5.0.41
-- PHP-Version: 5.2.2
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
--
-- Datenbank: `et`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_categories`
--
CREATE TABLE `easyhp_categories` (
`id` int(10) unsigned NOT NULL auto_increment,
`title` varchar(255) collate latin1_general_ci NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `easyhp_categories`
--
INSERT INTO `easyhp_categories` VALUES (1, 'Allgemein');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_config`
--
CREATE TABLE `easyhp_config` (
`menu_title` varchar(20) collate latin1_general_ci NOT NULL default '',
`default_style` varchar(35) collate latin1_general_ci NOT NULL default '',
`default_language` varchar(28) collate latin1_general_ci NOT NULL default '',
`footer_title` varchar(255) collate latin1_general_ci NOT NULL default '',
`path` varchar(55) collate latin1_general_ci NOT NULL default '',
`domain_name` varchar(255) collate latin1_general_ci NOT NULL default '',
`website_name` varchar(90) collate latin1_general_ci NOT NULL default '',
`logo_url` varchar(255) collate latin1_general_ci NOT NULL default '',
`email` varchar(255) collate latin1_general_ci NOT NULL default '',
`gb_entries_per_site` int(11) NOT NULL,
`comments_per_site` int(11) NOT NULL,
`frontpage` varchar(31) collate latin1_general_ci NOT NULL default '',
`gb_wait` int(11) NOT NULL,
`gb_on` int(11) NOT NULL,
`contact_form_on` int(1) NOT NULL,
`change_of_name` int(1) NOT NULL,
`wio_on` int(1) NOT NULL,
`max_pms` int(11) NOT NULL,
`disable` int(1) NOT NULL,
`editor_on` int(1) NOT NULL,
`website_title` varchar(56) collate latin1_general_ci NOT NULL,
`v_ai` int(1) NOT NULL,
`v_hpi` int(1) NOT NULL,
`v_so` int(1) NOT NULL,
`v_ans` int(1) NOT NULL,
`v_co` int(1) NOT NULL,
`v_anc` int(1) NOT NULL,
`v_mo` int(1) NOT NULL,
`v_anm` int(1) NOT NULL,
`v_cc` int(1) NOT NULL,
`v_cot` int(1) NOT NULL,
`v_cu` int(1) NOT NULL,
`v_trash` int(1) NOT NULL,
`comments` int(1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
--
-- Daten für Tabelle `easyhp_config`
--
INSERT INTO `easyhp_config` VALUES ('Hauptmenü', 'orangetaste', 'german', 'Dein Footer-Titel', '', 'deinedomain.de', 'Dein Website-Name', 'images/logo.png', 'deine.email@mail.xy', 5, 5, 'Startseite', 15, 0, 0, 0, 0, 25, 0, 1, 'Dein Website-Titel', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_guestbook`
--
CREATE TABLE `easyhp_guestbook` (
`id` int(10) unsigned NOT NULL auto_increment,
`title` varchar(25) collate latin1_general_ci NOT NULL,
`name` varchar(20) collate latin1_general_ci NOT NULL,
`email` varchar(30) collate latin1_general_ci NOT NULL,
`website` varchar(30) collate latin1_general_ci NOT NULL,
`text` text collate latin1_general_ci NOT NULL,
`session_ip` varchar(20) collate latin1_general_ci NOT NULL,
`session_time` varchar(20) collate latin1_general_ci NOT NULL,
`date` varchar(20) collate latin1_general_ci NOT NULL,
`show_email` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `easyhp_guestbook`
--
INSERT INTO `easyhp_guestbook` VALUES (1, 'Beispieleintrag', 'Tim', 'support@easyhp.org', 'http://www.easyhp.org', 'Das hier ist ein Beispieleintrag. Du kannst diesen löschen oder bearbeiten.', '127.0.0.1', '1175187262', '29.03.07, 18:39', 0);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_menu`
--
CREATE TABLE `easyhp_menu` (
`id` int(11) NOT NULL auto_increment,
`menu_order` int(10) unsigned NOT NULL default '0',
`site_id` int(10) unsigned NOT NULL default '0',
`title` varchar(55) collate latin1_general_ci NOT NULL default '',
`link` varchar(255) collate latin1_general_ci NOT NULL default '',
`ext` int(1) NOT NULL default '0',
`window` varchar(15) collate latin1_general_ci NOT NULL default '',
`level` char(1) collate latin1_general_ci NOT NULL default '0',
`isset` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=5 ;
--
-- Daten für Tabelle `easyhp_menu`
--
INSERT INTO `easyhp_menu` VALUES (-1, 0, 0, '0', '0', 0, '0', '0', 0);
INSERT INTO `easyhp_menu` VALUES (1, 1, 2, 'Home', 'sites.php?id=2', 0, '_parent', '1', 1);
INSERT INTO `easyhp_menu` VALUES (2, 3, 3, 'Hilfe & Co', 'sites.php?id=3', 0, '_parent', '1', 1);
INSERT INTO `easyhp_menu` VALUES (3, 4, 1, 'EasyHP', 'http://www.easyhp.org', 1, '_parent', '1', 1);
INSERT INTO `easyhp_menu` VALUES (4, 2, 4, 'News', 'sites.php?id=4', 0, '_parent', '1', 1);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_privmsg`
--
CREATE TABLE `easyhp_privmsg` (
`id` int(11) NOT NULL auto_increment,
`to` varchar(15) collate latin1_general_ci NOT NULL,
`from` varchar(15) collate latin1_general_ci NOT NULL,
`subject` varchar(30) collate latin1_general_ci NOT NULL,
`message` text collate latin1_general_ci NOT NULL,
`date` varchar(18) collate latin1_general_ci NOT NULL,
`read` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `easyhp_privmsg`
--
INSERT INTO `easyhp_privmsg` VALUES (1, 'admin', 'admin', 'Beispielnachricht', 'Das hier ist eine Beispielnachricht für dein Postfach.', '29.3. 2007, 18:43', 0);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_sessions`
--
CREATE TABLE `easyhp_sessions` (
`id` int(11) NOT NULL auto_increment,
`session_time` varchar(30) collate latin1_general_ci NOT NULL,
`session_ip` varchar(30) collate latin1_general_ci NOT NULL,
`time` varchar(30) collate latin1_general_ci NOT NULL,
`name` varchar(14) collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `easyhp_sessions`
--
INSERT INTO `easyhp_sessions` VALUES (1, '0', '0', '0', 'admin');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_sites`
--
CREATE TABLE `easyhp_sites` (
`id` int(11) unsigned NOT NULL auto_increment,
`title` varchar(55) collate latin1_general_ci NOT NULL default '',
`text` mediumtext collate latin1_general_ci NOT NULL,
`date` varchar(255) collate latin1_general_ci NOT NULL default '',
`set_date` int(1) NOT NULL default '0',
`cat` varchar(255) collate latin1_general_ci NOT NULL default '',
`level` int(11) NOT NULL default '0',
`trash` int(1) NOT NULL,
`trash_date` varchar(255) collate latin1_general_ci NOT NULL,
`comments_on` int(11) NOT NULL default '0',
`news` int(1) NOT NULL default '0',
`newssite` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=5 ;
--
-- Daten für Tabelle `easyhp_sites`
--
INSERT INTO `easyhp_sites` VALUES (1, 'Do not remove this mysql entry.', '', '', 0, '', 0, 0, '0', 0, 0, 0);
INSERT INTO `easyhp_sites` VALUES (2, 'Startseite', 'Super, wie es aussieht, ist die Installation von <b>Easy<font color=''orange''>HP</font></b> erfolgreich verlaufen! Du kannst jetzt deine Website und alles, was damit zusammenhängt bearbeiten, indem du unten auf <b>[ Administrations-Bereich ]</b> klickst (du musst als <i>Admin</i> eingeloggt sein). Es ist empfohlen, zuerst die Einstellungen im ACP vorzunehmen. Wenn du Fragen oder Probleme zu bzw. mit <b>Easy<font color=''orange''>HP</font></b> hast, gehe einfach in das <a href=''http://www.easyhp.org/forum''>Support-Forum</a> auf <a href=''http://www.easyhp.org''><b>easyhp.org</b></a> und ich helfe dir gerne.\r\n\r\n\r\n<br /><br />\r\n\r\n [_NEWSFLASH_] \r\n\r\n\r\n<br /><br />\r\n\r\n• <b>Make it easy!</b> - <b>Easy<font color=''orange''>HP</font></b>', '20.12.07, 17:14', 1, 'Allgemein', 1, 0, '0', 1, 0, 4);
INSERT INTO `easyhp_sites` VALUES (3, 'EasyHP-CMS', 'Wenn du Hilfe bei der Verwaltung von <b>Easy<font color=''orange''>HP</font></b> benötigst, wende dich bitte im Forum von <b>Easy<font color=''orange''>HP</font></b> an mich. Alle Bugs die du findest, kannst du jederzeit im Support-Forum melden.\r\n\r\n<br /><br />\r\n\r\n• <a href=''http://www.easyhp.org''><b>Homepage</b></a>\r\n <br />• <a href=''http://www.easyhp.org/forum''><b>Support-Forum</b></a>', '20.12.07, 17:15', 1, 'Allgemein', 1, 0, '0', 0, 0, 0);
INSERT INTO `easyhp_sites` VALUES (4, 'News', '', '19.01.08, 11:45', 0, 'Allgemein', 1, 0, '0', 0, 1, 0);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_site_comments`
--
CREATE TABLE `easyhp_site_comments` (
`id` int(11) NOT NULL auto_increment,
`site_id` int(11) NOT NULL,
`subject` varchar(55) collate latin1_general_ci NOT NULL,
`username` varchar(255) collate latin1_general_ci NOT NULL,
`date` varchar(255) collate latin1_general_ci NOT NULL,
`text` text collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `easyhp_site_comments`
--
INSERT INTO `easyhp_site_comments` VALUES (1, 2, 'Beispieleintrag', 'admin', '19.01.08, 11:32', 'Das hier ist ein Beispielkommentar. Um Kommentare für eine Seite zu erlauben, musst du dies auf jeder Seite einzeln einstellen.');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_site_news`
--
CREATE TABLE `easyhp_site_news` (
`id` int(11) NOT NULL auto_increment,
`site_id` int(11) NOT NULL,
`title` varchar(255) collate latin1_general_ci NOT NULL,
`message` text collate latin1_general_ci NOT NULL,
`username` varchar(255) collate latin1_general_ci NOT NULL,
`date` varchar(255) collate latin1_general_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=3 ;
--
-- Daten für Tabelle `easyhp_site_news`
--
INSERT INTO `easyhp_site_news` VALUES (1, 4, '-1', '', '', '');
INSERT INTO `easyhp_site_news` VALUES (2, 4, 'Beispielnews', 'Das hier ist nur eine Beispielnews. Um eine neue News zu erstellen, muss man unten auf den Icon ''Neue News erstellen'' klicken. So bleiben die Besucher immer auf den neuestem Stand. #;-) \r\n\r\nUm einen Newsflash zu erstellen, muss einfach [b][_NEWSFLASH_][/b] an einer beliebigen Stelle im Editor getippt werden. Auf der Seite werden dann die ersten 170 Zeichen der aktuellen News angezeigt.\r\n\r\n[b]Info:[/b] Man kann so viele Newsseiten erstellen wie man will.', '', '19.01.08, 11:45');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `easyhp_user`
--
CREATE TABLE `easyhp_user` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) collate latin1_general_ci NOT NULL default '',
`password` varchar(255) collate latin1_general_ci NOT NULL default '',
`email` varchar(255) collate latin1_general_ci NOT NULL default '',
`level` int(11) NOT NULL default '0',
`autologin` int(1) NOT NULL default '0',
`location` varchar(30) collate latin1_general_ci NOT NULL default '',
`interests` varchar(100) collate latin1_general_ci NOT NULL default '',
`icq_nr` varchar(12) collate latin1_general_ci NOT NULL default '0',
`job` varchar(30) collate latin1_general_ci NOT NULL default '',
`ban` int(1) NOT NULL default '0',
`session_time` varchar(25) collate latin1_general_ci NOT NULL,
`time` varchar(5) collate latin1_general_ci NOT NULL,
`active` char(1) collate latin1_general_ci NOT NULL default '',
`act_key` varchar(255) collate latin1_general_ci NOT NULL default '',
`ice` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `easyhp_user`
--
INSERT INTO `easyhp_user` VALUES (1, 'admin', '827ccb0eea8a706c4c34a16891f84e7b', 'deine.email@mail.xy', 1, 0, '', '', '', '', 0, '0', '0', '1', '-1', 0);
Bitte vergesse nach der Installation damit nicht, den Pfad und den Domain-Namen anzupassen. Der Administrator-Benutzername lautet: admin. Das Passwort lautet: 12345
Entschuldige die Unannehmlichkeiten.