login | register
Fri 16 of May, 2008 [04:09 UTC]

voip-info.org

Search with Google
Search this site with Google. Results may not include recent changes.
 
Google Ads
Shoutbox
  • Juan Ortega, Thu 15 of May, 2008 [10:33 UTC]: Hi everybody, I'm Juan, an ITCom student, and I need to know what basic elements I need to create a VoIP network. Can anybody helpme, please?,Thank you very much
  • gineta, Wed 14 of May, 2008 [03:58 UTC]: any here not fine the configuration of firewall juniper -screem for VOIP asterisk????
  • Anoop Prabhakaran, Tue 13 of May, 2008 [12:16 UTC]: I am developing Asterisk IVR, Whenever i make a internation call to the IVR system, the DTMF is not getting detected properly, this happens only for the first time, second call onwards system works fine. why this is happening
  • joe, Mon 12 of May, 2008 [04:27 UTC]: Is there an opensource browser based softphone, or a system like Busta where everything is not manages through their website?
  • Nick Barnes, Fri 09 of May, 2008 [11:36 UTC]: Christopher - yesterday I tried an Asterisk install on a CentOS 5.1 box with stock GUI and it all worked fine. Sorry I can't help.
  • aero, Fri 09 of May, 2008 [08:20 UTC]: can someone help me out on this, i tried to play some sound files on my asterisk box and this is the error message i got. WARNING[4429]: format_wav.c:169 check_header: Unexpected freqency 22050 May 8 11:17:39 WARNING[4433]: codec_gsm.c:194 gsmtolin_fra
  • Christopher Faust, Thu 08 of May, 2008 [14:15 UTC]: I beleive that I may have to change something in the xserver configuration. Please advise
  • Christopher Faust, Thu 08 of May, 2008 [14:14 UTC]: Everything was perfect. In the bios I have increased the memory allocated Still receive input not supported on my display.
  • Christopher Faust, Thu 08 of May, 2008 [14:13 UTC]: This would not be my main box. I am doing some testing to see if I can install zaptel and asterisk 1.4 on a full centos 5.1 box with development software Its bizzare, because before I went through the asterisk and zaptel installation everything was perfe
  • Nick Barnes, Thu 08 of May, 2008 [13:44 UTC]: Christopher - I can't see any way in which an Asterisk installation would muck your GUI, but remember that it is advised not to use a GUI on an Asterisk box anyway.
Server Stats
  • Execution time: 0.41s
  • Memory usage: 2.24MB
  • Database queries: 32
  • GZIP: Disabled
  • Server load: 0.53

Finarea SA

Finarea S.A. is a Swiss company based in Lugano. They operate discount phone services in the form of
conventional PSTN call-by-call in different European markets as well as Hongkong. The VoIP services they operated until the end of 2005 are now operated by a German company, Betamax GmbH whose actual relationship to Finarea SA is not clear.

The new home of Wolf's pages at MyVoipProvider has a rates comparision. But you cant see everything at a glance.

See http://backsla.sh/betamax for a complete daily updated Betamax price comparison chart. It now includes lowratevoip.com, too. Looks pretty decent!


New version of fincheck.php Ver 1.2 18th of July 2007. See below:


New version of fincheck 28th of January 2008. See below:



(28 Jan 2008)
Finarea are having problems with their verification service not recognizing the PIN number they give you for CCs and Paypal. Their only suggestion is to "pay some other way", which may be difficult.

Also if you have used paypal with them it may be difficult to set up a new account as they now check if your paypal address has been used on a different account and refuse the payment.

The latest offering, 12voip, has a better range of free countries than voip*, but reduces the freedays to 90. If you pay via paypal you may though be unable to move to them for the reason above.

(20 Feb 2007)
On 15/16 Feb 2007 all Betamax services were out of action due to a fire at their server centre. Service was restored the following day.

NOTE: On May 10, 2006 the policy has changed AGAIN: now the limit on free calls is defined as "Max 300 minutes per week of free calls, measured over the last 7 days"

(Check the fineprint at the bottom of the respective rates pages.)

(1 sept 2006)

NOTE: Credit doesn't expire anymore. After 120 "freedays" you pay 1 cent/min for the "free" destinations. Buy more credits to regain free calling.


