Hi:
I'm a newby on this... so try to understand...
installed AMFPHP v 1.9 (can't see other to download)... installed flash remoting for AS2... tried newstore 2 version (as2)... changed my file gateway.php on c:\wamp\www\ (where all newstore files were unziped) using the url string "
http://localhost/flashservices/core/amf/app/Gateway.php" (default url installed by amfphp... also, there's another folders with Gateway.php files inside core folder!!?), changed the as2 code to
import mx.remoting.Service;
import mx.services.Log;
import mx.rpc.RelayResponder;
import mx.rpc.FaultEvent;
import mx.rpc.ResultEvent;
import mx.remoting.PendingCall;
import mx.remoting.debug.NetDebug;
//Initialize a Logger
mx.remoting.debug.NetDebug.initialize(); // initialize the NCD
var myLogger:Log = new Log( Log.DEBUG, "logger1" );
// override the default log handler
myLogger.onLog = function( message:String ):Void {
// trace( "myLogger-->>>"+message );
}
//IMPORTANT -> Change to the proper path
_global.svc = new Service(
"
http://localhost/gateway.php",
myLogger,
"shopping",
null,
null); ....
also mysql database shopping is running as root and no password... BUT
still can't get it to work... the only thing I see is "Loading..."
why?