DZCP Template Supportdzcp slideshow problem


29.12.2012, 21:19 - Kamikaze - Forumrang: Plappermaul - 11 Posts
Moin

ich hab nun nen anderes template bei mir drauf nun hab ich folgendes problem wen ich nen bild im admin navi bereich unter slideshow was hochladen möchte giebt er mir die fehlermeldung aus
MySQL-Query failed:

ErrorNo = 1054
Error = Unknown column 'beschreibung' in 'field list'
Query = INSERT INTO slideshow SET `pos` = '1', `bez` = 'Clanwar', `beschreibung` = 'war', `url` = 'http://ecf-clan.eu/upload/4.jpg', `target` = '0'

wie kann ich das beheben

#####################

[/SUPPORTINFO]
# Support Informationen
#####################
# Allgemein
#########
DZCP Version: 1.5.5.4
Domain: http://www.bashor-irc.de/
System/Browser: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20100101 Firefox/17.0
#########
# Versionen
#########
Server OS: Linux triton253.server4you.de 2.6.32-5-amd64 #1 SMP Sun Sep 23 10:07:46 UTC 2012 x86_64
Apache Version:
PHP-Version: 5.3.3-7+squeeze14
MySQL-Version: 5.1.66-0+squeeze1
#########
# Servereinstellungen
#########
fopen(): On
fsockopen(): On
allow_url_fopen:
register_globals:
safe_mode:
safe_mode_exec_dir:
safe_mode_gid:
safe_mode_include_dir:
open_basedir:
GD-Version: 2.0
imagettftext(): exists
HTTP_ACCEPT_ENCODING:
magic_quotes_gpc:
file_uploads:
upload_max_filesize:
sendmail_from:
sendmail_path:


 
30.12.2012, 00:43 - Daeem - Administrator - 2036 Posts
Du musst install ausführen readme angucken

Im Weltraum, hört dich niemand schreien, auf der Erde spielt es keine rolle.[ALIGN=center]"The most beautiful thing in the world is, of course, the world itself."[/ALIGN]

 
30.12.2012, 12:19 - Kamikaze - Forumrang: Plappermaul - 11 Posts
wen ich die install.php ausführe bekomme ich die meldung
MySQL-Query failed:

ErrorNo = 1060
Error = Duplicate column name 'slideshow'
Query = ALTER TABLE permissions ADD `slideshow` INT(1) NOT NULL default '0'
hab das gleiche mit der installupdate.php probiert

MySQL-Query failed:

ErrorNo = 1060
Error = Duplicate column name 'wmoduswelcome'
Query = ALTER TABLE settings ADD `wmoduswelcome` text NOT NULL
Daeem wrote:

Du musst install ausführen readme angucken


das sagt mir nur aus das die tabellen existieren nur find ich sie nirgens in der db wen ich über phpmyadmin reingucke
unhappy

 
30.12.2012, 12:54 - Daeem - Administrator - 2036 Posts
Schick mir per PN ftp daten und ein admin acc für hp gucke das dann an und poste lösung,
Fertig

Das problem war das install stopte da da oben fehler ausgeben wird da die install ausgeführte würde,

wer sowas hat install datei ändern auf

[toggle=read more]
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.
<?php
ob_start();
  $basePath = str_replace('\\','/',realpath(dirname(__FILE__))).'/';
  $basePath = (is_dir($basePath)) ? $basePath : '../';
  
  define(basePath, $basePath);

  include(basePath."inc/config.php");
  
  function _fetch($fetch)
  {
    return mysql_fetch_array($fetch, MYSQL_ASSOC);
  }

