Community discussions

MikroTik App

Search found 6 matches

by norg
Thu Oct 17, 2019 6:51 pm
Forum: General
Topic: MacOS Catalina, iOS, Catalyst, SwiftUI & Wine
Replies: 186
Views: 97358

Re: MacOS Catalina, iOS, Catalyst, SwiftUI & Wine

Xquarz no longer required by Wine. Simple installer with Next->Next.
On my MacBook installation of Wine asked for Xquarz (at least 2.7.7.)and wasn't able to continue
by norg
Wed Oct 16, 2019 10:41 pm
Forum: General
Topic: MacOS Catalina, iOS, Catalyst, SwiftUI & Wine
Replies: 186
Views: 97358

Re: MacOS Catalina, iOS, Catalyst, SwiftUI & Wine

i had this problem on macbook where I didnt have “the unarchiver” which takes exe as its file Popup open with warning that it isnt mac os file but after that start by automator was without warrning In automator I have exactly the same as Normis and it is working Only problem is when you close winbox...
by norg
Wed Oct 16, 2019 8:31 am
Forum: General
Topic: MacOS Catalina, iOS, Catalyst, SwiftUI & Wine
Replies: 186
Views: 97358

Re: MacOS Catalina, iOS, Catalyst, SwiftUI & Wine

1)hold "control" click on winbox64.exe, click "open", this will add exception to your security settings
https://support.apple.com/en-us/HT202491
2)it works
by norg
Sun Jan 25, 2009 4:18 am
Forum: General
Topic: another API bug, queue parent unknown!!!!!!!!!
Replies: 1
Views: 1831

Re: another API bug, queue parent unknown!!!!!!!!!

i have similar problem with php API when I run this if (mklogin_clientgate($API)) { $API->write('/queue/tree/add', false); $API->write('=name=user'.$csmlouva.$cpripbodu.'_d', false); $API->write('=parent=zakaznici', false); $API->write('=max-limit='.$pbethdown.'000', false); $API->write('=packet-mar...
by norg
Mon Jan 19, 2009 5:09 pm
Forum: Scripting
Topic: API PHP class
Replies: 47
Views: 72984

Re: API PHP class

after 2 days and levelup in php skills problem solved new php api function is function read($parse = true) { $RESPONSE = array(); while (true) { $LENGTH = ord(fread($this->socket, 1) ); if ($LENGTH > 0) { $_ = fread($this->socket, $LENGTH); $RESPONSE[] = $_; } $STATUS = socket_get_status($this->sock...
by norg
Sat Jan 17, 2009 2:39 pm
Forum: Scripting
Topic: API PHP class
Replies: 47
Views: 72984

Re: API PHP class

Hi I have a problem with this API class, after checking I know it is in read function. There is problem when I send command throught API which is correctly done by mikrotik, webbrowser get halted because of cycle. this problem I solved by adding this line of code into the read function if (!$LENGTH)...