Author: Dan
Date: 13-01-05 21:32
JunkMale wrote:
> I agree. I found them in searches and at the URL above.
> However, I did not find horde at
> http://www.freshports.org/www/?page=8 nor did I find imp at
> http://www.freshports.org/mail/?page=6.
The problem was caused by entries missing from the ports_categories table. I added the missing values with this SQL:
insert into ports_categories
select id, category_id
FROM ports_active PA
WHERE NOT EXISTS
(select * from ports_categories PC where
PC.port_id = PA.id
AND PC.category_id = PA.category_id);
[This is recorded here more for me, than for public consumption]
Now I'll look into why you cannot add these ports to your watch list.
|
|