-
wadea added arielsom to the AMFPHP (Flash Remoting for PHP) project.
2009-09-21 14:28:33 UTC in AMFPHP (Flash Remoting for PHP)
-
Why can't you just use SSL?.
2009-05-12 02:12:15 UTC in AMFPHP (Flash Remoting for PHP)
-
Is there any PHP errors? It works great on 5.2.9 and apache 2.2.11.
2009-05-04 01:25:13 UTC in AMFPHP (Flash Remoting for PHP)
-
There should be no issue with two swfs in the same page unless you wanted to share data. In which case you need to read about how to pass a session. PHP has no clue that they are on the same page or on two different browsers.
http://www.amfphp.org/docs2/fundamentals/Sessions.html.
2009-04-30 19:35:44 UTC in AMFPHP (Flash Remoting for PHP)
-
Flex has some major issues hanging onto the RemoteObject endpoint of the previous compile. Once you set it you basically have to clean your project and recompile or close the project and re-open it. Restarting eclipse does not seem to help.
Wade.
2009-04-30 01:50:38 UTC in AMFPHP (Flash Remoting for PHP)
-
I searched for this issue before I opened another bug. To be able to Manually Resize graphic box is huge for me. Also if you edit width and height in the html and then move the node it looses the width and height.
2009-04-29 15:47:40 UTC in FreeMind
-
Thanks for the feedback. I am about two weeks from really jumping hard into amfext again and I will make sure that this is addressed.
2009-03-31 13:17:56 UTC in amfext
-
I just ran into it last week. I actually didn't realize that it had to do with IE6 i figured it was something strange about one of my clients.
2009-03-18 12:53:05 UTC in AMFPHP (Flash Remoting for PHP)
-
There is an issue with the caching of IE6.
You need to replace line 215 and 215 of amfphp/core/amf/app/Gateway.php
header("Pragma: no-store");
header("Cache-Control: no-store");
with
header('Pragma: public');
header('Cache-Control: cache, must-revalidate');
That should do the trick.
2009-03-17 15:22:32 UTC in AMFPHP (Flash Remoting for PHP)
-
Can you get a simple php script to work? This looks to be more of a php issue than and AMFPHP issue?
<?php phpinfo(); ?>.
2009-01-28 02:39:38 UTC in AMFPHP (Flash Remoting for PHP)