Forum Moderators: coopster
Front End <- AJAX -> AJAX Script <- $_SESSION -> IRC Script
I have all three parts of this working individually, but the problem I'm encountering in my testing is that I can only get one script to execute at a time. So, while the IRC listener script is running (which it will be doing continuously through out the session), the AJAX server side script will never be processed.
I don't know what the root of this issue is, or how to fix it, so I'm hoping someone here can give me a little insight. Do I need to make configuration changes to PHP, Apache, or my scripts? Is this not actually a fixable problem? Your help would be greatly appreciated.
According to my experience, php-parallel-processing is not possible on Windows.
If anyone has done it please post here to upgrade my knowledge too.
thank you
Achernar, thanks for that information. Obviously, I hadn't got far enough to run into that problem yet, but it definitely puts a kink in my plans. Is there a way to move temporary data between scripts (and even across multiple sessions) that you can recommend? The only obvious solution would be databasing it, but that seems like a poor option when I don't actually want to store the data.