View Single Post
Old April 15th, 2005, 05:48 PM   #2 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,704
Your host is limiting the mysql queries and your zipcode data being entered is more than your server allows and they are shutting down mysql

You can remove the zipcode stuff here in install.php to install the program

in install.php find and delete this

// 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 run the upgrade later and import the zipcode stuff but your still going to trigger that limitation on your server that you host is placing
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote