A
Winner
is you!
MTV: The 90's

OFFICIAL

Flannel Cornucopia

CONTEST WINNER!

Click HERE to register.


 Forgot your info?
Remember me

Don't mess
with the bull.
JOIN!!!
7 COMMENTS
RETRORATING:
FAVORITED TIMES

By:
Digg Share
Looking for more from ?
READ TIMES
Remembering TMNT Tournament Fighters

When it came to the early 1990s, one fighting game that will get brought up often is the ever popular Street Fighter II. And with Turtle Mania dying d...

How The Summer Days Were Always Packed

Reminiscing on the Summer season can bring either of two cases, remembering how dreadfully hot the temperatures would get, or thinking only of the act...

The Failed Expectations of Third Party Game Controllers

After the resurgence of the video game console market coming from the video game crash of 1983, third party video game controllers from other companie...

How The Next Mutation Killed 90s TMNT

After the 1987 Teenage Mutant Ninja Turtles animated series ended in 1996 with its tenth season, it seemed like the franchise had little staying power...

The Importance of Ocarina of Time

When video games were truly ready for the 3D era, experimenting with ideas in both console hardware and software was always what would lead to a gambl...

PHP warning

PHP warning

Creating default object from empty value

/home/ghostofvapor/public_html/protected/controllers/SiteController.php(1261)

1249             //$allArticles = Articles::model()->findAllByAttributes(array('status'=>'Approved'), array('order'=>'id desc', 'limit'=>10));
1250 
1251             if (isset(Yii::app()->user->uid)) {
1252                 $ifFavorited = PostLog::model()->countByAttributes(array("post_type" => 'Article', "post_id" => $artId, "action_by" => intval(Yii::app()->user->uid), "action_taken" => 'Favorited'));
1253                 $ifApproved = PostLog::model()->countByAttributes(array("post_type" => 'Article', "post_id" => $artId, "action_by" => intval(Yii::app()->user->uid), "action_taken" => 'Approved'));
1254                 $ifDisapproved = PostLog::model()->countByAttributes(array("post_type" => 'Article', "post_id" => $artId, "action_by" => intval(Yii::app()->user->uid), "action_taken" => 'Disapproved'));
1255                 $ifAction = $ifApproved + $ifDisapproved;
1256             } else {
1257                 $ifFavorited = $ifAction = 0;
1258             }
1259 
1260             $this->render('article', array('model' => $model, 'article' => $article, 'postedBy' => $postedBy, 'comments' => $comments, 'commentCount' => $commentCount, 'ifFavorited' => $ifFavorited, 'ifAction' => $ifAction, 'allArticles' => $allArticles, 'pages' => $pages));
1261             $article->reads += 1;
1262             $article->update();
1263         } else {
1264             $this->redirect(Yii::app()->createUrl('site/error', array('code' => 404, 'message' => 'This page was not found.')));
1265             exit();
1266         }
1267     }
1268 
1269     public function actiontest() {
1270         if (isset($_GET['order']) && $_GET['order'] == 'title')
1271             $order = 'title ASC';
1272         else
1273             $order = 'posted_on DESC';

Stack Trace

#12
+
 /home/ghostofvapor/public_html/index.php(16): CApplication->run()
11 defined('YII_DEBUG') or define('YII_DEBUG',true);
12 // specify how many levels of call stack should be shown in each log message
13 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
14 
15 require_once($yii);
16 Yii::createWebApplication($config)->run();
2026-04-17 02:29:59 Apache Yii Framework/1.1.11