Jump to content

Nikola

Members
  • Posts

    6
  • Joined

  • Last visited

Nikola's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I don't know how to reuse HTTP connection. Anyways, that is not the problem, since we are just testing the new version, so nobody except me is accessing the server. Also, i measured again, and every time it needs exactly 2 minutes to return results (this script). I also tried increasing http_rate, but there is no difference. What should I try next? Thanks, Nikola
  2. We are currently testing new version ( 2.1.0.2115 ) on linux debian and we have a problem. Access to the database using SOAP is very slow comparing to the old version. For example simple php script like I am attaching, takes exactly 2 minutes to return the results, while on the old version, it was taking 1-2 seconds. Userportal we are using for managing voicemail, forwarding etc. doesn't even load (probably because of the time out) Once again, on the old version (3.1-2.0.4.1766) it takes seconds to return these results. Thanks, Nikola php script for getting first and last name from pbxnsip if the phone numberis is given. $r = array(); $search = array("name"=>$phone_number); pbx_search("user_alias", 999999, 0, false, $search, $r, $pbx_server, $pbx_port); $alias_id = array_pop($r); if($alias_id) { $r = array(); $search = array("user", "domain"); pbx_get("user_alias", $alias_id, $search, $r, $pbx_server, $pbx_port); $user_id = $r['user']; $domain_id = $r['domain']; } else { echo "No User Found."; } $columns = array("id"); pbx_get("users", $user_id, $columns, $res, $pbx_server, $pbx_port); $extension_id = $res['id']; $columns = array("first_name", "display_name"); pbx_get("extensions", $extension_id, $columns, $res, $pbx_server, $pbx_port); echo "<br />First name: ".$res['first_name']; echo "<br />Last name: ".$res['display_name'];
  3. Hi, Sorry, but problem is not in my browser, I did all that (tried different browsers, cleaning cache, refreshing page, etc) before starting this topic. I will try to resolve this problem with technical support, and I will post the solution. Thanks, Nikola
  4. Yes, of course. I also tried internet explorer and firefox and results are the same. Nikola
  5. If I move html directory completely, web interface works, but it doesn't have horizontal menu. I am not sure what the html directory is for, it looks like it contains the web interface html files. I can send you a list. Thanks, Nikola
  6. Hi, We are running pbxnsip on linux, debian and suse. We had problems with html directory before, but solved it somehow. We want to upgrade to the new version, and we have problems again. We were using pbxctrl-debian3.1-2.0.0.1491 before, html directory contained only one file (voicemail.htm) We upgraded to pbxctrl-debian3.1-2.0.4.1766, but web interface wasn't working properly, so we had to copy some new html directory with a lot of files (120 files + img and CVS directory.) Now we want to upgrade to version pbxctrl-debian3.1-2.1.0.2115. I copied executable, restarted the service, but web interface did't work properly (it was unusable). I copied again old html directory (with voicemail.htm only) and now I have web interface, but I don't have horizontal top menu. Which html directory should I use for this version? Thanks a lot, Nikola
×
×
  • Create New...