zuotian
Forum Replies Created
-
Forum: Plugins
In reply to: [Enhanced BibliPlug] Can't add new referencesCan you try the following?
1. back up your data by going to bibliplug->export, and download all references in the ris format.
2. go to settings->bibliplug, set debug to true, save it.
3. on the same page, first delete all references, and then upgrade the schema.If the above does not solve your problem, can you give me access to your database?
Thanks,
ZuotianForum: Plugins
In reply to: [Enhanced BibliPlug] Can't add new referencesCan you check the database version on the bibliplug options page? It is most likely that you have an out dated database schema. A manual schema upgrade should fix the issue.
Forum: Plugins
In reply to: [Enhanced BibliPlug] Importing Custom Fields with Citations.Hi Hugh,
Thanks for your comments.
1. This looks very interesting, but with limited time on my part, I don’t think this is something we can support in the foreseeable future.
2. Custom fields will probably be imported as notes, and will not be used in most of the display senarios.
3. I do not use CiTO in the shortcode at this moment, because the main senario when we developed this plugin was to show a reference list on project/user profile pages, thus not citations per se. What you mentioned is an interesting case, and I will keep it in mind as a new feature.
4. References/citations are not stored in post/page. They are stored in custom database tables. When migrating your data out of WP, the best practice is to use the export feature.Cheers,
ZuotianHi,
Thanks for reporting the issue. It is now fixed in 1.3.8.
Hi Blair,
Your suggestion of using “edit_others_posts” makes sense. I will include the fix in the next release.
As of ref_cat url, it is not working because bibliplug references are not stored in the wordpress wp_posts table. Similarly, you cannot simply browse to a reference as a wp page/post because it is not stroed in wp_table. I can imagine there are workarounds to enable these features, but I have not had time to investigate it yet. If you have good ideas, or come across a solution, you can contact me via email.
Thanks again for your feedback.
Hi Blair.
The one in class-bibliplug-reference-table.php is by desgin, so that only administrator can see all reference, and authors can only see references where he/she is in the author list.
Hi,
Thanks for your feedback.
1) During Zotero synchronization, EBP does try to parse the date and it used the default php function date_parse. However, Zotero’s date field is really just a text field with no validation/restriction on the date format, so not all user input can be parsed by EBP. My suggestion would be either format your date field in zotero according to the format from the link above, or as what you have done, add year manually. If you know a better way to fix this issue, please let me know and I would be happy to add it to EBP.
2) I would need more information to help you. Can you go to the bibliplug setting page, set debug to true, and then sync it again? Please let me know what (error/warning) message you see.Thanks again.
ZuotianForum: Plugins
In reply to: [Enhanced BibliPlug] [Plugin: Enhanced BibliPlug] Plugin Admin IconFixed in 1.3.6.
Hi Blair,
Yes, you are right about the fix. This issue is now resolved in release 1.3.6.
Thanks,
ZuotianForum: Plugins
In reply to: [Enhanced BibliPlug] [Plugin: Enhanced BibliPlug] Reference '-1' not found.Hi,
This bug is now fixed in release 1.3.6.
Thanks,
ZuotianForum: Plugins
In reply to: [Enhanced BibliPlug] [Plugin: Enhanced BibliPlug] ModificationsThat sounds great. You can find my email on top of bibliplug.php file.
Thanks,
ZuotianForum: Plugins
In reply to: [Enhanced BibliPlug] [Enhanced BibliPlug] Fatal errorHi Broos,
Can you tell me a little bit more on your server setup? Are you using a wordpress MU installation with subdomain?
Currently Bibliplug is under testing for MU with subfolder settings.
I have a fix in mind, but I cannot replicate your error, thus cannot be sure the fix will resolve the issue. If you are comfortable with code, please try replace line 35 of enhanced-bibliplug/bibliplug.php
define('BIBLIPLUG_DIR', ABSPATH . 'wp-content/plugins/enhanced-bibliplug/');to
define('BIBLIPLUG_DIR', WP_PLUGIN_DIR . '/enhanced-bibliplug/');Or, I can send you a patch for the plugin.
Thanks,
ZuotianForum: Plugins
In reply to: [Enhanced BibliPlug] [Plugin: Enhanced BibliPlug] Multiple tags not workThank you for reporting this issue. It is fixed now with bibliplug version 1.3.1.
Forum: Plugins
In reply to: [Enhanced BibliPlug] [Enhanced BibliPlug] Fatal errorHi,
This problem has been fixed in 1.2.7 release.
Thanks.
Forum: Hacks
In reply to: tinymce setup issue in pluginThanks for the links.
I found out the issue is caused by entity encoded
$profileuser->author_bio. I added the decoding function, updated to the latest wordpress version, and everything works fine now.