04-28-2014, 11:30 PM
(04-28-2014 10:33 PM)esaassociation Wrote: [ -> ]can you tell me why the event/classifieds and otehr pages are blank please look at
http://findapro.biz/event/
check your location.inc.php files in custom>domain_1>location> between the original files
original files:
Code:
<!--?php$edir_default_locations = "";$edir_default_locationids = "";$edir_default_locationnames = "";$edir_default_locationshow = "";
$edir_locations = "1,3,4,5";$edir_locationnames = "COUNTRY,STATE,CITY,NEIGHBORHOOD";$edir_locationnames_plural = "COUNTRIES,STATES,CITIES,NEIGHBORHOODS";
$edir_all_locations = "1,2,3,4,5";$edir_all_locationnames = "COUNTRY,REGION,STATE,CITY,NEIGHBORHOOD";$edir_all_locationnames_plural = "COUNTRIES,REGIONS,STATES,CITIES,NEIGHBORHOODS";
this all cause by a Setting_Location db missing a tables.and you make a location default.
create this table in your Setting_Location:
Code:
INSERT INTO Setting_Location (id, default_id, name, name_plural, enabled, show) VALUES(1, 0, 'COUNTRY', 'COUNTRIES', 'y', 'n'),(2, 0, 'REGION', 'REGIONS', 'n', 'b'),(3, 0, 'STATE', 'STATES', 'y', 'b'),(4, 0, 'CITY', 'CITIES', 'y', 'b'),(5, 0, 'NEIGHBORHOOD', 'NEIGHBORHOODS', 'n', 'b');
add me rep if this helping u out