Hello,
The yii somehow overrides the timeout for requests?
I already changed the php.ini (max_execution_time) and continues until the set_time_limit and 30 seconds to the time a request timeout.
Thank you!
Hello,
The yii somehow overrides the timeout for requests?
I already changed the php.ini (max_execution_time) and continues until the set_time_limit and 30 seconds to the time a request timeout.
Thank you!
you could try
<?php
ini_set('max_execution_time', 1);
Solved inserting in begin of index.php: set_time_limit(0);