Allow me to explain:
The old phased loading feature was a simple sequence, e.g. phasedLoad(C) --> "load A, then load B, then load C". This pays no attention to dependencies between the resources. If for instance, C depends on D, then phasedLoad(C) would just die. The only way to fix it was to rearrange the resources so that the order would be A,B,D,C. You can see how this is fragile, especially if the order needed to be rearranged in the future.
Zend_Application takes a different approach, where the resources are represented by a dependency graph. Something more along the lines of the following:
A
/ \
B C
\
D
So using that approach, calling bootstrap(A) would load B, C and D automatically. Much cleaner approach that doesn't involve trying to figure out which needs to be loaded first.
That said, which "phase" are you trying to load? Try bootstrapping just the resources that your script needs, and we can diagnose any problems from there.
Thanks,
Kris
> --
> You received this message because you are subscribed to the Google Groups "Omeka Dev" group.
> To post to this group, send email to omek...@googlegroups.com.
> To unsubscribe from this group, send email to omeka-dev+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/omeka-dev?hl=en.
>