Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Need help with AION Power Web

Newbie Spellweaver
Joined
Oct 11, 2010
Messages
34
Reaction score
0
Hi guys
i have install the aion powerweb 3.0 on xampp web server
it seems all config working well but the problem is
i cant acces any menu on website

error
Object not found!

The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.

If you think this is a server error, please contact the webmaster.

Error 404

is my website. all menu is not working well
is there anything i need to setting that i dint do it yet?
 
Newbie Spellweaver
Joined
Feb 12, 2017
Messages
54
Reaction score
2
1. The panel folder is in the wrong place (it needs to be in the same directory as index.php)2. .htaccess is rerouting
 
Upvote 0
Newbie Spellweaver
Joined
Oct 11, 2010
Messages
34
Reaction score
0
1. The panel folder is in the wrong place (it needs to be in the same directory as index.php)2. .htaccess is rerouting

what do u men panel folder? i cant find any panel folder on power web directory.

Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on

# if a directory or a file exists, use it directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

# otherwise forward it to index.php
RewriteRule . index.php
here is y .htaccess
 
Upvote 0
Newbie Spellweaver
Joined
Oct 11, 2010
Messages
34
Reaction score
0
can you paste here your config


Code:
<?php

return array(
	'homeUrl'=>'http://aionchronicle.net/testcp/', // Homepage URL, the slash at the end is required
	'basePath'=>dirname(__FILE__).DIRECTORY_SEPARATOR.'..',
	'name'=>'PowerWeb', // Can be customised
	'language' => 'en', // There is only a language available "en" English
	'theme' => 'classic/', // Name of the themes folder being used
	
	
	'preload'=>array('log'),
	'import'=>array(
		'application.models.*',
		'application.components.*',
	),
	'defaultController'=>'news',
	'modules'=>array(
		/*'gii'=>array(
			'class'=>'system.gii.GiiModule',
			'password'=>'aaa',
			'ipFilters'=>array('127.0.0.1','::1'),
		),*/
	),
	'components'=>array(
		'user'=>array(
			'allowAutoLogin'=>true,
		),
		'ih'=>array(
			'class'=>'CImageHandler',
		),
		'urlManager'=>array(
			'urlFormat'=>'path',
			'showScriptName'=>false,
			'rules'=>require(dirname(__FILE__).'/routes.php'),
		),
		
		// Cache
		//'cache'=>array(
		//	'class'=>'CDbCache',
		//),
		
		// Database connection settings
		'db'=>array(
			'connectionString' => 'mysql:host=localhost;dbname=pow', // Host&Database connection string
			'emulatePrepare' => true,
			'username' => 'root', // Database Username
			'password' => 'mypwd', // Database Password
			'charset' => 'utf8',
			'enableProfiling' => true,
			'enableParamLogging'=>true,
			//'schemaCachingDuration'=>3600, // cache time, sec
		),
		'gs'=>array(
			'class'=>'CDbConnection',
			'connectionString' => 'mysql:host=localhost;dbname=ac47_server_gs', // Host&Database gameserver connection string
			'emulatePrepare' => true,
			'username' => 'root', // Database Username
			'password' => 'mypwd', // Database Password
			'charset' => 'utf8',
			'enableProfiling' => true,
			'enableParamLogging'=>true,
			//'schemaCachingDuration'=>3600, // cache time, sec
		),
		// Логинсервер
		'ls'=>array(
			'class'=>'CDbConnection',
			'connectionString' => 'mysql:host=localhost;dbname=ac47_server_ls', // Host&Database loginserver connection string
			'emulatePrepare' => true,
			'username' => 'root',
			'password' => 'mypwd',
			'charset' => 'utf8',
			'enableProfiling' => true,
			'enableParamLogging'=>true,
			//'schemaCachingDuration'=>3600, // cache time, sec
		),
		'session' => array(
			'class' => 'application.components.MyCDbHttpSession',
			'connectionID' => 'db',
			'sessionTableName'  =>  'session',
			'autoCreateSessionTable' => false,
			'compareIpAddress'=>true,
			'compareUserAgent'=>true,
			'compareIpBlocks'=>0
		),
		
		'errorHandler'=>array(
            'errorAction'=>'site/error',
        ),
		
		'log'=>array(
			'class'=>'CLogRouter',
			'routes'=>array(
				array(
					'class'=>'CFileLogRoute',
					'levels'=>'error, warning',
					//'class'=>'CProfileLogRoute',  // Log
					//'report'=>'summary', // Log
				),
				/* Log
				array(
					'class'=>'CWebLogRoute',
				),
				*/
			),
		),
	),
	
	
	// Прочие настройки
	'params'=>array(
		'adminEmail' =>		'mail@localhost',	// Admin email address
		'money' =>			'toll',		// Database column for donations
		'version' =>		'3.0',
	),
);
 
Upvote 0
Newbie Spellweaver
Joined
Feb 12, 2017
Messages
54
Reaction score
2
try change your http://aionchronicle.net/testcp/ to 127.0.0.1/testcp/ or if did you use host server to test it change ip filter to your host ip
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Oct 11, 2010
Messages
34
Reaction score
0
try change your http://aionchronicle.net/testcp/ to 127.0.0.1/testcp/ or if did you use host server to test it change ip filter to your host ip

it not work. change to localhost will made all menu change to local host.
i host this thing on my own server using xampp webserver
 
Upvote 0
Back
Top