Re: My RSS Feeds get stuck on status 'Updating'
Postby Arconer » Thu Jan 03, 2013 10:15 pm
Hi,
I had this problem a few times and the only solution I had was to remove the feed and recreate it with all the filters...
But I finally found the solution!
Here is what I have done (DSM 4.1 on ds411j):
Close all Download Station windows in DSM.
Use telnet to connect to your diskstation.
Access the Download Database using PostgreSQL interactive terminal
Code: Select all
/usr/syno/pgsql/bin/psql -t -A -U admin -d download
Update the status of the feeds by setting is_updated to false:
Code: Select all
UPDATE rss_feed SET is_updating = 'f';
Quit the PostgreSQL interactive terminal
Code: Select all
\q
Reopen Download Station in DSM and go to the RSS tab and press the Update all button.
Tadam! It should work
Hope that helps!
Arconer