I created a Controller with a block in it and when I call getBlock I get bool(false) in return:
$block = $this->getLayout()->getBlock('somestuff_index');
AND:
var_dump($block); // -> bool(false)
Usually it should return an Object!
There is one thing which makes everything weird. On the staging server it works (!!) and on the production server it fails. Both environments are nearly the same, except that the production server uses memcaching.
The Controller doesnt get cached, this is sure! But still the error remains...
Any Experience with this kind of error?
Help please