1

I am using XAMPP with PHP Version 5.6.3 and trying to create project in zend framework and executed the command

zf create project quickstart

it is giving the Fatal error: Directive 'allow_call_time_pass_reference' is no longer available in PHP in Unknown on line 0

.I tried to add comment "allow_call_time_pass_reference" in "C:\xampp\php\php.ini"

; allow_call_time_pass_reference
;   Default Value: On
;   Development Value: Off
;   Production Value: Off

And

; should enabled in development environments only.
; Default Value: On (Suppress warnings)
; Development Value: Off (Issue warnings)
; Production Value: Off (Issue warnings)
; http://php.net/allow-call-time-pass-reference
;allow_call_time_pass_reference=Off

But it didnt work.Can any one help me. I am using windows machine

  • as shown in the [PHP Changelog](http://php.net/manual/de/ini.core.php#ini.allow-call-time-pass-reference), it was removed with PHP 5.4. Try updating Zend. – tillz Nov 25 '14 at 07:51

1 Answers1

0

Either you need to restart the server or you are editing the incorrect ini configuration file.

Gerard Roche
  • 6,162
  • 4
  • 43
  • 69