All I Wanted Posted November 4, 2019 Share Posted November 4, 2019 Hallo, Na een upgrade van mijn shop naar 1.7 krijg ik een 500 error als ik op klanten klik. in de DEBUG mode krijg ik onderstaande melding. Is er hier iemand die weet hoe ik dit kan oplossen? Groetjes, Arco Link to comment Share on other sites More sharing options...
MARK-APP.com Posted November 5, 2019 Share Posted November 5, 2019 Beste Arco, Blijkbaar is je guest tabel verdwenen. Voeg deze sql query toe met PHP my admin om deze weer te activeren. CREATE TABLE IF NOT EXISTS `pr_guest` ( `id_guest` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_operating_system` int(10) unsigned DEFAULT NULL, `id_web_browser` int(10) unsigned DEFAULT NULL, `id_customer` int(10) unsigned DEFAULT NULL, `javascript` tinyint(1) DEFAULT '0', `screen_resolution_x` smallint(5) unsigned DEFAULT NULL, `screen_resolution_y` smallint(5) unsigned DEFAULT NULL, `screen_color` tinyint(3) unsigned DEFAULT NULL, `sun_java` tinyint(1) DEFAULT NULL, `adobe_flash` tinyint(1) DEFAULT NULL, `adobe_director` tinyint(1) DEFAULT NULL, `apple_quicktime` tinyint(1) DEFAULT NULL, `real_player` tinyint(1) DEFAULT NULL, `windows_media` tinyint(1) DEFAULT NULL, `accept_language` varchar(8) DEFAULT NULL, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id_guest`), KEY `id_customer` (`id_customer`), KEY `id_operating_system` (`id_operating_system`), KEY `id_web_browser` (`id_web_browser`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Hopelijk brengt dat je verder. Link to comment Share on other sites More sharing options...
TCB-Netherlands Posted November 5, 2019 Share Posted November 5, 2019 Hoi, De tabel pr_guest bestaat niet. Ik zie dat je de prefix van ps naar pr hebt gezet bij de installatie? Normaal gesproken is de prefix ps_guest. Gebruik onderstaande om de tabel aan te maken in je phpMyAdmin: CREATE TABLE `pr_guest` ( `id_guest` int(10) UNSIGNED NOT NULL, `id_operating_system` int(10) UNSIGNED DEFAULT NULL, `id_web_browser` int(10) UNSIGNED DEFAULT NULL, `id_customer` int(10) UNSIGNED DEFAULT NULL, `javascript` tinyint(1) DEFAULT '0', `screen_resolution_x` smallint(5) UNSIGNED DEFAULT NULL, `screen_resolution_y` smallint(5) UNSIGNED DEFAULT NULL, `screen_color` tinyint(3) UNSIGNED DEFAULT NULL, `sun_java` tinyint(1) DEFAULT NULL, `adobe_flash` tinyint(1) DEFAULT NULL, `adobe_director` tinyint(1) DEFAULT NULL, `apple_quicktime` tinyint(1) DEFAULT NULL, `real_player` tinyint(1) DEFAULT NULL, `windows_media` tinyint(1) DEFAULT NULL, `accept_language` varchar(8) DEFAULT NULL, `mobile_theme` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Link to comment Share on other sites More sharing options...
All I Wanted Posted November 5, 2019 Author Share Posted November 5, 2019 Bedankt, zoals het er nu uitziet werkt dit weer. Mijn klanten zijn weer zichtbaar en de foutmelding is verdwenen. Groetjes, Arco Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now