From:             woodz at terra dot com dot br
Operating system: Windows XP
PHP version:      5.0.3
PHP Bug Type:     Class/Object related
Bug description:  Flash remoting stoped work corretly

Description:
------------
I was using flash remoting with flash mx 2004 and action script 2.0 under
IIS webserver with php 5.02 and all was working fine, but when i update my
php to version 5.03 my scripts stoped work!!

in the code my class on file olaMundo.php

Reproduce code:
---------------
<?php
class helloWorld{
   //constructor method
   function helloWorld(){
         $this->methodTable = array(
            "retornoValor" => array(
            "description" => "Write Hello World",
            "access" => "remote"
         )
      );
   }
   
 // function to return the value
 function retornoValor($var){      
          return $var."  said Hello World!!";
 }
}
?>

Expected result:
----------------
in my flash interface must appear " Name said Hello World"

in php 5.02 it' was working ok!!

but in 5.03 version stoped!

Actual result:
--------------
nothing happens!!!

-- 
Edit bug report at http://bugs.php.net/?id=31157&edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=31157&r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=31157&r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=31157&r=trysnapshot51
Fixed in CVS:                http://bugs.php.net/fix.php?id=31157&r=fixedcvs
Fixed in release:            http://bugs.php.net/fix.php?id=31157&r=alreadyfixed
Need backtrace:              http://bugs.php.net/fix.php?id=31157&r=needtrace
Need Reproduce Script:       http://bugs.php.net/fix.php?id=31157&r=needscript
Try newer version:           http://bugs.php.net/fix.php?id=31157&r=oldversion
Not developer issue:         http://bugs.php.net/fix.php?id=31157&r=support
Expected behavior:           http://bugs.php.net/fix.php?id=31157&r=notwrong
Not enough info:             
http://bugs.php.net/fix.php?id=31157&r=notenoughinfo
Submitted twice:             
http://bugs.php.net/fix.php?id=31157&r=submittedtwice
register_globals:            http://bugs.php.net/fix.php?id=31157&r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=31157&r=php3
Daylight Savings:            http://bugs.php.net/fix.php?id=31157&r=dst
IIS Stability:               http://bugs.php.net/fix.php?id=31157&r=isapi
Install GNU Sed:             http://bugs.php.net/fix.php?id=31157&r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=31157&r=float
No Zend Extensions:          http://bugs.php.net/fix.php?id=31157&r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=31157&r=mysqlcfg

Reply via email to