<br><br><div class="gmail_quote">On Mon, Mar 14, 2011 at 1:11 AM, shawn wilson <span dir="ltr">&lt;<a href="http://ag4ve.us">ag4ve.us</a>@<a href="http://gmail.com">gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
i got my application working on apache. however, i seem to have an issue with &#39;post&#39; requests that are outside of my lan. i&#39;m not sure where this problem resides, so if there&#39;s a better forum for this, let me know.<br>

<br>the computer is nat&#39;d (i&#39;ve fwd&#39;d 80/tcp). tt handles the url correctly, either giving the private or public address depending on where the request came from. the javascript on the page gets the json data as the page is loading from my json view. and when i post content on my form from inside my lan, it works fine.<br>

<br>however, if i post data from outside the lan, nothing. no mysql log, no apache log. it&#39;s like nothing happened. when i ran the app from the internal application server, i experienced the same behavior with post outside of my lan. it almost looks like a network layer issue, but i just can&#39;t see how.<br>

</blockquote></div><br>actually, i take it back, it does &#39;see&#39; the post request, just no data:<br><br>[info] *** Request 4 (0.005/s) [23913] [Mon Mar 14 00:52:22 2011] ***<br>[debug] &quot;POST&quot; request for &quot;data&quot; from &quot;72.59.91.219&quot;<br>
[debug] Path is &quot;data&quot;<br>[warn] 0<br><br>the &#39;0&#39; came from this:<br>$c-&gt;log-&gt;warn( $c-&gt;req-&gt;content_length );<br><br>of course, when i &#39;post&#39; from inside my lan, i get a bigger number there.<br>