"tekguru";p="20964" wrote:More problems I'm afradi at this end:
- refresh loop seems to be in effect whereby the page refreshes every 30 seconds or so. Even though meta refresh is turned off this still happens - causes havoc on mobile devices.
- Problem with LoFi Mod on Portal with the BBLite theme (comment text showing visible)
- General config - photo settings are not saved.
- Crackertracker blocking Meta+ tag saving / Welcome PM setting
- CAPTCHA Config - Not saving
- BBLite theme - view topic 'view next topic' image missing
- BBLite theme - view topic 'personal gallery' image missing
- No images in Crackertracker settings
- No images in Crackertracker footer
Any fixes guys, and is anyone else seeing these many problems? This will for me be q anightmare when I hav eot do it all again for real on the live system!
Make a new thread in the themes section for the BBlite issues, it'll be easier to give support since it won't be overlooked by the theme experts. I'm not sure but I think that the crackertrakcer images and footer missing has been fixed in the latest download. That could have been another theme however. It has to do with missing images in the .cfg file I think.
For CrackerTracker blocking things, use the debug mode as described in the KB.
If CAPTCHA isn't saving then you must be missing database information. Do the following...
Make sure the CAPTCHA table exists by trying to create it...
- Code: Select all
CREATE TABLE `phpbb_captcha_config` ( `config_name` varchar(255) NOT NULL default '', `config_value` varchar(100) NOT NULL default '', PRIMARY KEY (`config_name`)) TYPE=MyISAM;
Fill the table with the following...
- Code: Select all
INSERT INTO `phpbb_captcha_config` VALUES ('width', '450');INSERT INTO `phpbb_captcha_config` VALUES ('height', '100');INSERT INTO `phpbb_captcha_config` VALUES ('exsample_code', 'SAMPLE');INSERT INTO `phpbb_captcha_config` VALUES ('background_color', '#E5ECF9');INSERT INTO `phpbb_captcha_config` VALUES ('jpeg', '1');INSERT INTO `phpbb_captcha_config` VALUES ('jpeg_quality', '90');INSERT INTO `phpbb_captcha_config` VALUES ('pre_letters', '0');INSERT INTO `phpbb_captcha_config` VALUES ('pre_letters_great', '1');INSERT INTO `phpbb_captcha_config` VALUES ('font', '1');INSERT INTO `phpbb_captcha_config` VALUES ('trans_letters', '0');INSERT INTO `phpbb_captcha_config` VALUES ('chess', '0');INSERT INTO `phpbb_captcha_config` VALUES ('ellipses', '1');INSERT INTO `phpbb_captcha_config` VALUES ('arcs', '1');INSERT INTO `phpbb_captcha_config` VALUES ('lines', '1');INSERT INTO `phpbb_captcha_config` VALUES ('image', '1');INSERT INTO `phpbb_captcha_config` VALUES ('bg_transition', '35');INSERT INTO `phpbb_captcha_config` VALUES ('gammacorrect', '0.8');INSERT INTO `phpbb_captcha_config` VALUES ('foreground_lattice_x', '15');INSERT INTO `phpbb_captcha_config` VALUES ('foreground_lattice_y', '15');INSERT INTO `phpbb_captcha_config` VALUES ('lattice_color', '#FFFFFF');INSERT INTO `phpbb_captcha_config` VALUES ('avc_version', '1.2.0');ALTER TABLE `phpbb_confirm` CHANGE `code` `code` CHAR(10) NOT NULL;
You might get a duplicate error message when inserting these, which means that some or all of the fields already exist. Most of the time the query should complete and fill any missing fields.
Photo info not saving is also probably missing fields. Try the following...
- Code: Select all
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_photo_local','0');INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_photo_remote','0');INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_photo_upload','0');INSERT INTO phpbb_config (config_name, config_value) VALUES ('photo_filesize','102400');INSERT INTO phpbb_config (config_name, config_value) VALUES ('photo_max_width','800');INSERT INTO phpbb_config (config_name, config_value) VALUES ('photo_max_height','600');INSERT INTO phpbb_config (config_name, config_value) VALUES ('photo_path','images/photos');INSERT INTO phpbb_config (config_name, config_value) VALUES ('photo_gallery_path','images/photos/gallery');INSERT INTO phpbb_config (config_name, config_value) VALUES ('read_viewphoto','');
You might get a duplicate error message when inserting these, which means that some or all of the fields already exist. Most of the time the query should complete and fill any missing fields.