Notices
RX-8 Multimedia/Photo Gallery Share your pics,videos or links to them.

RX8Club Forum Application for Android BETA Open To All

Old Jan 16, 2014 | 09:17 AM
  #251  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
I've noticed that I get a 'connection timed out!' message alert when I run into that problem. Doing it again right now.

Posted From RX8Club.com Android App
Reply
Old Jan 16, 2014 | 09:18 AM
  #252  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
vs posting that gave me a 'connection timedout' (typo isn't mine) message wjen I dropped signal momentarily as I typed that

Posted From RX8Club.com Android App
Reply
Old Jan 16, 2014 | 09:24 AM
  #253  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Hrmm alright. Unfortunately I dont see this coming through my bugtracker. I'll see if I can recreate the problem tonight.

Thanks for taking the time to report this. (and i will fix the typo lol)
Reply
Old Jan 16, 2014 | 08:32 PM
  #254  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Originally Posted by RIWWP
Set the post count to 50 post per page, set last page in the app settings, and then try to get to the last page of B@W and Dumb Questions threads. I still can't get to the last page of either through your app. Even the page count is 1 short of what the web count is. Re-discovered this earlier this morning.
This is a tough one .. I can't for the life of me recreate this.

Can anyone else try this to see if they can recreate?

I wonder if there is a bug since you are a mod. If any other mods are using the app, give it a shot and see if it happens.
Reply
Old Jan 16, 2014 | 08:45 PM
  #255  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
Hmm. Anything I can do or log that might help?
Reply
Old Jan 16, 2014 | 08:53 PM
  #256  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Not sure if you are fimilar with any of the logging applications (aLogCat, CatLog, etc), but you could try and grab some logs for me the next time it happens (you can filter the logs by 'com.normalexception' and it should only show logs from the app)

In the interim I am working on creating an option to get some logs from the app so that users that experience issues can directly email me some logging information. Lets see what I can come up with. Will keep you posted.

Posted From RX8Club.com Android App
Reply
Old Jan 17, 2014 | 08:28 AM
  #257  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Btw for those who do want to grab some logs for me of a bug that I have trouble reproducing, or that hasn't been fixed yet, you can easily do so with logcat based applications. I don't include any persistant logging in my application and instead rely on android's logcat (number of reasons on this, main one being android security model) so you will have to rely on a third party app and root privs (if you have android 4+)

Anyway, here is an example of the output from CatLog with "com.normalexception" entered in the search field.

01-17 09:16:46.244 D/com.normalexception.forum.rx8club.activities.list. CategoryActivity(32678): ## Current State CATEGORY
01-17 09:16:46.244 D/com.normalexception.forum.rx8club.TimeoutFactory(3 2678): Ping Time: 1389968206
01-17 09:16:46.244 D/com.normalexception.forum.rx8club.TimeoutFactory(3 2678): Difference Time: 4338
01-17 09:16:46.244 D/com.normalexception.forum.rx8club.activities.list. CategoryActivity(32678): ## Current State NEW_POSTS
01-17 09:16:46.274 D/com.normalexception.forum.rx8club.utils.Utils(3267 8): Resolving https://www.rx8club.com/search.php?do=getnew
01-17 09:16:46.274 D/com.normalexception.forum.rx8club.utils.Utils(3267 8): to https://www.rx8club.com/search.php?do=getnew
01-17 09:16:49.534 D/com.normalexception.forum.rx8club.activities.threa d.ThreadActivity(32678): ## Current State THREAD
01-17 09:16:49.544 D/com.normalexception.forum.rx8club.TimeoutFactory(3 2678): Ping Time: 1389968209
01-17 09:16:49.544 D/com.normalexception.forum.rx8club.TimeoutFactory(3 2678): Difference Time: 4341
01-17 09:16:49.564 D/com.normalexception.forum.rx8club.utils.Utils(3267 8): Resolving rx-8-discussion-3/abs-dcs-light-deactivate-pulled-fuse-250588/
01-17 09:16:49.564 D/com.normalexception.forum.rx8club.utils.Utils(3267 8): to https://www.rx8club.com/rx-8-discuss...d-fuse-250588/
01-17 09:16:50.594 D/com.normalexception.forum.rx8club.utils.Utils(3267 8): Resolving https://www.rx8club.com/images/buttons/viewpost.gif
01-17 09:16:50.594 D/com.normalexception.forum.rx8club.utils.Utils(3267 8): to https://www.rx8club.com/images/buttons/viewpost.gif
01-17 09:16:50.594 D/com.normalexception.forum.rx8club.bitmap.Registere dBitmap(32678): Creating New Bitmap (4419)
01-17 09:16:50.594 D/com.normalexception.forum.rx8club.bitmap.BitmapDec oder(32678): Decoding https://www.rx8club.com/images/buttons/viewpost.gif
Now granted there is no error in the log trace above, I have desiged the application to log important (non-sensitive) data. As an aside, here is how you can understand these logs:

The application package name is "com.normalexception.forum.rx8club". Therefore any class that is within the app will start with that package name. This will make it nice and easy to filter logcat's for the logs relevant to the application
All log cat entries start with the logging level. They are as follows:

V/ (verbose)
D/ (debug)
I/ (information)
W/ (warning)
E/ (error)
Reply
Old Jan 18, 2014 | 03:35 PM
  #258  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
K, made life easier. Now all logging is done to a file instead of the main system buffer (logcat). In the preferences you can now export that log file, so you can email it to yourself, or to me, etc.
Reply
Old Jan 18, 2014 | 03:41 PM
  #259  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
k, I'll update later and send you some logs.
Reply
Old Jan 20, 2014 | 09:48 AM
  #260  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
I'm wondering if you fixed it. So far, I haven't been able to replicate...
Reply
Old Jan 20, 2014 | 10:15 AM
  #261  
ShellDude's Avatar
weeeeeeeeee
iTrader: (12)
 
Joined: Jun 2008
Posts: 4,200
Likes: 229
From: Outside Philadelphia
paimon you should check out ACRA
Reply
Old Jan 20, 2014 | 10:32 AM
  #262  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
shell, acra is nice but my Web Host doesn't support couchdb so for now I am using BugSense which is great

Posted From RX8Club.com Android App
Reply
Old Jan 21, 2014 | 08:56 AM
  #263  
ShellDude's Avatar
weeeeeeeeee
iTrader: (12)
 
Joined: Jun 2008
Posts: 4,200
Likes: 229
From: Outside Philadelphia
I use it in "offline" mode and receive reports via smtp. In my last use case it made no sense to do an apache/couch back end. If I did have always on I'd definitely go that route though.

Will have to check out bugsense..
Reply
Old Jan 21, 2014 | 09:04 AM
  #264  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Originally Posted by ShellDude
I use it in "offline" mode and receive reports via smtp. In my last use case it made no sense to do an apache/couch back end. If I did have always on I'd definitely go that route though.

Will have to check out bugsense..
Can you still do that with the latest changes to the GDocs framework? I thought that type of reporting was no longer supported with the policy changes?

Bugsense is really nice, the free version is all you need. It's perfect for a project like this imo.
Reply
Old Jan 21, 2014 | 06:08 PM
  #265  
ShellDude's Avatar
weeeeeeeeee
iTrader: (12)
 
Joined: Jun 2008
Posts: 4,200
Likes: 229
From: Outside Philadelphia
you have to setup your own couchdb instance and populate it from their remote DDL or w/e it is called in the couch world.

I thought about just doing the gdocs thing but since it's clearly near EOL and I'd have to build my own queuing agent I said screw it and let email clients do what they do best… queue up outbound mail

Checking out bug sense now.
Reply
Old Jan 23, 2014 | 10:00 AM
  #266  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Originally Posted by Robo56
Not sure if anyone else is having issues, but the vendor forum section is not loading any threads. I'm on an LG G2, and have the most recent update from the play store.

Other than that it's been solid for me!
Hey there, thanks for making note of this. This one is soemthing I will need to work on. Basically the reason you are seeing this is because there actually arent any threads in the vendor forums:

Vendor Forums - RX8Club.com

Instead that forum is filled with sub-forums for each vendor. To access these sub-forums, long press the vendor section in the app. A pop up will display all of the available sub-forums
Reply
Old Jan 23, 2014 | 02:44 PM
  #267  
Robo56's Avatar
Because Rotary
iTrader: (4)
 
Joined: Oct 2011
Posts: 0
Likes: 0
Oh great. Thanks! Not a huge deal, and I'm glad to see there's an in app workaround.
Reply
Old Jan 25, 2014 | 08:47 AM
  #268  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
I've noticed quite a few blank posted with nothing but the app's signature recently. You may want to add a check to make sure the post being submitted has content? The forum won't catch it due to the signature inserted by the app.
Reply
Old Jan 25, 2014 | 09:32 AM
  #269  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Good catch! I am out of state this weekend but will fix that as soon as I get back

Posted From RX8Club.com Android App
Reply
Old Jan 27, 2014 | 08:56 AM
  #270  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
paimon,

similar missing posts problem from this thread: https://www.rx8club.com/general-auto...ussion-248943/

25 posts on browser, 24 replied noted on thread link in-app, but only loads the first 4 posts.

Posted From RX8Club.com Android App
Reply
Old Jan 27, 2014 | 09:19 AM
  #271  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
I get a 'connection timed out' message trying to open the thread. maybe a problem loading a link or pic that crashes the load? I exported a log file, though you may want to make it easier to send logs. of the available options, only texting it to my work email seems to work.

Posted From RX8Club.com Android App
Reply
Old Jan 27, 2014 | 11:31 AM
  #272  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
It also appears that posting in a subscribed thread via this app removes the subscription. This thread's subscription for example...
Reply
Old Jan 27, 2014 | 03:43 PM
  #273  
paimon.soror's Avatar
Thread Starter
Registered
iTrader: (15)
 
Joined: Jun 2010
Posts: 7,560
Likes: 27
From: Between Cones
Ok thanks for reporting the subscription issue! Just found the problem and I believe I fixed it. Will also work on a better way to submit the error log.

Posted From RX8Club.com Android App
Reply
Old Jan 27, 2014 | 03:57 PM
  #274  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
Nevermind on the log option working. How can i get to it with my phone hooked up to my PC via USB? None of the export options that pop up work. It apparently strips the file on one end or the other as being risky?

Last edited by RIWWP; Jan 27, 2014 at 04:03 PM.
Reply
Old Feb 20, 2014 | 03:47 PM
  #275  
RIWWP's Avatar
Registered
iTrader: (2)
 
Joined: Oct 2007
Posts: 16,684
Likes: 267
From: Pacific Northwest
I submitted a log last night with the new option, and my sent box has the file attached correctly.

Same problem that I have been seeing with the timed out message on a partial thread page load. I see plenty of errors from the first connection attempts, which is normal for me if I jump around between connection sources between times that i open the app (like between wifi in the office, cell walking to the subway, no signal in the subway, new tower out the other end, then no signal on another train, then another new tower out the other end)

No errors shown with what I'm seeing though. It was at the end of here:
2014-02-19 18:45:37,436 [main] DEBUG com.normalexception.forum.rx8club.activities.list. CategoryActivity - ## Current State NEW_POSTS
2014-02-19 18:45:37,470 [AsyncTask #4] DEBUG com.normalexception.forum.rx8club.utils.Utils - Resolving https://www.rx8club.com/search.php?do=getnew
2014-02-19 18:45:37,472 [AsyncTask #4] DEBUG com.normalexception.forum.rx8club.utils.Utils - to https://www.rx8club.com/search.php?do=getnew
2014-02-19 18:45:43,518 [main] DEBUG com.normalexception.forum.rx8club.activities.list. ThreadTypeFactory - Caching Icon
2014-02-19 18:45:43,588 [main] DEBUG com.normalexception.forum.rx8club.activities.list. ThreadTypeFactory - Caching Icon
2014-02-19 18:45:43,612 [main] DEBUG com.normalexception.forum.rx8club.activities.list. ThreadTypeFactory - Caching Icon
2014-02-19 18:45:54,123 [main] DEBUG com.normalexception.forum.rx8club.activities.threa d.ThreadActivity - ## Current State THREAD
2014-02-19 18:45:54,143 [main] DEBUG com.normalexception.forum.rx8club.TimeoutFactory - Ping Time: 1392853554
2014-02-19 18:45:54,143 [main] DEBUG com.normalexception.forum.rx8club.TimeoutFactory - Difference Time: 20
2014-02-19 18:45:54,171 [AsyncTask #5] DEBUG com.normalexception.forum.rx8club.utils.Utils - Resolving new-member-forum-197/rx-8-symptoms-causes-249529/
2014-02-19 18:45:54,178 [AsyncTask #5] DEBUG com.normalexception.forum.rx8club.utils.Utils - to https://www.rx8club.com/new-member-f...causes-249529/
2014-02-19 18:45:58,888 [AsyncTask #5] DEBUG com.normalexception.forum.rx8club.activities.threa d.ThreadActivity - Thread only contains one page
2014-02-19 18:46:04,998 [main] DEBUG com.normalexception.forum.rx8club.activities.threa d.ThreadActivity - ## Current State THREAD
2014-02-19 18:46:05,019 [main] DEBUG com.normalexception.forum.rx8club.TimeoutFactory - Ping Time: 1392853565
2014-02-19 18:46:05,020 [main] DEBUG com.normalexception.forum.rx8club.TimeoutFactory - Difference Time: 31
2014-02-19 18:46:05,089 [AsyncTask #1] DEBUG com.normalexception.forum.rx8club.utils.Utils - Resolving new-member-forum-197/rx-8-symptoms-causes-249529/
2014-02-19 18:46:05,092 [AsyncTask #1] DEBUG com.normalexception.forum.rx8club.utils.Utils - to https://www.rx8club.com/new-member-f...causes-249529/
2014-02-19 18:46:07,330 [AsyncTask #1] DEBUG com.normalexception.forum.rx8club.activities.threa d.ThreadActivity - Thread only contains one page
Without thinking about it, I deleted the post that was causing me problems this morning, since it triggered a number of newbies all making their first post in the thread asking troubleshooting questions.


The log goes back to Jan 20th, so it covers the previous bug reports above too.
Reply

Thread Tools
Rate This Thread
Rate This Thread:
You have already rated this thread Rating: Thread Rating: 0 votes,  average.


All times are GMT -5. The time now is 09:03 AM.