返回列表 發帖
Did your router support SSL-VPN? Now you have the server, you can have a software SSL-VPN.

TOP

Yes, it supports SSL-VPN.  Manufacturer also provides its dedicated software to us for connection.

TOP

剛剛也在試裝GUI...
但現在一使用browser進入時...asterisk會自動stop了...
看了國外的文章...好像是說.conf在loop導致的...

好像還沒有解決辦法...
我把static-http改作777也不行...(而index.js已經有1.8那句了...)

TOP

如果唔work, 暫時冇其他辦法。

TOP

IE 係唔work,但Firefox OK 的。
Access rights 777 只在static-http 第一層做未必足夠,你留意Folder 之下的子Folder 及files 有沒有改動相關access rights,也有需要全改的。

TOP

IE 係唔work,但Firefox OK 的。
Access rights 777 只在static-http 第一層做未必足夠,你留意Folder 之下 ...
bubblestar 發表於 2011-2-10 09:31

都試過改-R 777...都係唔得...
我一o係Firefox行條link...跟住個asterisk就disconnect...

TOP

本帖最後由 bubblestar 於 2011-2-11 15:32 編輯

If you are brave enough, you can try with this latest working method.  Only need to edit a few lines on index.js

留意只需更改有 + 號 的地方

http://www.mail-archive.com/aste ... m.com/msg01736.html
  1. Here is a quick and dirty patch,  the isAST_1_6_1 will give you most
  2. of the actions that you need.  I just got my svn access so I will work
  3. to add 1.8, 1.10 support to this soon.  Keep in mind that the new
  4. mjson addition to the manager will enable us to rewrite a lot of this
  5. more cleanly.

  6. Index: config/js/index.js
  7. ===================================================================
  8. --- config/js/index.js  (revision 5132)
  9. +++ config/js/index.js  (working copy)
  10. @@ -134,13 +113,11 @@
  11.                                         'h263p': 'H.263p',
  12.                                         'h264' : 'H.264'
  13.                                 };
  14. -
  15. -                               /* add video codecs for 1.6 platforms */
  16. -                       } else { /* if system is either 1.4 or unknown */
  17. -                               sessionData.PLATFORM.isAST_1_4 = true ;
  18. -                               sessionData.PLATFORM.isAST_1_6 = false ;
  19. +                       } else {
  20. +                               sessionData.PLATFORM.isAST_1_4 = false ;
  21. +                               sessionData.PLATFORM.isAST_1_6 = true ;
  22. +                               sessionData.PLATFORM.isAST_1_6_1 = true ;
  23.                         }
  24. -               }
  25.         },

  26.         check_ReadWritePermissions : function(){
  27. @@ -551,7 +528,7 @@
  28.                 }

  29.                 //if( sessionData.PLATFORM.isAA50  ){
  30. -                       DOM_mainscreen.src = 'home.html?status=1';
  31. +                       DOM_mainscreen.src = 'home.html?status=0';
  32.                 //}

  33.                 if( sessionData.PLATFORM.isAA50 &&
  34. sessionData.PLATFORM.AA50_SKU.contains('800') ){
  35. @@ -1117,7 +1094,7 @@
  36.                  * doing time intervals for includes :-/
  37.                  * */
  38.                 if (!sessionData.PLATFORM.isAST_1_6) {
  39. -                       top.session.delimiter = '|';
  40. +                       top.session.delimiter = ',';
  41.                 }
  42.         };



  43. ~~~ Andrew "lathama" Latham lath...@gmail.com ~~~
複製代碼

TOP

返回列表