PHP warning

Cannot modify header information - headers already sent by (output started at /home3/searchdo/public_html/index.php:1)

/home3/searchdo/public_html/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/web/CHttpRequest.php(716)

704     /**
705      * Redirects the browser to the specified URL.
706      * @param string $url URL to be redirected to. If the URL is a relative one, the base URL of
707      * the application will be inserted at the beginning.
708      * @param boolean $terminate whether to terminate the current application
709      * @param integer $statusCode the HTTP status code. Defaults to 302. See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html}
710      * for details about HTTP status code.
711      */
712     public function redirect($url,$terminate=true,$statusCode=302)
713     {
714         if(strpos($url,'/')===0)
715             $url=$this->getHostInfo().$url;
716         header('Location: '.$url, true, $statusCode);
717         if($terminate)
718             Yii::app()->end();
719     }
720 
721     /**
722      * Returns the user preferred language.
723      * The returned language ID will be canonicalized using {@link CLocale::getCanonicalID}.
724      * This method returns false if the user does not have language preference.
725      * @return string the user preferred language.
726      */
727     public function getPreferredLanguage()
728     {

Stack Trace

#13
+
 /home3/searchdo/public_html/index.php(11): CApplication->run()
06 $yii = dirname(__FILE__) . '/beta_thora_bachke_rahna/kya_hal_hai_beta/framework/yii.php';
07         $config = dirname(__FILE__) . '/protected/config/main.php';
08         defined('YII_DEBUG') or define('YII_DEBUG', TRUE);
09         defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 0);
10         require_once($yii);
11         Yii::createWebApplication($config)->run(); 
12         ?>
2025-04-27 15:14:47 Apache Yii Framework/1.1.10