nested-includes

Activerecord Nested :include fails

I have an AR query using 'will_paginate' that looks like this: paginate :all, :page => criteria[:page], :per_page => criteria[:per_page], :include => { :user, :person }, :conditions => [conditions , criteria[:from_date], criteria[:to_date], criteria[:patient_id],criteri...

Merge items in nanoc

I have been trying to use nanoc for generating a static website. I need to organize a complex arrangement pages I want to keep my content DRY. How does the concept of includes or merges work within the nanoc system? I have read the docs but I can't seem to find what I want. For example: how can I take two partial content items and merg...

php includes that include another php file

I'm getting really muddled up now and my brain hurts! :( lol Root: index.php Includes: cat.php dog.php index includes dog: include("includes/dog.php"); dog includes cat: include("cat.php"); When I run index, for cat it says: A link to the server could not be established Access denied for user ... However, if I run dog, I...