All of what he's asking is stored in the database, not in a file. I can't think of any way to permanently turn them off at installation. Someone may have a bright idea of how to do this. I suppose you could backup the tables involved and copy them to new installations, but that still wouldn't turn them on/off permanently at installation.
Mary Ellen
I came; I saw; I Zenned
Taking over the world... one website at a time
Make sure brain is engaged before putting mouth in gear... or fingers to keyboard.
Holzheimer
Fan Odyssey
yes i have, ive suggested he alter the sql files used when installing, it has all commands for propergating the tables, if he finds out what values need to be in the table fields he can alter the sql code to insert these values instead of the default values.
Rob
in your zc_install/sql you could alter the zencart.sql and alter the status of the banners that are added with the install,
scroll down to where the banners are added and you will find the following, ive added carriage returns to make easier
INSERT INTO banners (banners_title, banners_url, banners_image, banners_group, banners_html_text, expires_impressions, expires_date, date_scheduled, date_added, date_status_change, status, banners_open_new_windows, banners_on_ssl, banners_sort_order)
VALUES ('Zen Cart', 'http://www.zen-cart.com', 'banners/zencart_468_60_02.gif', 'Wide-Banners', '', 0, NULL, NULL, '2004-01-11 20:59:12', NULL, 1, 1, 1, 0);
4th from the end replace with 0 and it will turn them off
VALUES ('Zen Cart', 'http://www.zen-cart.com', 'banners/zencart_468_60_02.gif', 'Wide-Banners', '', 0, NULL, NULL, '2004-01-11 20:59:12', NULL, 0, 1, 1, 0);
banners will still be installed but not switched on
Rob
Rather than editing the main SQL file, there's a plugin folder in the install SQL directory called plugins. Custom SQL can be put in there.
Kuroi Web Design and Development | Twitter
(Questions answered in the forum only - so that any forum member can benefit - not by personal message)