My issue is that I added a new region to my .info file for a second sidebar. After, I attached blocks to it in the structure > blocks area. Lastly in the page.tpl I had it render it via
<?php print render($page['sidebar_second']); ?>
It worked originally, then I moved everything to a new domain, copied all the files reattached all the blocks but now it doesn't render at all.
here's the .info file
regions[sidebar_first] = Sidebar first
regions[sidebar_second] = Sidebar second
regions[sidebar_bob] = Sidebar B0b!
Here's the attached blocks as they appear under Structure > Blocks
Lastly I printed out
<pre><?=print_r($page,1)?></pre>
and here it's showing that sidebar_second is empty
Lastly I created a block that's a simple red div with 200px dimensions that should show up on every page, so I have no idea why it's not appearing.