Skip to content
Tara Tiger Brown edited this page Sep 12, 2013 · 4 revisions

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 one day if the event is within 3 months time.

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");

Clone this wiki locally