News:

Join the Facebook Fan Page.

Main Menu

SMFBlog

Started by SMFHacks.com Team, May 11, 2007, 08:02:48 AM

Previous topic - Next topic

Daniel15

Unfortunately, I haven't had time to work on a new version of this mod, but I'll try to soon :)
I'm not sure how SMF handles attachments; I'll need to look into it.

softtouch, that error is occuring because you're using MySQL's "strict" mode. To fix it, try running this SQL query in phpMyAdmin (on the "SQL" tab):
ALTER TABLE `smf_boards` CHANGE `is_blog` `is_blog` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0'
Tell me if this solves the issue.
Daniel15, former Customisation team member, resigned due to lack of time. I still love everyone here :D.
Go to smfshop.com for SMFshop support, do NOT email or PM me!

softtouch

It did so far. Now I see the blogs normal if I click the blog tab.
But if I click the blog tab, it lists the blogs and a text "Create a new blog here", which does not have a link... confusing.
I might wait for the next version.

Jade Elizabeth

8: Undefined index: pageindex
File: /home/jade/public_html/forums/Themes/default/Blog.template.php
Line: 60
Line: 80

line 60
', $context['blog']['pageindex'];

BLOCK
// Page numbers, please!
echo '
', $context['blog']['pageindex'];

$alternating = 1;


line 80
', $context['blog']['pageindex'];


BLOCK
// Page numbers at the bottom
echo '
', $context['blog']['pageindex'];

}


im getting those errors. i checked this thread (all 9 pages) and couldnt see anything.
Once proud Documentation Writer and Help Squad Leader | Check out my new adult coloring career: Color With Jade/Patreon.

ApplianceJunk

QuoteUnfortunately, I haven't had time to work on a new version of this mod, but I'll try to soon :)

I will be looking forward to seeing what you do in the next version.

If anyone is interested they can check out how we use this awesome blog mod on our site at ApplianceJunk.com

phfire

8: Undefined index: icon
File: /home/butuanon/public_html/forums/Sources/Post.php
Line: 1546

got that error when I posted a reply on the blog page.

valechan

Question, I instaled the SSI pack needed to see the Blog, I installed the Blog itself, everything installed perfectly... I assigned a forum to be a blog... and when I go see the messages... they're still the same as before. What's going on?? What am I missing???

Jade Elizabeth

Quote from: valechan on January 20, 2008, 05:17:29 PM
Question, I instaled the SSI pack needed to see the Blog, I installed the Blog itself, everything installed perfectly... I assigned a forum to be a blog... and when I go see the messages... they're still the same as before. What's going on?? What am I missing???

you need to click the blog button
when you go in with forum view it is displayed normally :)
for example www.boo.jades-world.com should have a button, and it should work, the forums going through changes so i dont know lol
Once proud Documentation Writer and Help Squad Leader | Check out my new adult coloring career: Color With Jade/Patreon.

valechan

There is no blog button on my forum :S weird...

Jade Elizabeth

Once proud Documentation Writer and Help Squad Leader | Check out my new adult coloring career: Color With Jade/Patreon.

valechan

I'll try the manual link :p

ApplianceJunk

#170
Hi,

Thanks again for this great mod. It really works nice with out site.

There does seem to by one little problem we have with it.

I get this error message in my error log when a guest clicks on a blog title to try and leave a comment.

Guest                                                        Today at 07:33:14 PM
218.214.123.68                            64dd7ae7a55c3f33f18bff2bbffb2582

http://appliancejunk.com/forums/index.php?action=blog;sa=view_post;id=437

8: Undefined variable: ID_MEMBER
File: /home/content/a/p/p/appliancejunk/html/forums/SSI.php
Line: 1738

Most often it is logged 3-5 times all the same error, all with the same time stamp right down to the second.

Here is another post on the subjuct that I started before I thought it had something to do with the SMF blog mod.

http://www.simplemachines.org/community/index.php?topic=219456.0

Thanks again for all your hard work on this mod.

- danny

#171
i tried removing this, and i got the following error:

QuoteWarning: require_once(/home/xxxxxx/public_html/forums/Sources/Blog.php) [function.require-once]: failed to open stream: No such file or directory in /home/xxxxxx/public_html/forums/index.php on line 54

