Vraagje over Zarath mods
Forumregels
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.

Vraagje over Zarath mods
Ik heb de Job- en Shop mod van Zarath.
Ik weet dat er bij de Shop al veel problemen hebben gehad.
Is dat bij job ook zo? En is dat bij shop op te lossen?
Ik weet dat er bij de Shop al veel problemen hebben gehad.
Is dat bij job ook zo? En is dat bij shop op te lossen?
Ik probeer het toch en vind al meteen een bug? of niet
De shop.php staat er niet in de installatiemap...
en als ik een shop wil configuren krijg ik dit
De shop.php staat er niet in de installatiemap...
en als ik een shop wil configuren krijg ik dit
Code: Selecteer alles
Er is een fout opgetreden
DEBUG MODE
SQL Error : 1146 Table 'psd_psd2.phpbb_shopitems' doesn't exist
SELECT a.*, b.name FROM phpbb_user_shops_items a, `phpbb_shopitems` b WHERE a.shop_id = '4' AND b.id = a.item_id
Line : 143
File : shop_users_edit.php
Ja want als ik het nog eens uitvoer krijg ik dit:paul schreef:sql wel uitgevoerd?
Code: Selecteer alles
Running :: CREATE TABLE `phpbb_user_shops` ( `id` INT( 5 ) NOT NULL AUTO_INCREMENT , `user_id` INT( 10 ) NOT NULL , `username` VARCHAR( 32 ) NOT NULL , `shop_name` VARCHAR( 32 ) NOT NULL , `shop_type` VARCHAR( 32 ) NOT NULL , `shop_opened` INT( 30 ) NOT NULL , `shop_status` INT( 1 ) DEFAULT '0' NOT NULL , `amount_earnt` INT( 10 ) DEFAULT '0' NOT NULL , `amount_holding` INT( 10 ) DEFAULT '0' NOT NULL , `items_sold` INT( 10 ) DEFAULT '0' NOT NULL , `items_holding` INT( 10 ) DEFAULT '0' NOT NULL , `shop_updated` INT(30) DEFAULT '0' NOT NULL , PRIMARY KEY ( `user_id` ) , INDEX ( `id` ) ); -> FAILED ---> Table 'phpbb_user_shops' already exists
Running :: CREATE TABLE `phpbb_user_shops_items` ( `id` INT( 10 ) NOT NULL AUTO_INCREMENT , `shop_id` INT( 10 ) NOT NULL , `item_id` INT( 10 ) NOT NULL , `seller_notes` VARCHAR( 255 ) NOT NULL , `cost` INT( 10 ) NOT NULL , `time_added` MEDIUMINT( 30 ) NOT NULL , INDEX ( `shop_id` ) , PRIMARY KEY ( `id` ) ); -> FAILED ---> Table 'phpbb_user_shops_items' already exists
Running :: INSERT INTO phpbb_config (config_name, config_value) VALUES ('u_shops_enabled', '0'); -> FAILED ---> Duplicate entry 'u_shops_enabled' for key 1
Running :: INSERT INTO phpbb_config (config_name, config_value) VALUES ('u_shops_open_cost', '0'); -> FAILED ---> Duplicate entry 'u_shops_open_cost' for key 1
Running :: INSERT INTO phpbb_config (config_name, config_value) VALUES ('u_shops_tax_percent', '0'); -> FAILED ---> Duplicate entry 'u_shops_tax_percent' for key 1
Running :: INSERT INTO phpbb_config (config_name, config_value) VALUES ('u_shops_max_items', '100'); -> FAILED ---> Duplicate entry 'u_shops_max_items' for key 1
Finished!
Some of the querys have failed, contact me so I can fix the errors.
Dit was de fout... Heb wat zitten opzoeken en vond:
de sql moest phpbb_users_shop_edit zijn en niet phpbb_shopitems
dan krijg ik deze fout
de sql moest phpbb_users_shop_edit zijn en niet phpbb_shopitems
dan krijg ik deze fout
Code: Selecteer alles
Er is een fout opgetreden
DEBUG MODE
SQL Error : 1054 Unknown column 'b.name' in 'field list'
SELECT a.*, b.name FROM phpbb_user_shops_items a, `phpbb_user_shops_items` b WHERE a.shop_id = '4' AND b.id = a.item_id
Line : 143
File : shop_users_edit.php