Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-11 Thread Jer Brand
This just gets weirder and weirder. Based on a few pages found in google with people having the same issue, I tried switching out sendAndLoad() with send(), and the data gets posted. Switch it back to sendAndLoad() and it fails. I've reduced this code to the simplest possible, in the PHP and

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-11 Thread Jake Prime
Hi Jer I just tried your page in IE / Windows and using Fiddler saw the following result: 4 POST a Array ( 35 [helpme] = this must work somehow ) GET Array ( ) 0 Seems like it's working? Hope that's of some help (or at least doesn't add to your woes!) Jake On 11/04/07, Jer Brand [EMAIL

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-11 Thread Lars Schwarz
you are sending an empty loadvars object... returning an empty post array when doing so is a feature, not a bug :) _send_lv.sendAndLoad(testing.php, _send_lv, post); Am 11.04.2007 um 16:59 schrieb Jer Brand: This just gets weirder and weirder. Based on a few pages found in google with

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-11 Thread T. Michael Keesey
On 4/11/07, Lars Schwarz [EMAIL PROTECTED] wrote: you are sending an empty loadvars object... returning an empty post array when doing so is a feature, not a bug :) _send_lv.sendAndLoad(testing.php, _send_lv, post); No, _send_lv.sendAndLoad(testing.php, _result_lv) will send _send_lv, not

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-11 Thread Lars Schwarz
ooops, sorry, my fault. 2nd par is the target, not the source, right Am 11.04.2007 um 17:51 schrieb T. Michael Keesey: On 4/11/07, Lars Schwarz [EMAIL PROTECTED] wrote: you are sending an empty loadvars object... returning an empty post array when doing so is a feature, not a bug :)

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-11 Thread Jer Brand
Ugh, it's working, but this whole situation, and the solution, makes no sense. I started testing this with ethereal to monitor the requests, and a combination of ethereal and the server logs showed some pretty odd behavior. Ethereal and IE/FF showed a POST request for the testing.php, with the

[Flashcoders] LoadVars.sendAndLoad with POST

2007-04-10 Thread Jer Brand
I feel like I'm losing my mind here with this error: I've been hitting the archives and google repeatedly, and not having any luck with a solution. I'm trying to use sendAndLoad(..., ..., POST) and having no luck. GET seems to work, but not POST. I've been viewing the results with FlashBug to

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-10 Thread Glen Pike
Hi, Are you using mod_rewrite at all? We have often encountered empty post's when trying to rewrite php URL's with pretty ones. Just a thought. Glen Jer Brand wrote: I feel like I'm losing my mind here with this error: I've been hitting the archives and google repeatedly,

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-10 Thread dr.ache
Tried to kill all that header stuff and simple print_r or echo $_POST['data'] after sending your loadvars. Dont take me wrong, go step by step forward. dr.ache Jer Brand schrieb: I feel like I'm losing my mind here with this error: I've been hitting the archives and google repeatedly, and

Re: [Flashcoders] LoadVars.sendAndLoad with POST

2007-04-10 Thread JerBrand
Hey Glen, I'm pretty sure we're not -- least it's not in use anywhere in our server. I'm going to walk away from this for a while and play some paper mario ;-), but will check in the morning. If the server happens we have mod_rewrite running, how do you overcome the issue? I can say that