blogsync FAQ
what is blogsync?
it is used to import wordpress posts into blogger.
how to use it?
- set jdk bin path in run.bat/run.sh
- execute run.bat/run.sh
what is new in blogsync 0.3?
The comments can be imported from wordpress rss xml file to blogger site now. However it can not preserve the published time of the wordpress comments. so the published time of your imported comments is just the time when you import.
what is new in blogsync 0.2?
add feature to import posts from exported wordpress rss xml file to blogger site.
which jdk version do I need to run blogsync?
You should use jdk1.5 or later.
how to add jdk bin path in path environment?
- windows
- says your java.exe is in directory c:\jdk1.5.0\bin
- set the following line in run.bat
set path=c:\jdk1.5.0\bin;%path%
- Mac or unix
- says your java is in directory /path/to/your/java
- set the following line in run.sh
export PATH=/path/to/your/java:$PATH
how do I know which version of jdk I am using?
open a terminal, type "java -version". you should get something like this:
java version "1.5.0_12"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_12-b04)
Java HotSpot(TM) Client VM (build 1.5.0_12-b04, mixed mode)
how to run run.bat/run.sh in command line?
- windows
open a command window, type:
cd e:\path\to\your\run.bat run.bat
- Mac or unix
open a terminal, type:
cd /path/to/your/run.sh sh run.sh
when run run.sh, it is opened by my editor, what should I do?
please run run.sh in command line.
after clicking on run.bat/run.sh, there was nothing happend, what should I do?
run run.bat/run.sh in command line so that find what's going wrong in the terminal?
It prompts "java: command not found", what's going wrong?
java is not in your path, please add jdk bin path in your path environment.
Is there some limitation when importing posts?
Yes. Due to Google blogger's limitation, you can only import at most 50 entries within one day. If you want to import more, please try it after 24 hours.
why do I get Exception in thread "main" java.lang.NoClassDefFoundError: org/easter/blogsync/BlogSync
?
if you are on Mac or unix, please make sure you have read permission on blogsync/build/blogsync.jar file
if not, open a terminal and type:
chmod 744 /path/to/your/blogsync/build/blogsync.jar
why do I get Failed to create input stream: Server returned HTTP response code: 403 for URL: http://mydomain.com/wordpress/xmlrpc.php
?
- if you installed a plugin called Enforce www. Preference, it would affect the path to your xmlrpc.php file, so deactivated it first.
- if you enabled mod_security on apache, it would block access to xmlrpc.php, so add this to your .htaccess file:
<Files xmlrpc.php> SecFilterInheritance Off </Files>
why do I get cannot log into blogger account: Invalid Credentials
?
- if you enable "Import Comment", Please disable it. This function can not be used now. It is not developed by public Google API.
- if you are using Google Custom Domain, blogsync can not work fine now. Because Google Custom Domain is not currently supported by Google blogger API depended on by blogsync. see this link: http://groups.google.com.pk/group/bloggerDev/browse_thread/thread/2ea2c5ce8ac09f0f
what should I do if there is still something wrong after checking the above?
Please email me the error.log file in the blogsync directory if you would like.