|
List Info
Thread: Blog entry publish date and time
|
|
| Blog entry publish date and time |

|
2006-09-25 18:49:44 |
|
I installed the latest blojsom.war on Sept 13, from http://sourceforge.net/project/showfiles.php?group_id=72754&package_id=125988
, and have it running on the most recent Tomcat app server. I share your guess about category confusion. Maybe it's a software problem with the category lookup failing, yielding "null".
On 9/25/06, David Czarnecki <blojsom.com">david blojsom.com> wrote:
Just curious, what version of blojsom are you running? It seems like a problem with the blog category when blojsom is trying to write the entry meta-data.
Hi Cliffano.
Thanks for the reply, which helped me get much closer to the source of the problem. I looked at my log (excerpt below) and sure enough, something is going wrong. The meta-data (.meta file) is not getting written successfully, and that's where the date gets stored. Looking at an execution backtrace, I see that blojsom tries to write meta-data to a non-existent directory "null" under my blog directory. As an experiment, I created a "null" subdirectory. Then the meta-data does get written there, but it's not found when displaying the blog entry.
Has anyone seen this problem? Any suggestions?
- Conal
Sep 25 10:48:43 DEBUG [http-10100-Processor21] servlet.BlojsomServlet - blojsom plugin execution: org.blojsom.plugin.admin.EditBlogEntriesPlugin
Sep 25 10:48:43 DEBUG [http-10100-Processor21] admin.EditBlogEntriesPlugin - User requested update blog entry action
Sep 25 10:48:43 DEBUG [http-10100-Processor21] admin.EditBlogEntriesPlugin - Blog entry id: Blog-conversion.html
Sep 25 10:48:43 DEBUG [http-10100-Processor21] language.LanguageSelectionPlugin - Handling process blog entry event
Sep 25 10:48:43 DEBUG [http-10100-Processor21] language.LanguageSelectionPlugin - Current language: null
Sep 25 10:48:43 DEBUG [http-10100-Processor21] markup.MarkupSelectionPlugin - Handling process blog entry event
Sep 25 10:48:43 DEBUG [http-10100-Processor21] markup.MarkupSelectionPlugin - No markup selections available
Sep 25 10:48:43 DEBUG [http-10100-Processor21] technorati.TechnoratiTagsPlugin - Handling process blog entry event
Sep 25 10:48:43 DEBUG [http-10100-Processor21] technorati.TechnoratiTagsPlugin - Added/updated tags:
Sep 25 10:48:43 DEBUG [http-10100-Processor21] common.RSSEnclosurePlugin - Handling process blog entry event
Sep 25 10:48:43 DEBUG [http-10100-Processor21] common.RSSEnclosurePlugin - Current enclosure: null
Sep 25 10:48:43 DEBUG [http-10100-Processor21] admin.EditBlogEntriesPlugin - Moving entry from / to null
Sep 25 10:48:43 DEBUG [http-10100-Processor21] blog.FileBackedBlogEntry - Created blog entry file: /home/conal/blojsom-blogs/default/Blog-conversion-1
.html
Sep 25 10:48:43 ERROR [http-10100-Processor21] blog.FileBackedBlogEntry - Failed saving meta-data to: /home/conal/blojsom-blogs/default/null/Blog-conv
ersion-1.meta
java.io.FileNotFoundException: /home/conal/blojsom-blogs/default/null/Blog- conversion-1.meta (No such file or directory)
at java.io.FileOutputStream.open(Native Method)
at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
at java.io.FileOutputStream .<init>(FileOutputStream.java:131)
at org.blojsom.blog.FileBackedBlogEntry.saveMetaData(FileBackedBlogEntry.java:468)
at org.blojsom.blog.FileBackedBlogEntry.save(FileBackedBlogEntry.java:605)
at org.blojsom.plugin.admin.EditBlogEntriesPlugin.process(EditBlogEntriesPlugin.java:379)
at org.blojsom.servlet.BlojsomServlet.service(BlojsomServlet.java:432)
at javax.servlet.http.HttpServlet.service (HttpServlet.java:802)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java :173)
at org.blojsom.filter.PermalinkFilter.doFilter(PermalinkFilter.java:207)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
| |