[7. June 2013] Youporn available now | [19. April 2013] A-400 Advanced Network Setup | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 RC1 [13 June 2013] | A-200/A-210 RC1 [13 June 2013]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: 1 Guest(s)
Post Reply 
[NewzBook] 1.2.8 Newzbin Bookmark + Mobile Search Utility + NZBget interface
12-02-2009, 08:18 PM
Post: #136
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(12-02-2009 07:25 PM)tocheeba Wrote:  Awesome, the NZBGET section works now Smile You're been VERY helpful - thank you!

One suggestion for possible future release:
Progress bar on nzbget page (similar to the blue disk space bar). That's the only feature I miss from the original NZBGET page. I would use newzbook to replace nzbget completely with this option Smile Already trying to do it, but I like the progress bar haha. Also, if I set something to download and go to bed, my girlfriend can now look at the webservice and see a progress bar of when it's complete.

No big deal if its not possible - I know some people might not want it (maybe an option to enable it?).

Thanks so much for all of your help!!!
Good to hear the NZBget section is working now! What did you do to get it running?

I agree that the progress bar is a big missing feature. I'll have to see if I can think of a way to calculate the % complete of a download since as far as I know, NZBget doesn't serve that information up via command line. I also need to add a calculation to give an estimate of the time left on the active download as that's one thing that bothers me about the current interface.

I tweaked the iPhone UI some more to come up with the 1.2.6.5 prerelease - let me know how it works on your iPhone.
[Image: 2009-12-02_131203.png][Image: 2009-12-02_131236.png][Image: 2009-12-02_131335.png][Image: 2009-12-02_131532.png]
PS. There is an NZBget 0.7.0 out on CSI if you are looking for an updated version. I think the only thing that requires 0.7.0 in NewzBook's NZBget Micro App is the History section, which I left disabled in the default NewzBook configuration.

NewzBook - Automatic Newzbin bookmark fetcher, Newzbin search, and NZBget interface (mobile phone friendly)
http://boshdirect.com - my website / blog about technology, automotive, and general interests.
Find all posts by this user
Add Thank You Quote this message in a reply
12-02-2009, 10:43 PM
Post: #137
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
Thanks! Text is a lot bigger and its easier to control and read now on the iPhone. Maybe shrink the text just a tad, but its a LOT better than it was before!
Find all posts by this user
Add Thank You Quote this message in a reply
12-27-2009, 03:43 AM
Post: #138
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
Its a great program. Thank you. But Ive been having an issue where my hard drive spins up every 30 minutes (when it checks Newzbin), then spinsdown. I'm worried about the constant cycling of it over time. Is there a way to make it not spinup the hard drive each time it checks Newzbin?

Thanks again
Find all posts by this user
Add Thank You Quote this message in a reply
12-30-2009, 02:49 AM
Post: #139
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(12-27-2009 03:43 AM)gregg098 Wrote:  Its a great program. Thank you. But Ive been having an issue where my hard drive spins up every 30 minutes (when it checks Newzbin), then spinsdown. I'm worried about the constant cycling of it over time. Is there a way to make it not spinup the hard drive each time it checks Newzbin?

Thanks again
Off the top of my head, I'm not really sure. I'm sure I would need to make some code changes on my side, but I don't really know where to start. Do you know of any other applications on the popcornhour that run on a schedule but don't spin up the drive? I might be able to take a look at some of them and see if I can figure out a way to reverse-engineer what they are doing.

I figure it has to be possible - the code just needs to stay loaded in memory so that each time the application checks for new bookmarks it can run from memory instead of off the hard-drive.

NewzBook - Automatic Newzbin bookmark fetcher, Newzbin search, and NZBget interface (mobile phone friendly)
http://boshdirect.com - my website / blog about technology, automotive, and general interests.
Find all posts by this user
Add Thank You Quote this message in a reply
12-30-2009, 02:59 AM
Post: #140
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(12-30-2009 02:49 AM)joshua.lyon Wrote:  Off the top of my head, I'm not really sure. I'm sure I would need to make some code changes on my side, but I don't really know where to start. Do you know of any other applications on the popcornhour that run on a schedule but don't spin up the drive? I might be able to take a look at some of them and see if I can figure out a way to reverse-engineer what they are doing.

I figure it has to be possible - the code just needs to stay loaded in memory so that each time the application checks for new bookmarks it can run from memory instead of off the hard-drive.

I guess another solution would be to manually initiate the Newzbin search. Will giving the timer value a "0" turn automatic checking off or just cause problems?

Thanks again.
Find all posts by this user
Add Thank You Quote this message in a reply
12-30-2009, 03:18 AM
Post: #141
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(12-30-2009 02:59 AM)gregg098 Wrote:  I guess another solution would be to manually initiate the Newzbin search. Will giving the timer value a "0" turn automatic checking off or just cause problems?

