-
Notifications
You must be signed in to change notification settings - Fork 185
FAQs
How do I add an event?
Create an event on eventbrite.com and make sure the word 'startup' is in it
It will display on the map within a day.
How do I center my map?
Edit Index.php
center: new google.maps.LatLng(34.034453,-118.341293)
Warning: simplexml_load_file() [function.simplexml-load-file]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in/nfs/c03/h06/mnt/49788/domains/thedboard.com/html/geocode.php on line38
You need to enable fopen on your server
http://stackoverflow.com/questions/3694240/add-allow-url-fopen-to-my-php-ini-using-htaccess
If this doesn’t work with your host, in geocode.php you can replace
$xml = simplexml_load_file($request_url) or die("url not loading");
with
$ch = curl_init($request_url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$xml_raw = curl_exec($ch);
$xml = simplexml_load_string($xml_raw) or die("url not loading");