tags:

views:

42

answers:

3

Answers: (Choose 4)

  • safe_mode
  • magic_quotes_gpc
  • register_globals
  • display_errors
  • allow_url_fopen
A: 

Your application's security should be improved in your applications code.

safe_mode will limit your applications functionality.
magic_quotes_gpc should be managed by your code in both ways
register_globs should be always disabled.
allow_url_fopen can be disabled if you never open url's in your PHP, but again - it's about applications code.

Māris Kiseļovs
A: 

Change your session cookie directory.

Geekster
A: 

It's a Zend Certification Test question, guys.

KevinVx
So read the manual and earn your certification.
Nathon