| Sunday 01 July 2007 1:03:20 pm 
                                                                
                                                                 This is really weird. My site is running great. But I'm trying to make a new template for a photo album. I have a variable that's an image object ($image) and when I do the following... 
$image|attribute(show)
 ...it shows the attributes. But let's say I want to go a little deeper in the object. When I do this... 
$image.data_map|attribute(show)
 
...Apache segfaults (11) and I get a zero size page.I decided to try the following...
 
$image.data_map|attribute(show,1)
 ...worked great... 
$image.data_map.name|attribute(show,1)
 ...worked great... 
$image.data_map.image|attribute(show,1)
 ...Apache segfaults. I've seen a number of segfault issues on the forums when people are first installing, but nothing like this. I've tried clearing my cache and that didn't do anything. I disabled my Zend Optimizer, but that had no effect. Thoughts? --Andrew |