How to buy this Script?
* Contact rajamanickam.a@gmail.com to buy this script or for buying this Script or click here.
Who buy this Script?
* The Social media marketing people can buy this script for improving efficiency of their marketing efforts. The script will be useful for the people who are interested to earn money by providing social media marketing services by collecting monthly or Yearly fees from the social media marketing persons. Even people who want to bring traffic to their existing website can also use this script to bring traffic to their website . They can earn money by showing advertisements also.
Whom should I contact if I need any further details?
* Contact rajamanickam.a@gmail.com or info@qualitypointtech.net. And, you can see more contact details here.
I want to know more about this product, and I want to see sample or Trail. From where I can get these details?
* You can see live demo.
How to install this script and what are the changes I have to make?
* Extract the zip file and place it in your desired location.
* Take the sql file from db folder and import in your phpmyadmin
* Update the db info in config.php file in both twit-status and twit-info folder
* Need to change twitter consumenr key, consumer secret and oauth callback in configOauth.php file
* In functions.php file change username and key in make bit ly function.
Where I have to change header and footer ?
* Template folder does not come along with the downloaded script. You have to delete the delete these header.php and footer.php included line in all files in twit-status and twit-info folder. Otherwise create one new folder named as ‘template’ in the same directory where ‘twitter’ and ‘forum’ folder resides. Inside ‘template’ folder you place the header.php file and footer.php file.
Where should I change facebook like button and other share buttons?
* For changing facebook like button and other share buttons you need to update in each files. No separate files or modules are available to update these social media plugins.
Where I have to change ‘see sales page of this script….’ box text?
* You need to remove the include “bottom_links.php” line in all files at bottom, otherwise change appropriate content in bottom_links.php file.
Why I have to integrate this application with Forum?
* We used phpBB3 froum for login authorization. You can easily manage user(spam user) from here.
Can I use my own login system?
* Yes, you can use. But you need to change some code in all files.
Where should I Install forum?
*Install forum in your main directory – (i.e) the ‘forum’ and ‘twitter’ folder are present in the same directory. Inside the twitter folder you have to place all the twitter application files. So that only three folders will remain in main directory (Forum, Twitter and template).
Where I have to change login and logout process in forum files?
* This application needs two databases.
- One is for ‘twitter application’ and another one is for forum’ to login authorization.
* We stored forum phpbb_users table’s user_id in twitter application tw_twit_account table as fourm_userid.
* You need to set setcookie(“forumuserid”,$fuserid,0,”/”); in forum index.php file (this file in root level) for login authorization. If you don’t want to set this cookie then use forum default cookie (you need to find). We used this forum cookie userid in twitter application ($_COOKIE['forumuserid']).
* Look for the line below in the file index.php
$l_total_topic_s = ($total_topics == 0) ? ‘TOTAL_TOPICS_ZERO’ : ‘TOTAL_TOPICS_OTHER’;
* Copy the this code below the above mentioned code
$fuserid=$user->data['user_id'];
setcookie(“forumuserid”,$fuserid,0,”/”);
if(isset($_GET['goback']))
{
if($_GET['goback']==’twstatus_index’)
{
header(“location:../twitter/twit-status/connect.php”);
}
else if($_GET['goback']==’twstatus_sendpage’)
{
header(“location:../twitter/twit-status/disp_tw_account.php?status=bookmark”);
}
}
* Below codes should be included in the ucp.php file in your forum folder.
In ucp.php file look for the switch case ‘login’
In the case :login look for the code below
if ($user->data['is_registered'])
{
redirect(append_sid(“{$phpbb_root_path}index.$phpEx”));
}
You need to add below code after the above mentioned code.
if(isset($_GET['goback']))
{
$goback = $_GET['goback'];
$querystring = ‘?goback=’.$goback;
}
In switch case ‘logout’ – this code is trigger when user clicks logout. If you clicks logout link from ‘forum’ itself it comes first if condition and clear the cookie variable what we set when login. And incase user clicks ‘logout’ link from ‘twitter/twit-status’ (in that logout it have link like this ../../forum/ucp.php?gobacklogout=twstatus_index) we get querysting variable then clear the cookie variable as null and then again redirect to twitter/twit-status page.
case ‘logout’:
if ($user->data['user_id'] != ANONYMOUS && isset($_GET['sid']) && !is_array($_GET['sid']) && $_GET['sid'] === $user->session_id)
{
$user->session_kill(); // this line already exists
$user->session_begin(); // this line already exists
setcookie(“forumuserid”,”",0,”/”); // clear cookie variable – You need to add this line
$message = $user->lang['LOGOUT_REDIRECT']; case ‘logout’:
}
/* ———- you have to include these below code fully after first if cond – above if condition ——*/
if(isset($_GET['gobacklogout']))
{
if($_GET['gobacklogout']==’twstatus_index’)
{
$user->session_kill();
$user->session_begin();
setcookie(“forumuserid”,”",0,”/”); // clear cookie variable
header(“location: ../twitter/twit-status/connect.php”);
}
}
/*———– end ——————————————— */
Do I have to set a cron job?
* Yes, you have to add two files in cronjob for automatically sending tweets
- one is autotweet.php – this file sending tweet from ‘Auto Tweet’ module. (if you activate auto tweet this will work)
- second one is send_hottrend_tweet.php – this file sending hot trend news from ‘Auto Trends’ module (if you activate auto trends this will work)