> stack level too deep > SystemStackError: stack level too deep: SELECT * FROM page_parts > WHERE (page_parts.page_id = 6) AND (page_parts.`name` = 'extended') > LIMIT 1
Do you have any extensions installed? They could be breaking things. If not, It could actually be that the stack level is too deep. Your system might have a low stack size limit. The following will show how deep your ruby stack can go: ruby -e '$x=0;def r;$x+=1;r;end;r rescue puts $x'; My system can go 5050 levels. Ruby relies on the system limit on the C stack to limit its own stack. ulimit -s will show your current stack limit. My system has a limit of 8192. Radiant uses up more of the stack than a vanilla rails app (as it processes through the normal rails stack and then its own libs). Dan. _______________________________________________ Radiant mailing list Post: [email protected] Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
