|
What I am saying is you can tweak the script as I noted to use more memory for php.
You can also in install.php remove this code for zipcodes and then use the upgrade script to import the zipcodes after install.php
In install.php remove this and try reinstalling
// 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 />";
}
|