Hello coders, I almost finished the migration from Wordpress to Mezzanine. I used the wordpress import to populate the database; I was testing the urls and I notice this:
In [1]: from django.contrib.redirects.models import Redirect In [2]: Redirect.objects.all().count() Out[2]: 304 In [3]: from mezzanine.blog.models import BlogPost In [4]: BlogPost.objects.all().count() Out[4]: 674 I have 674 articles, but less than the half have a redirects and I can't deploy until I get all in the redirects. The questions: 1) Did I find bug in the wordpress import? 2) Do I have to write a script to parse the wordpress xml to check every post or this is a known issue and you have already a trick to solve it? Thanks -- Karim N. Gorjux -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
