symfony2admingenerator / AvocodeFormExtensionsBundle

(old-legacy) Symfony2 form extensions for Admingenerator project (also working standalone!)
Other
48 stars 31 forks source link

clearing cache after installation caused infinite loop #127

Closed yellowmamba closed 10 years ago

yellowmamba commented 10 years ago

Hi, after installing this bundle via composer, I ran app/console cache:clear and received error saying PHP Fatal error: Maximum function nesting level of '100' reached, aborting!. Looks like there's an infinite loop somewhere.

satiricon commented 10 years ago

Not really an infinite loop. That's an xdebug related error. Change xdebug.max_nesting_level in the php configuration, I have set in 1000 and it works well.

ioleo commented 10 years ago

Exacly. This is not a form extensions specific error. All symfony2 apps even sample one fan early hit the default nesting level cap. Change it to at least 500. 3 cze 2014 10:26 "David" notifications@github.com napisał(a):

Not really an infinite loop. That's an xdebug related error. Change xdebug.max_nesting_level in the php configuration, I have set in 1000 and it works well.

— Reply to this email directly or view it on GitHub https://github.com/loostro/FormExtensions/issues/127#issuecomment-44937435 .

yellowmamba commented 10 years ago

Thanks!