|
2015-02-23
, 14:34
|
Posts: 242 |
Thanked: 169 times |
Joined on Nov 2011
|
#462
|
After this message yappari has been without crash almost 21 hr and still alive. The connection has been home wifi all time, now I will move to work and see what happen, changing connection from wifi to lost connection, then to 3G and in the office wifi again.
See you later.
|
2015-02-24
, 09:54
|
Posts: 24 |
Thanked: 10 times |
Joined on Mar 2012
@ Spain
|
#463
|
After this message yappari has been without crash almost 21 hr and still alive. The connection has been home wifi all time, now I will move to work and see what happen, changing connection from wifi to lost connection, then to 3G and in the office wifi again.
See you later.
|
2015-02-24
, 12:33
|
|
Posts: 1,023 |
Thanked: 4,421 times |
Joined on Feb 2010
@ Argentina
|
#464
|
void Client::read() { connectionMutex.lock(); while (socket->bytesAvailable() > 0) { try { connection->read(); } catch (IOException &e) { lastError = e.toString(); Utilities::logData("read(): There was an IO Exception: " + lastError); connectionClosed(); showStatus(lastError + " Retrying in 10 seconds.."); break; } catch (ProtocolException &e) { lastError = e.toString(); Utilities::logData("read(): There was a Protocol Exception: " + lastError); connectionClosed(); showStatus("Protocol Exception. Retrying in 10 seconds..."); break; } } connectionMutex.unlock(); }
|
2015-02-24
, 14:46
|
Posts: 7 |
Thanked: 0 times |
Joined on Feb 2015
|
#465
|
Obviously something is wrong on your device, as others do not see this. Try to get some idea of why it crashes.
In a terminal, start yappari (it should be in the path but to avoid issues): /opt/maemo/usr/bin/Yappari (return)
See if an error is printed upon the crash.
|
2015-02-24
, 20:11
|
Posts: 1,378 |
Thanked: 1,604 times |
Joined on Jun 2010
@ Göteborg, Sweden
|
#466
|
sorry i tried in terminal /opt/maemo/usr/bin/Yappari (return)
it showing not found..
kindly can u plz tell how to check or what is the solution ..as i am not much a techque guy..so dont knw much use of terminal and its coding. thnx
|
2015-02-25
, 10:16
|
Posts: 7 |
Thanked: 0 times |
Joined on Feb 2015
|
#467
|
You know that the (return) is the enter key?
Because if Yappari is installed, it will run with the command:
/opt/maemo/usr/bin/Yappari
if you follow it with an "enter" also known as return.
|
2015-02-25
, 15:29
|
Posts: 242 |
Thanked: 169 times |
Joined on Nov 2011
|
#468
|
@ceene:
About segmentation fault, please try this:
Code:void Client::read() { connectionMutex.lock(); while (socket->bytesAvailable() > 0) { try { connection->read(); } catch (IOException &e) { lastError = e.toString(); Utilities::logData("read(): There was an IO Exception: " + lastError); connectionClosed(); showStatus(lastError + " Retrying in 10 seconds.."); break; } catch (ProtocolException &e) { lastError = e.toString(); Utilities::logData("read(): There was a Protocol Exception: " + lastError); connectionClosed(); showStatus("Protocol Exception. Retrying in 10 seconds..."); break; } } connectionMutex.unlock(); }
|
2015-02-25
, 17:14
|
Posts: 207 |
Thanked: 967 times |
Joined on Apr 2014
@ Madrid, Spain
|
#469
|
|
2015-02-25
, 17:21
|
Posts: 1,378 |
Thanked: 1,604 times |
Joined on Jun 2010
@ Göteborg, Sweden
|
#470
|
hi,thanks for ur help..i got the below in terminal once i enterd the command
segmentation fault
and also yappari opens and crash again..thanks
See you later.