PHPFox is a social network script, it is an internet application and when you install it, it is a website. The phpfox script comes in 3 packages, each with a different set of modules.
it has two products:
1. Nebula (upto phpfox 3.8)
2. Neutron (Newer)
You can check the demo on : http://www.phpfox.com
===================================================
To clear cache in phpfox
follow the following steps,
admincp >> Tools >> Maintenance >> Cache Manager >> Click on Clear All button
===================================================
To work facebook app on local
Following settings need to done in facebook app
1) go => setting => Advance
2) see "OAuth Settings" area and set "Valid OAuth redirect URIs" = http://projectdomain/index.php?do=/user/login/, http://projectdomain.com/index.php?do=/user/register/, http://projectdomain.com, http://projectdomain.com/index.php
3) enable "Embedded browser OAuth Login" option
Make sure to add your domain name is same as we entered in facebook app
1. go => include/setting/server.sett.php
$_CONF['core.host'] = 'projectdomain.com';
===================================================
admin account on sync with facebook, ( Your account is synced with your Facebook account. Please login using Facebook Connect.)
Solution : -
1. Please Disable Facebook Connect in your AdminCP
a. From admincp control panel
Settings >> System Settings >> Manage Settings >> Facebook Connect >> To disable click on green circular button
b. We can also disable facebook by mysql Query
mysql> SELECT * FROM `phpfox_module` WHERE (CONVERT(`module_id` USING utf8) LIKE '%facebook%');
mysql> update `phpfox_module` set is_active = 0 where `module_id` = 'facebook';
2. Make one simple user as admin in phpfox by changing user_group_id = 1
mysql> update phpfox_user set user_group_id =1 where email = 'youremailaddress';
3. Login to admincp by using new admin credentials
mysql> update phpfox_user set user_group_id =1 where email = 'youremailaddress';
3. Login to admincp by using new admin credentials
4.Clear cache
===================================================
Only show facebook based login option. For instance, Login using facebook (icon)
Bellow are the steps to hide he other social logins from signup and login page,
1. admincp >> Modules >> Opensocialconnect >> Manage Providers >> To disable click on green circular button
===================================================
Registration page setting changes
To set html changes check bellow settings,
1. Extension >> Language >> Manage Language Packages >> (MASTER) English (US) >> Manage Phrases >> Search For Text >>
2. admincp >> Extensions >> Theme >> Manage Themes >> yourthemename >> Edit Templates >> user >> register.html.php
To set css changes check bellow settings,
admincp >> Extensions >> Theme >> Manage Themes >> yourthemename >> Manage Styles >> default >> Edit CSS >> Global CSS >> custom.css
===================================================
Comments
Post a Comment