Alias "application.modules.user.UserModule" is invalid. Make sure it points to an existing PHP file and the file is readable.
How to solve these issue?
Alias "application.modules.user.UserModule" is invalid. Make sure it points to an existing PHP file and the file is readable.
How to solve these issue?
what are you trying to do? usually the following will suffice
"application.modules.user"
I m trying to social login using Yii user,My Frontend already Having Controller User but I cant understand
how to run Modules file and also my front end.
IN config main.php,
I wrote like this,
‘modules’=>array(
'usermanage'=>array(
'class' => 'application.modules.user.UserModule',
'tableUsers' => 'tbl_users',
'tableProfiles' => 'tbl_profiles',
'tableProfileFields' => 'tbl_profiles_fields',
),
)
<?php
'modules'=>array(
'usermanage'=>array(
// comment the following line you don't need that yii will figure that out automagically
// 'class' => 'application.modules.user.UserModule',
'tableUsers' => 'tbl_users',
'tableProfiles' => 'tbl_profiles',
'tableProfileFields' => 'tbl_profiles_fields',
),
)