Search results

  1. B

    SOLVED Create user via API

    Found the problem, had a comma next to the last line ("true",). Removed the comma and all is good.
  2. B

    Login directly to an app page

    This is a cool feature indeed. A strange thing happens, if I add this login forward to a user, all other users on the domain get automatically forwarded to that URL too.
  3. B

    SOLVED Create user via API

    Hi Fusioners, Every day that passes I am more and more astounded by the power of this software, it's lots of fun working with it. I am trying to create a user via the API, for this I need to create a user and a contact, so I curl post the following: curl -X POST -H "Content-Type...
  4. B

    Login directly to an app page

    Also tried with your code snippet instead of: //if the username session is not set the check username and password if (strlen($_SESSION['username']) == 0) { I typed: if ((strlen($_SESSION['username']) == 0) && ((isset($_REQUEST["username"]) && isset($_REQUEST["password"])) ||...
  5. B

    Login directly to an app page

    Tried, got the same result (a login screen and behind it a blinking "Interactive Conferences" screen). I think it can be reproduced with any fusionpbx with a conf room. We are running version 4.4.3
  6. B

    Login directly to an app page

    Thanks a lot for the link, it indeed helped in all menus besides one, the conference_interactive.php. If I try https://URL.com/app/conferences_active/conference_interactive.php?key=552d7abe-1678-4fc9-afbd-68fac33434c0&c=1233c367-3071-465d-8714-4eb77e187237 c=my conference room What I get is the...
  7. B

    Login directly to an app page

    Hi all, I would like to login directly to an app such as the conference gui (https://URL/app/conference_centers/conference_rooms.php), but Fusion sends me always to the domain main page after logging regardless of the link. How can I login directly to an app page?
  8. B

    SOLVED Conference center room API printout

    Found it: https://FUSION_URL/app/api/6/conference_centers https://FUSION_URL//app/api/6/conference_rooms https://FUSION_URL//app/api/6/meetings meetings is for the conference PIN numbers.
  9. B

    SOLVED Conference center room API printout

    Hi all, We have an API v6 enabled FusionPBX server. I can see/edit all the available conference centers with this command: https://FUSION_URL/app/api/6/conference_centers/ But within the conference_centers are conference_rooms, and I would like to view/edit them with the API. If I do...
  10. B

    Email to Fax hardships

    OK, I found the problem. Here's the way to get email to fax working: 1. As root do "crontab -e" Add the line bellow for an IMAP check every 2 minutes: */2 * * * * wget --no-check-certificate --delete-after http://fax.onlinefaxservice.nl/app/fax/fax_emails.php 2. Now follow this post...
  11. B

    Email to Fax hardships

    Hi all, I have a working FusionPBX which can receive faxes and send them via the web gui. I'm trying to set up email to fax, for that I followed the recommendation in https://www.pbxforums.com/threads/email-to-fax-under-fax-server.905/. First I created a fax account with IMAP settings (see...