Site is broken after transferring to adminer

The problem
Chrome’s console, or Safari’s or Firebug for Firefox are essential tools for a developer.
Here’s a snapshot that shows exactly what’s going wrong with your site: you still have urls that point to the old address.
error snapshot

Observation
Adminer is a wonderful tool, but if your server don’t have PhpMyAdmin that’s really a bad sign and may lead to other issues down the road.

Manual migration
Don’t do a normal search/replace in your database, as there are options that are serialized and simply break if the strings don’t have exactly the same length.

Import the original database again (with the old address).
Upload this script (Safe Search and Replace on Database with Serialized Data) side by side with your wp-config.php.
When you run it, go ahead with the default options. Make sure you are selecting the right tables (in case you have others living in the same DB).
Now search and replace the old with the new url (without the last forward slash).

I’m not sure if that vslider/timthumb address are recorded with url escaping in the database.
Probably not, but if they are, search for:
http%3A%2F%2Fdev.freelanceu.net%2Fmjl%2Fclickzac%2F
and replace with:
http%3A%2F%2Fkjrias.com%2F

These are the old and new urls with a forward slash at the end.

[update]

Even when using BackupBuddy, I run the mentioned script, as for me BB don’t work 100% when migrating.

Important: first run the search/replace with http:// in the string, and run it a second time without it.