Thanks again.
I'm honestly not sure what putting the 0 would do, but I don't think it's a good idea. You could be asking the system to execute the command every */0 ...which is asking the system to divide by 0 which isn't possible. Here's a snippet from wikipedia better explaining the function:
wikipedia Wrote:There is also an operator which some extended versions of cron support, the slash ('/') operator (called "step"), which can be used to skip a given number of values. For example, "*/3" in the hour time field is equivalent to "0,3,6,9,12,15,18,21".

So "*" specifies 'every hour' but the "*/3" means only those hours divisible by 3. The meaning of '/' specifier, however, means "when the modulo is zero" rather than "every". For example, "*/61" in the minute will in fact be executed hourly, not every 61 minutes.

If you don't want NewzBook to automatically check for bookmarks at all, the better option would be to comment out the cron job. You can do this by modifying the appinfo.json and cronchecker.sh files and adding a hash sign "#" before the cron entry.

In appinfo.json change line 7 from:
Code:
crontab="*/30 * * * * #PATH#/crontab.sh",
To:
Code:
crontab="#*/30 * * * * #PATH#/crontab.sh",

In cronchecker.sh change line 16 from:
Code:
echo "*/30 * * * * /share/Apps/NewzBook//crontab.sh #APPINIT_NewzBook#" >> /tmp/cronentries.a
To:
Code:
echo "#*/30 * * * * /share/Apps/NewzBook//crontab.sh #APPINIT_NewzBook#" >> /tmp/cronentries.a

After you've modified the above files, you will need to manually restart (or stop / start) NewzBook from the "Installed" tab of CSI.

NewzBook - Automatic Newzbin bookmark fetcher, Newzbin search, and NZBget interface (mobile phone friendly)
http://boshdirect.com - my website / blog about technology, automotive, and general interests.
Find all posts by this user
Add Thank You Quote this message in a reply
12-31-2009, 09:59 PM
Post: #142
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
hi mate - been using this great app for a few weeks now but for some reason today my file manager has stopped working - i tried reboots etc with no joy i just get a white screen with nothing on atall ???

any help would be spot on cheers
happy new year all
Find all posts by this user
Add Thank You Quote this message in a reply
01-01-2010, 10:12 PM (This post was last modified: 01-01-2010 10:14 PM by joshua.lyon.)
Post: #143
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(12-31-2009 09:59 PM)eddy no1 Wrote:  hi mate - been using this great app for a few weeks now but for some reason today my file manager has stopped working - i tried reboots etc with no joy i just get a white screen with nothing on atall ???

any help would be spot on cheers
happy new year all
Upgrade to the latest version, 1.2.6.5, from my post above using the same method you have used every other time.

If you still have trouble, I would recommend reading the last couple pages of this thread as tocheeba had a similar issue and we went through the fix already.

NewzBook - Automatic Newzbin bookmark fetcher, Newzbin search, and NZBget interface (mobile phone friendly)
http://boshdirect.com - my website / blog about technology, automotive, and general interests.
Find all posts by this user
Add Thank You Quote this message in a reply
01-02-2010, 09:30 PM
Post: #144
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
I changed my time values to 1440 so that it would check once a day, but since changing this, it has been checking every hour in stead of every 30 minutes. Any ideas why changing both "30"'s to "1440" would make it default to hourly checks?
Find all posts by this user
Add Thank You Quote this message in a reply
01-03-2010, 06:22 AM
Post: #145
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(01-02-2010 09:30 PM)gregg098 Wrote:  I changed my time values to 1440 so that it would check once a day, but since changing this, it has been checking every hour in stead of every 30 minutes. Any ideas why changing both "30"'s to "1440" would make it default to hourly checks?
Yes, because that's what you asked it to do. Read the wikipedia quote from my post above. Google 'cron' for more information.

NewzBook - Automatic Newzbin bookmark fetcher, Newzbin search, and NZBget interface (mobile phone friendly)
http://boshdirect.com - my website / blog about technology, automotive, and general interests.
Find all posts by this user
Add Thank You Quote this message in a reply
01-21-2010, 09:21 PM
Post: #146
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
Hi Joshua, been using this successfully on my A110, excellent thanks. However I have a strange problem when it fetches nzb from newzbin. It seems to download two versions of the same file, but file them in a differently named directory. Any thoughts? cheers.
Find all posts by this user
Add Thank You Quote this message in a reply
01-24-2010, 05:08 PM (This post was last modified: 01-24-2010 06:04 PM by joshua.lyon.)
Post: #147
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(01-21-2010 09:21 PM)apachesquirrel Wrote:  Hi Joshua, been using this successfully on my A110, excellent thanks. However I have a strange problem when it fetches nzb from newzbin. It seems to download two versions of the same file, but file them in a differently named directory. Any thoughts? cheers.