Fatal error: require_once() [function.require]: Failed opening required '/home/xxxxxx/public_html/forums/Sources/Blog.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/xxxxxx/public_html/forums/index.php on line 54

can someone tell me wth is going on?

- danny

nvm. just re-uploaded the php file.

Daniel15

#173
Hi everyone,
SMFBlog 1.0 should be up in a few minutes, and it should fix all the issues. Changes:
- Hopefully fixed the "Field 'is_blog' doesn't have a default value" error.
- Added pagination to the "View Blog" page.
- When you preview a reply, go back to the blog once the reply is posted.
- Option to hide blog boards from board index.. Note: If you choose this option, the boards will be hidden from EVERYONE, including the blog owner. I suggest to bookmark the link to the board before enabling it!
- Some minor bug fixes.

If you're using SMFBlog 0.1 Beta, please uninstall it before installing this version!


Edit: Also, for anyone that translated SMFBlog, please translate the new "blog_hide_boards" string (Hide blog boards?), and I'll add your translation

Full list of strings:

// --- Begin modification - SMFBlog ---
// General text strings
$txt['blog'] = 'Blog';
// Text used in the frontend (user section).
$txt['blog_boards'] = 'Blog boards';
$txt['blog_blogs'] = 'Available blogs:';
$txt['blog_comments'] = 'Comments';
$txt['blog_no_comments'] = 'No comments have been posted for this post yet.';
$txt['blog_write_comment'] = 'Write a Comment';
// Errors in the frontend.
$txt['blog_error_disabled'] = 'Sorry, but blogs are currently disabled!';
$txt['blog_error_login'] = 'Sorry, you must be logged in to post a comment!';
$txt['blog_error_not_exist'] = 'Sorry, but the blog you requested does not exist!';
$txt['blog_error_not_blog'] = 'Sorry, but this board is not a blog!';

// Settings for the blog administration.
$txt['blog_comments_perpage'] = 'Number of comments to display per page';
$txt['blog_posts_perpage'] = 'Number of blog posts to display per page';
$txt['blog_enable'] = 'Enable blog?';
$txt['blog_enable_rewrite'] = 'Enable pretty URLs?';
$txt['blog_hide_boards'] = 'Hide blog boards?';
$txt['blog_settings'] = 'Blog Settings';
// Board administration.
$txt['blog_board'] = 'Use this board as a blog?';
$txt['blog_board_desc'] = 'Enabling this option will show this board on the blog page.';
// --- End modification ---


And I'll add your translation :)
Daniel15, former Customisation team member, resigned due to lack of time. I still love everyone here :D.
Go to smfshop.com for SMFshop support, do NOT email or PM me!

- danny

i've been using smf blogger for some time daniel, is there a way to transfer the existing blogs?

ApplianceJunk

Quote from: ~Alex on February 11, 2008, 11:33:02 AM
i've been using smf blogger for some time daniel, is there a way to transfer the existing blogs?

What would there be to transfer?
From what I understand you just make what board you want to use as a blog.

Just use the same board as you did before.

Someone please correct me if this is not the way it works.


- danny

well, smf blogger and smfblog are two different things.

smfblogger doesn't use boards as blog entries.

ApplianceJunk

QuoteOption to hide blog boards from board index.. Note: If you choose this option, the boards will be hidden from EVERYONE, including the blog owner. I suggest to bookmark the link to the board before enabling it!

Were do I find this option?

Also you suggetst to bookmark it. If we forget can we just uncheck this option to have it show up again?

Thanks,

ApplianceJunk

Quote from: ~Alex on February 11, 2008, 09:14:44 PM
well, smf blogger and smfblog are two different things.

smfblogger doesn't use boards as blog entries.

Ok, guess I did not know that.
Could you give me a link to the other one your talking about?

Thanks,

Daniel15

QuoteAlso you suggetst to bookmark it. If we forget can we just uncheck this option to have it show up again?
Yeah, sure, that works too. And the option is in the admin panel, in "Feature Configuration", on the blog tab :)

And what's SMF Blogger? As ApplianceJunk mentioned, please provide a link :)
Daniel15, former Customisation team member, resigned due to lack of time. I still love everyone here :D.
Go to smfshop.com for SMFshop support, do NOT email or PM me!

Advertisement: