All being well I now have a blog working using Typo, instead of Wordpress 2 - and no broken links!
We'll see.
Now to make sure that my server load doesn't rise through the roof this time.
For future reference importing entries from Wordpress2 -> Typo will almost certainly give you this error:
1 2 3 4 5 |
const_missing': uninitialized constant TestRequest (NameError)
from ./db/converters/../../config/../app/models/blog.rb
...
..
. |
This can be fixed by changing:
1 2 3 4 5 |
def really_send_pings(serverurl = blog.server_url, articleurl = nil) return unless blog.send_outbound_pings ... ... end |
To this:
1 2 3 |
def really_send_pings(serverurl = blog.server_url, articleurl = nil) return end |