Comments

Optimising Grandad — 10 Comments

  1. I’m assuming you imported the database via SQL instead of WordPress?

    From the headrambles dashboard export your entries to a file.

    Then setup grandad.ie from scratch again and import the entries you downloaded.

  2. I tried that, Robert. There is a limit on an import file size of 5Mb and the exported file is 22.4Mb! Any workaround for that?

  3. The last issue, the “don’t” instead of “don’t” issue, is a character set thing. UTF-8 allows characters to take up more than one byte (since there’s over 100000 different ones), whereas latin-1 assumes every letter is one byte. So if you display a UTF-8 string as if it were Latin-1, instead of seeing the single character you see each byte individually.

    You have to make sure that you connect to MySQL using the same encoding both times, and that the database and tables all have the same character set. It’s possible that, if you’re using two different machines, that they use different character sets by default.

    Hope that makes some sense 🙂

  4. I assume you’ve checked that the character sets are set the same for the old and the new databases?

    If your using a VPS, install PHPMyAdmin and you’ll be able to select the encoding via the drop down list.

  5. Andrew: The first thing I thought of when I saw those characters was the encoding. Both however are set to UTF-8. This is what has me baffled!

    As for the too large file – it won’t recognise a zipped file. It has to be XML. 🙁

  6. Welcome Darragh! Both are on the same VPS and phpMyAdmin is installed. The coding, as I said is the same on both.

    Update:
    I tweaked the .htaccess file and managed to copy the contents across using the XML export/import. The problem persistes!!

  7. Head Rambles being about the same age as my effort I would have to believe that your WP DB tables originally started out as Latin-1 like mine did. And when I had to rebuild JT I did some hunting around and found out that going into my MySQL DB tables and dumping them all using an UTF8 format wasn’t enough. I ended up having to manually convert each table to UTF8 as well which I actually accomplished on the old site before I cleaned things up and imported them over to the new site (and more cleaning before going live).

    This is Alex King’s post where I got the instructions from (not only from the post itself but I had to read down the comments as well before I understoof what to do).

    http://alexking.org/blog/2008/03/06/mysql-latin1-utf8-conversion

    Not that you’ll want to start mucking around again but this can be done on a live site, you just have to take it down for a bit during the re-import when your done converting.

    Of course if you’ve already done this…please disregard.

Leave a Reply to Richard Cancel reply

Your email address will not be published. Required fields are marked *

HTML tags allowed in your comment: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>