NickNightingale

Member

Last active 10 years ago

  1. 10 years ago
    Mon Jan 13 12:13:22 2014
    NickNightingale posted in Failed registration code - please help.

    Thank you for your excellent help online.

  2. Fri Jan 10 09:52:02 2014
    NickNightingale started the conversation Failed registration code - please help.

    I have been using fop2 2.26 with voicemail for over a year. I wanted to upgrade to the latest version so I should probably have bought annual maintenance, but I didn't notice that option and repurchased the basic version as we don't use the voicemail option. After entering the code at the command line and doing "service fop2 restart", the panel shows unlicensed. I also tried buying the Annual Maintenance and entering that, but it still shows unlicensed. What should I do?

  3. 12 years ago
    Fri Nov 23 15:36:28 2012
    NickNightingale started the conversation Context for queue members.

    fop2admin 1.2.11, fop2 2.26, freepbx 2.10 and asterisk 1.8.17.0

    When I use the fop2 to log in and out of queues it uses the context from-internal, but when I do this on the phones it uses from-queue. Presumably the latter is what I want.

    Looking in functions.inc.php there appears to be a bug

    $ver = getversion();
    $ver = str_replace(".","",substr($ver,0,3));

    if($ver>25) {
    $qctx="from-queue";
    } else {
    $qctx="from-internal";
    }

    Assuming the version string comes back like 2.10 this would give
    2.5 -> 25
    2.10 -> 21