Bugfixes
authorroot <root@server1.cccp.slightlycyberpunk.com>
Sat, 1 Mar 2025 01:33:03 +0000 (01:33 +0000)
committerroot <root@server1.cccp.slightlycyberpunk.com>
Sat, 1 Mar 2025 01:33:03 +0000 (01:33 +0000)
config.php [new file with mode: 0644]
taskRunner.php

diff --git a/config.php b/config.php
new file mode 100644 (file)
index 0000000..b016568
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+define("CCCP_BASEURL", "https://cccp.slightlycyberpunk.com/CCCP/");
+define("CCCP_BASELAT", "41.49039899");
+define("CCCP_BASELON", "-71.31335799");
+define("CCCP_STATE", "Rhode Island");
+
+$options = [
+  PDO::ATTR_EMULATE_PREPARES   => false, // Disable emulation mode for "real" prepared statements
+  PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC, // Make the default fetch be an associative array
+];
+$dbh = new PDO("mysql:host=localhost;dbname=CCCP", "root", "yix", $options);
+?>
\ No newline at end of file
index cff2e49..7469476 100644 (file)
@@ -963,7 +963,7 @@ print_r($params);
         }
         $resCity = $resultsObj->features[0]->properties->city;
         $resState= $resultsObj->features[0]->properties->state_code;
-        $resZip  = $resultsObj->features[0]->properties->postcode;
+        $resZip  = substr($resultsObj->features[0]->properties->postcode,0,5);
         // Sometimes geoapify doesn't return a zipcode...not sure why...but we don't really need it anyway
         if( !isset($resultsObj->features[0]->properties->postcode) ) {
           echo "ERROR: Postcode not returned from geocoder.geoapify".PHP_EOL;