What is AdiInviter Pro? :
AdiInviter Pro allows your website visitors to import their contacts from various email providers and social network websites. Your website visitors can send personalized email invitations to all their friends referring/asking them to join your website.
AdiInviter Pro v0.7 Lite Edition Features :
Automatic integration into any vBulletin style.
Fully customizable invitation template.
Import & invite contacts from Gmail and Yahoo services.
Import and invite manually entered contacts.
Import and invite contacts from manually entered contacts list.
Customizable invitation subject and email template under admin panel.
Allow/Disallow guest (not-logged in) users to use AdiInviter Pro system.
Auto formation of referral register link under invitation message.
Note : Kindly avoid premium version discussions in this topic. If you have any comment/suggestion/request about premium version of the product then kindly drop us a line at our official website. We are more than glad to answer your queries.
Please open Upload/adiinviter_supported.php
Find :
PHP Code:
print_output($templater->render());
Replace With :
PHP Code:
if (!$vbulletin->userinfo['userid']) { print_no_permission(); } else { print_output($templater->render()); }
Repeat above find and replace for -
Upload/adiinviter_next.php
Upload/free_adiinviter.php
Make sure you are logged in to your forum and test it..
Let me know if that helps you
Please open Upload/adiinviter_supported.php
Find :
PHP Code:
print_output($templater->render());
Replace With :
PHP Code:
if (!$vbulletin->userinfo['userid'])
{
print_no_permission();
}
else
{
print_output($templater->render());
}
Repeat above find and replace for -
Upload/adiinviter_next.php
Upload/free_adiinviter.php
Make sure you are logged in to your forum and test it..
Let me know if that helps you
thanks for your support, if i add these codes, i am getting a blank page,
so i added the old files back and i am getting a new page with all the details, i logged into my mail and added all the stuff.
now the problem is after clicking on the invite button i am getting this error
PHP Code:
Warning: require_once(/home/user/public_html/forums/global.php) [function.require-once]: failed to open stream: No such file or directory in /home/earning/public_html/mydomainname.com/forums/adiinviter/adiinviter_global.php on line 2
Fatal error: require_once() [function.require]: Failed opening required '/home/user/public_html/forums/global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/earning/public_html/mydomainname.com/forums/adiinviter/adiinviter_global.php on line 2
thanks for your support, if i add these codes, i am getting a blank page,
so i added the old files back and i am getting a new page with all the details, i logged into my mail and added all the stuff.
now the problem is after clicking on the invite button i am getting this error
PHP Code:
Warning: require_once(/home/user/public_html/forums/global.php) [function.require-once]: failed to open stream: No such file or directory in /home/earning/public_html/mydomainname.com/forums/adiinviter/adiinviter_global.php on line 2
Fatal error: require_once() [function.require]: Failed opening required '/home/user/public_html/forums/global.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/earning/public_html/mydomainname.com/forums/adiinviter/adiinviter_global.php on line 2
You have not specified correct path to global.php located at your forum root.
Please open adiinviter_global.php
And specify correct path..
what should be my path, i have my forums here
mydomainname.com/forums
and global.php is in the forums subfolder(root)
and adiinviter is in the same root as that global.php..