ALWAYS check carefully with the sites which destinations are free (within the limitations mentioned above) and which are not. For a quick, possibly automated check from a shell prompt, run (maybe as a cron job) this "listfreedest" script:




#!/bin/sh
case _"$1" in
_)
        echo "usage: $(basename $0) finarea_service"
        echo " (e.g.: \"$(basename $0) voipdiscount\" )"
        exit 1
        ;;
*)
        lynx -dump http://www.$1.com/en/rates.html \
        | sed -n "s/[[:space:]]*\([^)]\+[)]\).*[Ff]ree.*[Ff]ree.*/  \1/p"
        ;;
esac


2006-11-03 Update:
Since some pages are using CAPS for the FREE / Free or free word, you need to modify the script to looks like:

  1. !/bin/sh
case _"$1" in
_)
       echo "usage: $(basename $0) finarea_service"
       echo " (e.g.: \"$(basename $0) voipdiscount\" )"
       exit 1
       ;;
  • )
       lynx -dump http://www.$1.com/en/rates.html \
       | sed -n "s/[:space:]]*\(^)\+)\).*[Ff][Rr][Er][Ee]*.*[Ff][Rr][Er][Er]*.*/  \1/p"
       ;;
esac



Usage/credit check

The following script, both bash- and ash-compatible, checks either available credits (in eurocents) or free minutes usage for most (all?) Finarea services. It makes certain assumptions about the web interface, so it may break if such interface is changed. The last parameter is optional, and if present it represents the number of months ago to which the free minutes usage refers (1 = last month). For example:

fincheck creditcents voipstunt USERNAME PASSWORD

...prints to stdout the number of eurocents still available;

This now also works correctly with voipbusterpro.(They charge 3.9 cents per "FREE" call)
fincheck usedminutes voipstunt USERNAME PASSWORD  


...prints to stdout the free minutes used so far during this month;

fincheck usedminutes voipstunt USERNAME PASSWORD 3

...prints to stdout the free minutes used three months ago.

TZ=CET fincheck last7daysminutes voipstunt USERNAME PASSWORD

...prints to stdout the free minutes used in the last 7 days (including the current one) using German timezone for day boundaries

TZ=CET fincheck last7daysminutes voipstunt USERNAME PASSWORD 5

...does the same, with a 5 day offset (the 7-day period from 12 to 5 days ago). The "TZ=CET" setting makes the script refer to day boundaries based on the timezone of Switzerland and Germany, on which all Finarea/Betamax services appear to base their accounting.

2 October 2006:

Added : Send SMS and Make Call

fincheck sms voipstunt USERNAME PASSWORD "MESSAGE" DESTINATION_NUMBER

fincheck call voipstunt USERNAME PASSWORD SOURCE_NUMBER DESTINATION_NUMBER

Source and destination numbers must be in international format ie. 00COUNTRY_CODE etc. OR +COUNTRY_CODE etc.

Ver 28th of January 2008:

Download it at : http://www.simong.net/finarea/fincheck

Added : The possibility to count free sms-es in last 7 days. (last7dayssms)

fincheck sms voipstunt USERNAME PASSWORD "MESSAGE" DESTINATION_NUMBER MONTH DAY HOUR MINUTE GMT_DIFFERENCE

It requires curl built with SSL support, and returns a status different from zero in case of errors (including login failure).

PHP version ...

New version 1.2 18th of July 2007:

Using PHP. Caller-ID can be set on SMSes. Delayed SMSes with correct understanding of GMT.

An example script is included.

Check it out at http://www.simong.net/finarea/



2 May 2007 - Revamp of original version

An update of the original script by enzo was moved to http://www.i-t-vision.com/opensource/fincheck.txt due to the difficulty of properly escaping brackets and other special characters for inline publication...

Please note that now the provider's name must include the tld (e.g., "voipcheap" will have to be replaced by "voipcheap.com" or "voipcheap.co.uk", as appropriate).

For administrators of multiple account, there is now a "master script" (findaily) that, invoked by a cron job, calls fincheck for a list of accounts (defined inside the script: look for the lines between "(cat <<-EOF" and "EOF") and produces reports mailed to the individual account holders, plus a synthetic summary to the administrator. This is available at http://www.i-t-vision.com/opensource/findaily.txt, and a typical crontab entry for it to run every day at 8:30 am could be:


30 8 * * * /usr/local/bin/findaily|mail -s "Findaily Summary Report" admin@somewhere.com


