-
Hi,
I beg to differ :-) AMFPHP was inactive for some time, but I along with some others have started to get things moving again. I won't get into Zend AMF versus AMFPHP here, there are plenty of other places for that.
Ariel.
2010-01-05 08:52:48 UTC by arielsom
-
It's essentially been replaced by [Zend_Amf][1] which tends to be more flexible on the client and server side of things.
If you want a decent example of how to use it, I started [Florum][2] a while back here at sourceforge. It's been abandoned for a while, but I plan on starting it back up this year some time. I have an AMF client and Server set up there.
There are probably a few things...
2010-01-04 14:06:40 UTC by hickeroar
-
hi, just wondering if amfphp is still active, I see the download is dated 2008...
is the the best php / flex remoting library, or are there others I should be looking at?.
2010-01-04 01:20:51 UTC by sszretter
-
Hi, I'm using this simple script to send emails.
I the services folder I have the following code:
function send($to, $subject, $message){
$Name = "Anonymous"; //senders name
$email = $subject; //senders e-mail adress
$header = "From: ". $Name . " \r\n"; //optional headerfields
return mail($to, "Email from art website", $message,$header);
}
and with...
2010-01-03 13:10:28 UTC by https://www.google.com/accounts
-
Hey wadea,
thanx for your reply. After many hours of struggling I stumbled upon the answer. It turned out (the helpdesk of this provider refused to help me in any way) that the server ran on PHP version 4 and 5. You would think that 5 then would be the default. Nope it was 4. After switching it to 5 everything worked wonderfully.
Too bad for that provider though, due to lack of service I...
2009-12-31 08:41:51 UTC by willem2001
-
AMFPHP only exposes public methods. Are the methods public?.
2009-12-30 17:16:35 UTC by wadea
-
Are the package names the same?
com.yourpackage.Person is different than Person and on the PHP side folders are used as package names.
You can always use remote alliece if you don't want to change the package names.
Use charles or service capture to see if you are actually sending a Person object. If you are and your not seeing it as Person in your PHP code then it is due to AMFPHP...
2009-12-30 17:14:51 UTC by wadea
-
I have never used rackspace but amazons LAMP stack has caused some issues because there is no file system on EC2 which is where AMFPHP is looking to find your services. I would trun on all PHP event notification and logging and see where the script is throwing the service error. Internal error is in PHP is just a nice way of saying that something seriously blew up and we are not going to tell...
2009-12-30 17:10:49 UTC by wadea
-
Your running into an array issue with PHP and the size you are dealing with. its somewhere around 10k records. This bug was fixes in PHP 5.3. Otherwise make your data set pageable. I would assume 14k records locks your application anyways so get a count of the records and do several call sequentially until you get the data. You can also always tie this to a scroll bar if the data is going into a...
2009-12-30 17:08:25 UTC by wadea
-
Yea, just did that with the HelloWorld sample :) I can't really run the original swf, but got the details with a decompiler already. Now, trying to figure out what the request is made of.
2009-12-30 17:08:17 UTC by gabest