|
Open up the install.php file and delete the lines to import the zipData.sql
// Upload the zipcode data (if present)
$query = @file("zipData.sql");
for ( $x=0; $x < count($query); $x++) {
$iquery = $query[$x];
$iquery = str_replace( ";", "", $iquery );
$setup = mysql_query($iquery, $link);
if ( !$setup ) print "<b>Error: ".mysql_error()."</b><br />";
}
You can then run the upgrade.php and import zipcodes that way.
|