3 Jul 2007 - fincheck updated to cope with missing newlines before each <tr> in the HTML tables returned by the servers for the call record details


Created by wnpaul, Last modification by Ian Worthington on Mon 28 of Jan, 2008 [20:58 UTC]

Comments Filter

Finarea scripts

by mastaadon on Thursday 10 of April, 2008 [22:22:55 UTC]
Plase teach mi using and installing finarea scripts

Finarea scripts

by mastaadon on Thursday 10 of April, 2008 [22:19:17 UTC]
Plase teach mi using finarea scripts

re: Charges for SIP devices.

by Ian Worthington on Friday 04 of January, 2008 [10:09:44 UTC]
That's not my experience: I get my free calls via SIP/Asterisk.

Changing betamax services / problems with paypal

by Ian Worthington on Friday 04 of January, 2008 [10:09:21 UTC]
If you try to move to another service (eg voipstunt to 12voip) and are a paypal payer, you might have problems:

"This transaction is refunded because we do not allow using the same paypal account on more than one user-account. Thank you for understanding."

Charges for SIP devices

by Daniel on Tuesday 04 of December, 2007 [21:13:07 UTC]
It appears that FREE only means if you dial through the downloaded web interface. You get charged (double sometimes) for dialling through asterisk.
- They dont answer emails
- Freedays duration is less than advertised
- Call quality reasonably OK
- gain not worth the hassle

5% fee for Paypal

by Ian Worthington on Thursday 18 of October, 2007 [13:11:03 UTC]
Voipstunt now add a 5% fee if you pay by Paypal.

Good so far

by Nick on Friday 27 of July, 2007 [18:42:09 UTC]
Bad luck for Christian, but maybe there were other issues affecting service for him. I think that "Buyer beware" is necessary for all VoIP providers, but I've not had any problem so far. No response to an email question, but I didn't really expect one so they matched my expectation on that even if they didn't manage to exceed.

After testing successfully with some free calls before handing over any cash, I've used webcalldirect from the UK via asterisk, and over a few weeks, calls to the UK, USA, Germany, Russia and a few others have worked very well. USA and Hong Kong mobile was free, and still says so on their summary of free destinations table, but no longer in their rates table so I suspect that and maybe others have changed. The rates are still really low though. Tweaking their rates so that a great deal today may not be quite so good tomorrow seems to be part of their MO. It wouldn't surprise me at all if one day everything went pear shaped without notice, but they've more or less delivered what they say on the tin so far.

Beware of these companies

by christian on Thursday 10 of May, 2007 [18:58:22 UTC]
I have now deleted their settings from my ATA after only 28 days of my 120 "free days" It is not free if you have to pay. The reason why you ask. Because most calls didn't connect. The ones that did most were incomprehensible. I would say that maybe one out of every eight calls sounded reasonable. Why not get support you ask, surely they would be interested in helping trouble shoot your problems. Not so, like the call perhaps one out of every five messages were even replied to. There was only two replies to my responses to their replies. No constructive conversation ever. Most of their replies were childish prideful responses that they weren't responsible. What is this two script kiddies in a closet. That was the tone of their messages. So save your money go else where. Cheap may be nice but when you get nothing for your money, the price is really high.

New 60 min limit ?

by Cris on Monday 07 of May, 2007 [16:25:35 UTC]
I didn't see any change on voipdiscount page but they charged for FUP exceeded after 60 minutes (instead of 300 min) total over 7 day.
Can you confirm this change in their policy?
How can I ask them clarification about that?

-Camicia

seeking accounts with Voip-in numbers (USA and Germany)

by Boris on Thursday 03 of August, 2006 [17:13:19 UTC]
I am looking for two unused accounts with working voip-in numbers.

One with a voip-in number from the USA.

One with a voip-in number from Germany.

Any Finarea account (voipcheap, voipbuster, etc...).

I would like to take over your unused accunt and would pay a small fee - by paypal for example.

Please contact me at: wwwmailwww@aol.com

.Thanks!

Vox

Please update this page with new information, just login and click on the "Edit" or "Add Comment" button above. Get a free login here: Register Thanks! - support@voip-info.org

Page Changes | Comments

Sponsored by:

Terms of Service Privacy Policy
© 2003-2008 VOIP-Info.org LLC

Powered by bitweaver