Thanks, I replaced that. However, now I have a new, similar error (still
500), but it's specific to line 171 of my map.js file:

158 function downloadUrlAdd(url, callback) {
159 var request = window.ActiveXObject ?
160 new ActiveXObject('Microsoft.XMLHTTP') :
161 new XMLHttpRequest;
162
163 request.onreadystatechange = function() {
164 if (request.readyState == 4) {
165 request.onreadystatechange = doNothing;
166 callback(request.responseText, request.status);
167 }
168 };
169
170 request.open('GET', url, true);
171 request.send(null);
172 }
173
174// function doNothing() {}
175
176 //]]>

Here are the headers:

DateWed, 06 Apr 2011 17:36:51 GMTServerApacheContent-EncodinggzipVary
Accept-EncodingConnectioncloseTransfer-EncodingchunkedContent-Typetext/html
Request Headersview source

Host


www.ocf.berkeley.eduUser-Agent


Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.16) Gecko/20110323
Ubuntu/10.04 (lucid) Firefox/3.6.16Accept


text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language


en-us,en;q=0.5Accept-Encoding


gzip,deflateAccept-Charset


ISO-8859-1,utf-8;q=0.7,*;q=0.7Keep-Alive


115Connection


keep-aliveReferer


http://www.ocf.berkeley.edu/~ucbr/wordpress/memories/Cookie


wp-settings-time-1=1301201831;
wp-settings-1=m5%3Dc%26m9%3Dc%26m4%3Dc%26m6%3Do%26wplink%3D1%26m1%3Dc%26m10%3Do%26imgsize%3Dmedium%26editor%3Dtinymce%26m11%3Do%26align%3Dcenter%26hidetb%3D1;
wp-settings-3=m5%3Dc%26m4%3Do%26m6%3Do%26editor%3Dtinymce%26m7%3Do%26hidetb%3D1;
wp-settings-time-3=1301203651;
__utma=41573937.1131533867.1295844503.1300598990.1301480463.4;
__utmz=41573937.1295844503.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);
__utma=247584409.1314474337.1298509671.1300424010.1302073783.5;
__utmz=247584409.1298509671.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none);
style=bleuarctic
- Matt


On Wed, Apr 6, 2011 at 8:50 AM, davie <[email protected]> wrote:

> Hi
> Your SQL statement has only  8 %s values
> " VALUES (NULL, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s',
> 'individual');",
> but 9 strings
> Regards Davie
>
> On Apr 6, 8:14 am, mattsenate <[email protected]> wrote:
> > Hi,
> >
> > I successfully implemented a version of this project previously, after
> > getting lots of help here:
> http://code.google.com/apis/maps/documentation/javascript/forum.html?...
> >
> > However, I am trying a second implementation and while I've gotten the
> > markers to populate in the XML and display on the map correctly, I am
> > getting a 500 error when trying to save new markers. The issue is my
> > addrow.php file is not configured to properly submit new data. I have not
> > been able to debug beyond the issue being with the particular portion of
> my
> > code that should save the data users will submit. I am stuck.
> >
> > The credentials should be working as I am able to view markers.
> >
> > Here is a link to the addrow.php file pasted in a Pirate Pad:
> http://piratepad.net/KeBrFlrjDE
> >
> > Here is a link to the map:
> http://www.ocf.berkeley.edu/~ucbr/wordpress/memories/
> >
> > Thanks for any help!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Maps JavaScript API v3" group.
> To post to this group, send email to
> [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-maps-js-api-v3?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-js-api-v3?hl=en.

Reply via email to