Azərbaycan dili Bahasa Indonesia Bosanski Català Čeština Dansk Deutsch Eesti English Español Français Galego Hrvatski Italiano Latviešu Lietuvių Magyar Malti Mакедонски Nederlands Norsk Polski Português Português BR Românã Slovenčina Srpski Suomi Svenska Tiếng Việt Türkçe Ελληνικά Български Русский Українська Հայերեն ქართული ენა 中文
Subpage under development, new version coming soon!

Subject: »[info]Dev Diary #82: Automatic release of NT-players from

2021-01-02 17:21:04
I know and I appreciate your interest. You better than us know which changes you have made, so I would try to get to you all information I can in order to help to fix it, because it is a useful tool.
2021-01-02 17:45:19
It would be a shame to lose it. I would rather have SO than plus.
2021-01-02 18:13:40
I just found a bug. When you try to change ticket prices at stadium, it doesn't accept decimal numbers.
2021-01-02 18:43:01
I agree. In my case aSokker fits my essential needs: I am not used to log Sokker on desktop computer but mobile, and I can see quickly my training report and my juniors progress with just 2-3 finger presses. I also use Sokker Asistente, and I used SO too and several others. Imho, external tools adds an extra user experience and features which I missed when I was plus. Both plus and external tools improve a lot the user experience.
2021-01-02 19:03:22
Hi!

I cant edit NT tactics.. And New Tactics. :/

with my team not problem but the NT, I cant edit tactics :(

Thanks!
2021-01-02 19:23:07
I read another info at old posts: SO uses online.sokker.org while SV uses sokker.org. It seems both xml pages are working properly from browser at least.
2021-01-02 19:24:32
Raul: everthing is working good, but just one litle appreciation: the ball is still quite big. could you reduce the sice a little bit more?
2021-01-02 19:37:27
It is annoying that you have to scroll down to bottom on center page, when wanting to scroll down on left menu page
2021-01-02 21:04:23
Yep.
I didnt read all, but when you rotate mobile and click that little phone icon from your android, then all changes, theme and scrolling.

Btw reply in email should have cursor on actual text section and not on nick name of person of replying.
While im typing this i have like 20% of view of this text, when phone is vertical its better. I dont know maybe phone settings...
2021-01-02 21:30:50
Is it a problem at the darkly style, when answer at inbox:
The box is white and letter is always white.
2021-01-02 23:36:25
I've decompiled aSokker apk and I've found the log in code. Maybe you can see something in there, I don't know what the API responses are but looking at the conditions is not too difficult to check it all. I don't think it is a timeout problem, because the app tries to log in and it quickly says it cannot connect. I've tried doing that request from my own with Postman and it is working OK. If you cannot see anything, I can go one step more and look for Android logs.

I apologize that the forum doesn't print tabulations properly :(

public int login(String user, String password) {
int error_code = 100;
this.httpost = new HttpPost("http://online.sokker.org/start.php?session=xml");
List<NameValuePair> nvps = new ArrayList<>();
nvps.add(new BasicNameValuePair("ilogin", user));
nvps.add(new BasicNameValuePair("ipassword", password));
BasicHttpParams httpParams = new BasicHttpParams();
HttpConnectionParams.setConnectionTimeout(httpParams, 15000);
HttpConnectionParams.setSoTimeout(httpParams, 30000);
SchemeRegistry schemeRegistry = new SchemeRegistry();
schemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
schemeRegistry.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));
this.httpclient = new DefaultHttpClient(new ThreadSafeClientConnManager(httpParams, schemeRegistry), httpParams);
this.httpclient.setParams(httpParams);
try {
this.httpost.setEntity(new UrlEncodedFormEntity(nvps, "UTF-8"));
this.response = this.httpclient.execute(this.httpost);
this.entity = this.response.getEntity();
if (this.response.getStatusLine().getStatusCode() == 200) {
String responseString = EntityUtils.toString(this.entity);
Log.v("Login response", responseString);
StringBuffer sb = new StringBuffer(responseString);
int index_OK = sb.lastIndexOf("OK");
Log.v("Login response", "index OK = " + index_OK);
int index_FAILED = sb.lastIndexOf("FAILED");
Log.v("Login response", "index FAILED = " + index_FAILED);
if (index_FAILED != -1) {
int index = sb.indexOf("=");
Log.v("Login response", "index = " + index);
int lungime = sb.length();
Log.v("Login response", "lungime = " + lungime);
String error_sk_reason = sb.substring(index + 1, lungime);
Log.v("Login response", "eroare = " + error_sk_reason);
error_code = 100 + Integer.parseInt(error_sk_reason);
Log.v("Login response", "error_code = " + error_code);
}
if (index_OK != -1) {
error_code = 0;
}
}
if (this.entity == null) {
return error_code;
}
this.entity.consumeContent();
return error_code;
} catch (ClientProtocolException e) {
e.printStackTrace();
Log.e("Sokker", "Client Protocol Exception " + e.toString());
errorCodeSkUpdate += 32;
return 20;
} catch (IOException e2) {
e2.printStackTrace();
Log.e("Sokker", "IO Exception " + e2.toString());
Log.e("Sokker", "Site www.sokker.org is down - connection refused");
errorCodeSkUpdate += 64;
return 10;
}
}
(edited)
(edited)
2021-01-02 23:50:22
Maybe try this url :

https ://sokker.org/start.php?session=xml
2021-01-03 00:03:18
its working fine for me - could you give me more details? what kind of browser, desktop or mobile?
2021-01-03 00:04:07
please check juytt tip - if it will not work, then i will ask Damian for help.
2021-01-03 00:04:56
Raul to Raul
we updated tactic editor, bugs like problems with saving or some players in different possitions that they where set up should be fixed - please check it out.
2021-01-03 00:07:39
This one also for Raul.

The url at code is OK, it worked on thursday prior to the update and it is currently working outside the app (postman), so I don't know where and what the problem is. The strange thing is that also SO is not working, so maybe there is something different at sokker. It shouldn't be something tricky (which it really makes it tricky haha), but discovering it is a challenge.

I cannot recompile the apk, but only check the code, unless someone knows who is the original developer and he/she provides the original source code, how-to, etc.
(edited)
(edited)