Karlin Posted November 20, 2003 Share Posted November 20, 2003 I installed the "Image Resizer" contribution awhile ago. But I keep getting an error, and can't seem to get support regarding how to deal with the error. So now I would like to remove the contribution. But here is the problem: How do I remove the following SQL statements from my database? INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Debug Thumbnail Creation', 'THUMB_DEBUG', 'false', 'Set to true if it is not working. Perhaps it helps.', '4', '100', 'tep_cfg_select_option(array(\'true\', \'false\'), ', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('GD-Lib version', 'IN_GD_LIB_VERSION', '2', '1 for old GD-Lib version (1.x)<br>2 for new GD-Lib Version (2.x)', '4', '101', 'tep_cfg_select_option(array(\'1\', \'2\'), ', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Big Image Subdirectory', 'DIR_FS_CATALOG_IMAGES_BIG', 'images_big/', 'Subdir for the big image. It lies under the image directory. The script generates the subdir, but you should do it yourself and don\'t forget to chmod it.', '4', '102', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Thumbnail Subdirectory', 'DIR_FS_CATALOG_IMAGES_THUMBS', 'thumbs/', 'Subdir for the thumbnail images. It lies under the image directory. The script generates the subdir, but you should do it yourself and don\'t forget to chmod it.', '4', '102', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Small Image Resize Method', 'IN_SMALL_IMAGE_WAY_OF_RESIZE', '0', 'Small image width & height set the size<br><br>0: Propotional resize<br><br>1: Propotional resize; New image is the small image width & height. The background is set below if it does not fit exactly.<br><br>2: The new image is filled completly.', '4', '103', 'tep_cfg_select_option(array(\'0\', \'1\', \'2\'), ', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Small Image Background (Red Color)', 'IN_IMAGE_BGCOLOUR_R', '255', 'Small Image Background Color:<br>The red component of the bg color (RGB) for the small images if you use resize method 1.<br><br>Example: In the color 255,150,0; the red component is 255', '4', '104', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Small Image Background (Green Color)', 'IN_IMAGE_BGCOLOUR_G', '255', 'Small Image Background Color:<br>The green component of the bg color (RGB) for the small images if you use resize method 1.<br><br>Example: In the color 255,150,0; the green component is 150', '4', '105', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Small Image Background (Blue Color)', 'IN_IMAGE_BGCOLOUR_B', '255', 'Small Image Background Color:<br>The blue component of the bg color for (RGB) the small images if you use resize method 1.<br><br>Example: In the color 255,150,0; the blue component is 0', '4', '106', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) VALUES ('Big Image Resize Method', 'IN_BIG_IMAGE_WAY_OF_RESIZE', '0', 'Big image width & height set the size<br><br>0: Propotional resize<br><br>1: Propotional resize; New image is the big image width & height.<br><br>2: The new image is filled completly.', '4', '107', 'tep_cfg_select_option(array(\'0\', \'1\', \'2\'), ', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Big Image Width', 'IN_BIGIMAGE_WIDTH', '', 'Big Image resize width:<br>Leave empty if you don\'t want to resize the big image', '4', '108', now()); INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) VALUES ('Big Image Height', 'IN_BIGIMAGE_HEIGHT', '', 'Big Image resize height:<br>Leave empty if you don\'t want to resize the big image', '4', '109', now()); Any help would be greatly appreciated! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.