MyBB.de Forum
Newpoints/Shop Stock fehler - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: Newpoints/Shop Stock fehler (/thread-22118.html)

Seiten: Seiten: 1 2 3


RE: Newpoints/Shop Stock fehler - Rubin - 26.02.2010

Ich habe es gerade eben erst neu installiert...
Kann man den nicht die Datenbank anders erstellen, ohne den sql befehl?
Wenn ich es nämlich jetzt nochmal neu installiere, bin ich genauso weit wie vorher.


RE: Newpoints/Shop Stock fehler - Falkenauge Mihawk - 26.02.2010

Na gut, so funktionierts bei mir:
Code:
ALTER TABLE `mybb_users` ADD newpoints_items TEXT NOT NULL ;



RE: Newpoints/Shop Stock fehler - Rubin - 26.02.2010

Naja bei mir Funktioniert der Code auch nicht.
Dann weiß ichs auch nicht :/
Vielleicht hat ein mod eine lösung, für das Problem :/


RE: Newpoints/Shop Stock fehler - Falkenauge Mihawk - 26.02.2010

Was kommt für eine Fehlermeldung? In phpmyadmin funktioniert mein Code.


RE: Newpoints/Shop Stock fehler - Rubin - 26.02.2010

Der Fehler:

Zitat:Fehler

SQL-Befehl:

ALTER TABLE `mybb_users` ADD newpoints_items TEXT NOT NULL

MySQL meldet: Dokumentation
#1060 - Duplicate column name 'newpoints_items'



RE: Newpoints/Shop Stock fehler - Falkenauge Mihawk - 26.02.2010

Das Feld existiert "bereits". Führe jetzt die beiden anderen Query auf der ersten Seite aus.


RE: Newpoints/Shop Stock fehler - Rubin - 26.02.2010

Wieder nur Fehler -___-

Zitat:Fehler

SQL-Befehl:

CREATE TABLE `".TABLE_PREFIX."newpoints_shop_categories` (
`cid` bigint( 30 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
`name` varchar( 100 ) NOT NULL default '',
`description` TEXT NOT NULL default '',
`visible` smallint( 1 ) NOT NULL default '1',
`icon` varchar( 300 ) NOT NULL default '',
`usergroups` varchar( 100 ) NOT NULL default '',
`disporder` int( 5 ) NOT NULL default '0',
`items` int( 10 ) NOT NULL default '0',
`expanded` smallint( 1 ) NOT NULL default '1',
PRIMARY KEY ( `cid` )
) TYPE = MYISAM

MySQL meldet: Dokumentation
#1103 - Incorrect table name '".TABLE_PREFIX."newpoints_shop_categories'

und

Zitat:Fehler

SQL-Befehl:

CREATE TABLE `".TABLE_PREFIX."newpoints_shop_items` (
`iid` bigint( 30 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
`name` varchar( 100 ) NOT NULL default '',
`description` TEXT NOT NULL default '',
`price` DECIMAL( 16, 2 ) NOT NULL default '0',
`icon` varchar( 300 ) NOT NULL default '',
`visible` smallint( 1 ) NOT NULL default '1',
`disporder` int( 5 ) NOT NULL default '0',
`infinite` smallint( 1 ) NOT NULL default '0',
`stock` int( 10 ) NOT NULL default '0',
`sendable` smallint( 1 ) NOT NULL default '1',
`sellable` smallint( 1 ) NOT NULL default '1',
`cid` int( 10 ) NOT NULL default '0',
PRIMARY KEY ( `iid` )
) TYPE = MYISAM

MySQL meldet: Dokumentation
#1103 - Incorrect table name '".TABLE_PREFIX."newpoints_shop_items'



RE: Newpoints/Shop Stock fehler - Falkenauge Mihawk - 26.02.2010

Ersetze
Code:
".TABLE_PREFIX."
mit
Code:
mybb_

Dann sollte es funktionieren. :/


RE: Newpoints/Shop Stock fehler - Rubin - 26.02.2010

Er hat zwar jetzt beide erstellt, aber jetzt erscheint dieser fehler wenn ich auf buy klicke:

Zitat:MyBB SQL Error

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1146 - Table 'pokemonr_de.mybb_newpoints_items' doesn't exist
Query:
UPDATE mybb_newpoints_items SET `stock`='0' WHERE iid='7'



RE: Newpoints/Shop Stock fehler - Falkenauge Mihawk - 26.02.2010

Wieso will er ne Tabelle mit pokemonr_de.mybb_ als Präfix?... Versteh ich nicht.

Würde auch aufgrund von MySQL garnicht gehen.