// UPDATE MYSQL-TABLES
  $prefix = $sql_prefix;
  

  
  $qry = db("DROP TABLE IF EXISTS ".$sql_prefix."slideshow");
  $qry = db("CREATE TABLE ".$sql_prefix."slideshow (
            `id` int(5) NOT NULL auto_increment,
            `pos` int(5) NOT NULL default '0',
            `bez` varchar(200) NOT NULL default '',
              `beschreibung` varchar(200) NOT NULL default '',
            `url` varchar(200) NOT NULL default '',
            `target` int(11) NOT NULL default '0',
            PRIMARY KEY  (`id`)
            ) TYPE=MyISAM");
                              
  $qry = db("ALTER TABLE ".$db['permissions']." ADD `slideshow` INT(1) NOT NULL default '0'");     
  $qry = db("INSERT INTO ".$sql_prefix."slideshow (`id`, `pos`, `bez`, `beschreibung`, `url`, `target`) VALUES (1, 1, 'Bloodsport Template', 'Das Template Bloodsport wurde erfolgreich installiert. Das Team von Gamer-Templates.de wünscht euch viel Spass damit und viel Erfolg im Clanleben...', 'http://www.gamer-templates.de', 1)");
  
            db("INSERT INTO ".$db['sponsoren']." (`id`, `name`, `link`, `beschreibung`, `site`, `send`, `slink`, `banner`, `bend`, `blink`, `box`, `xend`, `xlink`, `pos`, `hits`) 
VALUES 
(20, 'Gamer Templates', 'http://www.gamer-templates.de', '<p>Free DZCP and webSPELL Clantemplates, Enterpages, Banner, Logos, Playersheets, Tutorials and more...</p>', 0, '', '', 1, '', 'http://www.gamer-templates.de/images/linkus/15.jpg', 1, 'jpg', '', 1, 0);");
          
          $qry = db("INSERT INTO ".$db['partners']." (`link`, `banner`) VALUES ('http://www.gamer-templates.de', 'gt.jpg');");
          
  echo 'Die Datenbank wurde erfolgreich upgedatet! <br> Bitte nun diese Datei wieder l&ouml;schen und kein zweites mal ausf&uuml;hren!<br><br><a href="./news/">weiter</a>';
  
ob_end_flush();
?>
[/toggle]

Im Weltraum, hört dich niemand schreien, auf der Erde spielt es keine rolle.[ALIGN=center]"The most beautiful thing in the world is, of course, the world itself."[/ALIGN]

 
30.12.2012, 13:55 - Kamikaze - Forumrang: Plappermaul - 11 Posts
dank dir für die schnelle hilfe smiling

mfg Kami

Daeem wrote:

Schick mir per PN ftp daten und ein admin acc für hp gucke das dann an und poste lösung,
Fertig

Das problem war das install stopte da da oben fehler ausgeben wird da die install ausgeführte würde,

wer sowas hat install datei ändern auf


[toggle=read more]
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.
<?php
ob_start();
  $basePath = str_replace('\\','/',realpath(dirname(__FILE__))).'/';
  $basePath = (is_dir($basePath)) ? $basePath : '../';
  
  define(basePath, $basePath);

  include(basePath."inc/config.php");
  
  function _fetch($fetch)
  {
    return mysql_fetch_array($fetch, MYSQL_ASSOC);
  }

// UPDATE MYSQL-TABLES
  $prefix = $sql_prefix;
  

  
  $qry = db("DROP TABLE IF EXISTS ".$sql_prefix."slideshow");
  $qry = db("CREATE TABLE ".$sql_prefix."slideshow (
            `id` int(5) NOT NULL auto_increment,
            `pos` int(5) NOT NULL default '0',
            `bez` varchar(200) NOT NULL default '',
              `beschreibung` varchar(200) NOT NULL default '',
            `url` varchar(200) NOT NULL default '',
            `target` int(11) NOT NULL default '0',
            PRIMARY KEY  (`id`)
            ) TYPE=MyISAM");
                              
  $qry = db("ALTER TABLE ".$db['permissions']." ADD `slideshow` INT(1) NOT NULL default '0'");     
  $qry = db("INSERT INTO ".$sql_prefix."slideshow (`id`, `pos`, `bez`, `beschreibung`, `url`, `target`) VALUES (1, 1, 'Bloodsport Template', 'Das Template Bloodsport wurde erfolgreich installiert. Das Team von Gamer-Templates.de wünscht euch viel Spass damit und viel Erfolg im Clanleben...', 'http://www.gamer-templates.de', 1)");
  
            db("INSERT INTO ".$db['sponsoren']." (`id`, `name`, `link`, `beschreibung`, `site`, `send`, `slink`, `banner`, `bend`, `blink`, `box`, `xend`, `xlink`, `pos`, `hits`) 
VALUES 
(20, 'Gamer Templates', 'http://www.gamer-templates.de', '<p>Free DZCP and webSPELL Clantemplates, Enterpages, Banner, Logos, Playersheets, Tutorials and more...</p>', 0, '', '', 1, '', 'http://www.gamer-templates.de/images/linkus/15.jpg', 1, 'jpg', '', 1, 0);");
          
          $qry = db("INSERT INTO ".$db['partners']." (`link`, `banner`) VALUES ('http://www.gamer-templates.de', 'gt.jpg');");
          
  echo 'Die Datenbank wurde erfolgreich upgedatet! <br> Bitte nun diese Datei wieder l&ouml;schen und kein zweites mal ausf&uuml;hren!<br><br><a href="./news/">weiter</a>';
  
ob_end_flush();
?>
[/toggle]

 
30.12.2012, 13:59 - Daeem - Administrator - 2036 Posts
Bitte "guten rutsch ins neue jahr" smile

Im Weltraum, hört dich niemand schreien, auf der Erde spielt es keine rolle.[ALIGN=center]"The most beautiful thing in the world is, of course, the world itself."[/ALIGN]

 
30.12.2012, 14:05 - Kamikaze - Forumrang: Plappermaul - 11 Posts
das gleiche wünsche ich dir auch smiling