I received an email from issuecrawler.net saying "The crawl entitled 'Egyptian blogs' has completed. Please go to the issuecrawler site to see the results." I then logged into issuecrawler.net, and I can't find the results to that crawl anywhere. No networks are listed in the Network Manager tab.
--
BenjaminGeer? - 17 Oct 2007
It seems this has to do with the crawler publishing process, in the database in the im_network table, status should be set on 1 but is sometimes left to 0.
On 08-05-08 the crawls with this problem were made visible, if this problem persists we should look into it further.
issuemaps=> select id, title from im_network where crawl_status = 2 and status = 0 order by id;
id | title
--------+----------------------------------------------
311012 | Biodiv
310988 | Sep11 (no indymedia)
310960 | Test
310958 | Billc30/c288*2,2#500ceilings
310919 | Forum Social do MERCOSUL 2008
310343 | Credit Subprime 2
310341 | BBB8-Blogs Tecnorati-Imprensa-15d
310194 | GQ2
309962 | rede de atores soja rr 4 farsul e monansanto
309588 | PS Snowball (T to Z)
309587 | PS Snowball (R to S)
309586 | PS Snowball (G to I)
309585 | PS Snowball (D to F)
309584 | PS Snowball (B to C)
309572 | PS Snowball (M)
309570 | PS Snowball (J to L)
309385 | Egyptian blogs
308304 | Femcamp issue
308230 | china+energy security
308200 | Ada 2
307396 | Republicans (Top200)
306658 | wesleyan-middletown
305306 | bird flu google top 30_german
304550 | EIB and GRI
304371 | antidementiva
304360 | Sudan conflict map
304358 | myself
298036 | Chinese Bloggers
297722 | Boni
297068 | September 11 Truth Movement (seed A)
(30 rows)
issuemaps=> update im_network set status = 1 where id in (select id from im_network where crawl_status = 2 and status = 0);
UPDATE 30