View Single Post
  #2  
Old 06-10-2013, 06:58 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 393,755
Hall of Famer is on a distinguished road
Default

It redirects to the index page if you do not create a page with the correct controller format. Assume your file name is battle.php, it should look like this:

PHP Code:
class BattleController extends AppController{

    public function 
__construct(){
        
parent::__construct("member");    
    }

    public function 
index(){
        
// index action for the battle page
    
}

If you try to create a page with the same format as Mys v1.3.1 or v1.3.2, you will be redirected to the index page.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote