Hi Guys,
I have created a new module, it is working fine on local machine but when I uploaded on the server, it is not being shown in the admin side for activation.
I am not getting understand why it is like this.......
If you want to check the code, I have put it down.
newsite.info file.............
; $Id: newsite.info,v 1.3 2007/08/03 04:33:36 dries Exp $
name = newsite
description = "Enable users to create 'New Site', if the users have no login on this site"
package = "newsite"
version = "5.x-1.x-dev"
project = "newsite"
newsite.module file.....
// $Id: newsite.module,v 1.18 2007/04/24 19:55:09 btmash Exp $
// Selective groups states. chosen by the group admin
define ('nsite_OPEN', 0);
define ('nsite_MODERATED', 1);
define ('nsite_INVITE_ONLY', 2);
define ('nsite_CLOSED', 3);
// visibility states for nodes within groups. site admin chooses in og_settings()
define('nsite_VISIBLE_GROUPONLY', 0);
define('nsite_VISIBLE_BOTH', 1);
define('nsite_VISIBLE_CHOOSE_PUBLIC', 2);
define('nsite_VISIBLE_CHOOSE_PRIVATE', 3);
// site admin chooses in og_settings() whether group creator can put his group on the registration form
define('nsite_REGISTRATION_NEVER', 0);
define('nsite_REGISTRATION_ALWAYS', 1);
define('nsite_REGISTRATION_CHOOSE_TRUE', 2);
define('nsite_REGISTRATION_CHOOSE_FALSE', 3);