vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Major Additions - AdiInviter Contacts Importer / Inviter : Brings Massive Real Traffic To Your Website (https://vborg.vbsupport.ru/showthread.php?t=216706)

nirvana43 08-24-2009 07:59 PM

Quote:

Originally Posted by Booth (Post 1873491)
Apologies, sent you an email about a few problems. Will keep it to email from now on ;)

Thank you sir.. I appreciate that. :)
No need to apologize. :o it was a request.

joyboy2001 08-24-2009 08:23 PM

Nice thinking behind the mod ... I saw all the discussion pages of this mod and think that it still needs to be more sorted out in terms of coding to ensure reliability ... Will install it only when many people have had a smooth, trouble free installation ...

Also, there have been a lot of requests for adding more services to the free version ... Personal advise, if you want to sell something, atleast offer enough so that people will use the free version and be tempted to buy the paid version ... I guess you could add Facebook to the free version easily as Facebook Connect is already available for vB. You won't be losing out much ... Also add Hotmail as a lot of people have said they won't even try it if hotmail isn't available in the free version ... I know you worked hard to make this, but it's going to be tough to sell it without reeling in some free users first ...

Also nominated for Mod of the month and sent you a friend request on Facebook ...

nirvana43 08-25-2009 01:16 AM

Quote:

Originally Posted by joyboy2001 (Post 1873675)
Nice thinking behind the mod ... I saw all the discussion pages of this mod and think that it still needs to be more sorted out in terms of coding to ensure reliability ... Will install it only when many people have had a smooth, trouble free installation ...

Also, there have been a lot of requests for adding more services to the free version ... Personal advise, if you want to sell something, atleast offer enough so that people will use the free version and be tempted to buy the paid version ... I guess you could add Facebook to the free version easily as Facebook Connect is already available for vB. You won't be losing out much ... Also add Hotmail as a lot of people have said they won't even try it if hotmail isn't available in the free version ... I know you worked hard to make this, but it's going to be tough to sell it without reeling in some free users first ...

Also nominated for Mod of the month and sent you a friend request on Facebook ...

Thank you very much sir.
I will think about adding Facebook and Hotmail in free version. :)
However those 2 require hell lotza maintainance to keep it up to date. Also the code we are supplying for free version is totally different from what we are supplying in full versions.

Thank you very much

aapkae 08-25-2009 07:29 AM

when i import gmail contact ... a error had come .. ?

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/friendzm/public_html/forum/scripts/gmail.php on line 25

Fatal error: Call to undefined function: iconv() in /home/friendzm/public_html/forum/scripts/gmail.php on line 71


how to solve it ?

aapkae 08-25-2009 07:30 AM

yahoo import the contacts but .. error on head ..

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/friendzm/public_html/forum/scripts/yahoo.php on line 23

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/friendzm/public_html/forum/scripts/yahoo.php on line 23

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/friendzm/public_html/forum/scripts/yahoo.php on line 23

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/friendzm/public_html/forum/scripts/yahoo.php on line 23

.. 4 times came . ..

solve it plz

nirvana43 08-25-2009 11:32 AM

Quote:

Originally Posted by aapkae (Post 1873899)
when i import gmail contact ... a error had come .. ?

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/***/public_html/forum/scripts/gmail.php on line 25

Fatal error: Call to undefined function: iconv() in /home/***/public_html/forum/scripts/gmail.php on line 71


how to solve it ?

Quote:

Originally Posted by aapkae (Post 1873901)
yahoo import the contacts but .. error on head ..

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/***/public_html/forum/scripts/yahoo.php on line 23

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/***/public_html/forum/scripts/yahoo.php on line 23

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/***/public_html/forum/scripts/yahoo.php on line 23

Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/***/public_html/forum/scripts/yahoo.php on line 23

.. 4 times came . ..

solve it plz

Above warnings are due to your server is running in safe mode

Try this :

1. Open ../scripts/gmail.php

2. Find : (Line 26)
Code:

curl_setopt($ch, CURLOPT_HEADERFUNCTION, 'read_header');
Add Below :

Code:

curl_setopt($ch, CURLOPT_HEADER, 0);

3. Open ../scripts/yahoo.php

4. Find : (Line 23)
Code:

curl_setopt($ch,CURLOPT_FOLLOWLOCATION,$follow);
Add Below :

Code:

curl_setopt($ch, CURLOPT_HEADER, 0);
I hope this will fix your problem. :)

saltedm8 08-25-2009 12:24 PM

As with all ( or most ) shared website hosting plans, ours limits our email sending to a limited 200 per hour, would you incorporate a sending limit that can specify a list in the back end then limit the sending amount to whatever an hour
( a number we specify by possibly using the cron )

so, once someone has submitted a load of email addresses, the addresses go into a que and are sent via the set amount of allowed per hour ?

I would be more inclined to purchase the gold version if I were able to control the sending limit like that, otherwise I am risking my hosting.

nirvana43 08-25-2009 01:10 PM

Quote:

Originally Posted by saltedm8 (Post 1874029)
As with all ( or most ) shared website hosting plans, ours limits our email sending to a limited 200 per hour, would you incorporate a sending limit that can specify a list in the back end then limit the sending amount to whatever an hour
( a number we specify by possibly using the cron )

so, once someone has submitted a load of email addresses, the addresses go into a que and are sent via the set amount of allowed per hour ?

I would be more inclined to purchase the gold version if I were able to control the sending limit like that, otherwise I am risking my hosting.

Thats a really nice suggestion. Please post 1 topic about this in General Discussion forum on Projects Planet website. We will keep follow up there. :)

sdfaheem 08-25-2009 06:42 PM

I installed the new version, yahoo is working good but gmail isn't. The error i am getting in gmail inviter is:

Quote:

Fatal error: Call to undefined function iconv() in /public_html/12345.com/scripts/gmail.php on line 71

nirvana43 08-26-2009 02:40 AM

Quote:

Originally Posted by sdfaheem (Post 1874262)
I installed the new version, yahoo is working good but gmail isn't. The error i am getting in gmail inviter is:

Its because your webhost doesn’t give you the support of iconv() PHP function.
About this function on php.net :
Quote:

You will need nothing if the system you are using is one of the recent POSIX-compliant systems because standard C libraries that are supplied in them must provide iconv facility. Otherwise, you have to get the ? libiconv library installed in your system.
To check if iconv() is available on your hosting, copy below code in 1 php file and execute it :
Code:

<?php
$exists_iconv_get_encoding =
function_exists('iconv_get_encoding');
$exists_iconv = function_exists('iconv');

if ($exists_iconv_get_encoding == TRUE) {
        echo "iconv_get_encoding is declared<br>";
} else {
        echo "iconv_get_encoding is not declared<br>";
}

if ($exists_iconv == TRUE) {
        echo "iconv is declared<br>";
} else {
        echo "iconv is not declared<br>";
}

$test_string = "this is an ascii-only test string";
echo "test_string is: $test_string<br>";

$encoding = iconv_get_encoding($test_string);
echo "encoding is: $encoding<br>";

$result = iconv($encoding,'UTF-8',$test_string);
echo "result is: $result<br>";
?>

Also copy below code in another php file, execute it and please post results here :
Code:

<?php
var_dump(get_extension_funcs("iconv"));
?>

The reason i used it because its a very common library and now a days almost all hosting providers have it installed. :)


All times are GMT. The time now is 09:01 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01441 seconds
  • Memory Usage 1,762KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete