Hi! I have problem with long duration script:
Controller TEST, action TEST contains this code:
$this->view->disable();
sleep(60*20);
echo 'testBLABLA';
After 13-15 minutes, page renders as code from controller INDEX action INDEX and there is no 'testBLABLA' in content. It looks like a dispatch to main page... I thought when i write this:
$this->view->disable();
There will be no content from views/layout. Any ideas why it happens?