What do you mean by two versions of the file? Do you mean two NZBs? Or two copies of the file-package that the NZB references (eg. the end content that NZBget downloads)? The latter is more likely to be an NZBget or Unpak.sh issue rather than an issue with NewzBook.

Can you give examples of the different names of the duplicate directories?

NewzBook - Automatic Newzbin bookmark fetcher, Newzbin search, and NZBget interface (mobile phone friendly)
http://boshdirect.com - my website / blog about technology, automotive, and general interests.
Find all posts by this user
Add Thank You Quote this message in a reply
01-29-2010, 01:13 AM
Post: #148
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
Hi there I'm new user with a c200 3 weeks old
using current firmware & internal sata hard drive

i am using NZBget 0.7.0.357 installed via CSI
have installed your recent newzbook via gaya CSI & have successfully (I think!) configured it with my newzbin account.

I can search then download

my only issue is that it doesn't show my download in progress on the nzbget tab. I used NZBget Web Interface to confirm I actually am downloading.

any help or direction to solution would be appreciated.

thanks for your time.

My Stuff
MNT C-200 (1TB 3.5HD)/ Panasonic TX-P42G15 Plasma/ PS3 40GB / Wii / Sky+SD
Netgear GS108 Gigabit switch & DG834GT ADSL Router/
Marantz AV surround Amp (old)/ Tannoy 605II Speakers (old)
Find all posts by this user
Add Thank You Quote this message in a reply
01-29-2010, 01:32 AM
Post: #149
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(01-29-2010 01:13 AM)stokesie Wrote:  Hi there I'm new user with a c200 3 weeks old
using current firmware & internal sata hard drive

i am using NZBget 0.7.0.357 installed via CSI
have installed your recent newzbook via gaya CSI & have successfully (I think!) configured it with my newzbin account.

I can search then download

my only issue is that it doesn't show my download in progress on the nzbget tab. I used NZBget Web Interface to confirm I actually am downloading.

any help or direction to solution would be appreciated.

thanks for your time.
You have to make sure the configuration of NewzBook is set correctly. I've created a number of default configurations (the buttons at the top of the configuration page), but you may have to manually change the NZBget configuration paths if you have a special setup.

NewzBook - Automatic Newzbin bookmark fetcher, Newzbin search, and NZBget interface (mobile phone friendly)
http://boshdirect.com - my website / blog about technology, automotive, and general interests.
Find all posts by this user
Add Thank You Quote this message in a reply
01-29-2010, 01:51 AM (This post was last modified: 01-29-2010 01:57 AM by stokesie.)
Post: #150
RE: [NewzBook] 1.2.6beta Newzbin Bookmark + Mobile Search Utility + NZBget interface
(01-29-2010 01:32 AM)joshua.lyon Wrote:  You have to make sure the configuration of NewzBook is set correctly. I've created a number of default configurations (the buttons at the top of the configuration page), but you may have to manually change the NZBget configuration paths if you have a special setup.

sorted it
for anyone else using NZBget 0.7.0.357
in newzbook config:-
NZBget Configuration
Application Path: /share/Apps/NZBget/bin
Configuration Path: /share/Apps/NZBget/.nzbget

now it works fine

My Stuff
MNT C-200 (1TB 3.5HD)/ Panasonic TX-P42G15 Plasma/ PS3 40GB / Wii / Sky+SD
Netgear GS108 Gigabit switch & DG834GT ADSL Router/
Marantz AV surround Amp (old)/ Tannoy 605II Speakers (old)
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  nzbget does not download twentefan 1 119 Yesterday 12:49 PM
Last Post: chris57
  NZBget daemon dying raven219 0 108 06-15-2013 03:54 PM
Last Post: raven219
  NZBGet holding onto connections? wanstronian 0 175 06-07-2013 05:57 PM
Last Post: wanstronian
  Can't save NZBGet Web Interface settings jurjongo 2 734 05-29-2013 10:18 PM
Last Post: jhmiller
Star NZBGet 9.0/10.0 discussion hugbug 473 43,590 05-21-2013 06:45 PM
Last Post: say170
  NZBGet download x pars instead of one/all/none shazada 0 576 04-07-2013 03:46 PM
Last Post: shazada
  a300 Web Interface problems unbrained 4 797 03-21-2013 09:37 AM
Last Post: unbrained
  NZBGet on the PCH/NMT Manual and F.A.Q. Philos 147 178,009 03-10-2013 11:33 AM
Last Post: blobe
Tongue Script to send NZB(url) to NZBGet using iOS mrmaximum 18 7,271 03-05-2013 12:23 AM
Last Post: rvdet
  NZBGET postprocess to specified folder Goldrolly 2 1,181 02-15-2013 06:09 PM
Last Post: jhmiller

Forum Jump: