cheaphardwarez Posted March 3, 2006 Report Share Posted March 3, 2006 I am trying to revamp an old site. It is flash based. Somehow, I dont remember, flash passes varables to the php script. My old code is nolonger working when moved to uniform server.. Is there any server settiings that would prevent this from working? Flash calles: loadVariables("http://www.whatever.com/ebook/matchsnb.php", this, "GET"); Flash is reading varrables back with no problem, but I do not seem to be able to read anything from flash. Further, I tried to pass a varable on the url www.whatever.com/test.php?hello=hello%20world The php script did not echo back the varable. I need help please! Quote Link to comment Share on other sites More sharing options...
rickh57 Posted March 3, 2006 Report Share Posted March 3, 2006 See this post. Register globals is off by default in PHP4.2 and above; that's the reason you are seeing that behavior. It can be turned on in the php.ini file, but the use of $_REQUEST, $_GET, etc arrays is encouraged for security reasons. Quote Link to comment Share on other sites More sharing options...
olajideolaolorun Posted March 24, 2006 Report Share Posted March 24, 2006 Yeah, you need to turn Register Globals On. Turned Off as a security feature. Quote Best Regards Olajide Olaolorun The Uniform Server Development Team Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.