-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bootstrap loading breaks in 1.12.12 #9
Comments
Happy to create a pull request if you prefer. |
👍 |
Any update on this? The bombayworks package is completely unusable until this is fixed. |
This can also be fixed by changing one of the class_exists() statements to if (!class_exists($class, true)) { |
Sorry for the delay, this should now be fixed in 1.12.12 and 1.12.13. |
@deadbeef84 are you sure the original bug "class not found" error is solved? |
I'm pretty sure. However, since I updated the existing broken releases, you may need to run |
Also, the issues in zf1/zend-application (zf1/zend-application#2) still remains, but it needs a different fix - will try too look into this later this week. |
We get a "Bootstrap class not found" exception after updating to 1.12.12. It seems that there's one require_once() call that should remain active on line 333 of Zend_Application.
Disabling this require_once() call makes Zend_Application unable to load the Bootstrap class specified by the bootstrap.class and bootstrap.path config options. To the best of my knowledge the autoloader isn't intended to handle the bootstrap class.
The text was updated successfully, but these errors were encountered: