I am developing a php flash based application and following this tutorial.
every thing is working fine on my localhost
PC but, not on live server CentOS.
This tutorial guides to keep the amfphp library in librarires
directory under application and create a controller 'gateway
' in controllers/amf
and controllers as services into controllers/amf/services
.
I have followed that properly and with that I am able to run it smoothly on localhost. Also, removing the sub directory amf
is also working just fine
At live it gives
Error #2044: Unhandled NetStatusEvent:. level=error, code=NetConnection.Call.BadVersion
at amfphpconnection_fla::MainTimeline/frame1()
The connection from AS needs to be
http://domain.com/index.php/amf/gateway
I was trying different tricks to make it work and I found that if I kept the services from /controller/services/serices folder into application/libraries where amf itself resides and change the path to services in gateway then flash was able to reach the file when i changed the path in flash to
http://domain.com/application/libraries/Amfphp/
but, it still was not running properly until i removed the extends CI_Controller
and constructor function
or get_instance()
from the service file. putting either raised the same error. this just runs the file but is useless for me because its not able to use CI framework then.
Using the controller path in the AS is what is required and i think this is something related to file access permission because its working fine on pc and not on linux.
I tried to look into Apache error logs too but no signs of any possible error out there.
Have looked loads of sites for help but no success as yet..
also posted bug at the project site itself but no updates are their as yet
any help would be appreciated
Regards
I had the very same problem, and reading the AMFPHP website I saw on Windows there is no sensitive case files.
So, in CI they say, "name your class like 'myclass.php' and inside declare My_class extends CI_Controller". What I did in flash? I called "My_class" service. Since i was using windows to localhost, AMFPHP could find the file and work properly.
BUT not on linux. So, in flash, i called "this.connection.call("my_class", "mymethod", etc)" and all worked fine.
Hope this can be usefull someone. So, if you're deploying on Linux env, double check the case spell of your AMF calls and make sure you're calling from flash the gateway.php the perfect name of your service file, NOT the name of the class inside the file.
cheers.