Page 1 of 1

Reliable blog mod?

PostPosted: Fri May 22, 2009 5:27 pm
Author: Lycanth
Just wondering if anyone knows of a good, reliable blog mod out there for IM141? Preferably easy to install because I am a novice.

Re: Reliable blog mod?

PostPosted: Sat May 23, 2009 9:13 am
Author: .QUACK.Major.Pain
I think there was one in the downloads section, but seems Helter might be working on the site, and the menus are gone and pages are messed up.

Should be back to normal soon.

Myself, I added a wordpress blog and just added links in the qbar.
Downfall is that people have to register for it.

Re: Reliable blog mod?

PostPosted: Sat May 23, 2009 9:49 pm
Author: Helter
[url=http]Blog Mod[/url]

Re: Reliable blog mod?

PostPosted: Tue May 26, 2009 5:50 am
Author: Lycanth
Thank you! Now...to find someone to install it for me, heh.

Re: Reliable blog mod?

PostPosted: Tue May 26, 2009 10:42 am
Author: DjPorkchop
That mod is fairly easy to install. BUT please note...... You must disable trackbacks and chmod trackbacks.php to 000 or simply rename the file. If not your board will come to a crawl. Several of us got together on another board and discussed the use of the Blog Mod.

As well, if I am not mistaken, you may have to edit a few files to get it to work properly. I recall a sql error that came up. I have installed it on many boards and like I said with a little work, it is a reliable mod.

Re: Reliable blog mod?

PostPosted: Tue May 26, 2009 1:25 pm
Author: .QUACK.Major.Pain
The line with the sql error is:

ALTER TABLE `phpbb_weblog_actions` CHANGE `action_id` `action_id` SMALLINT( 5 ) UNSIGNED NOT NULL DEFAULT '0' AUTO_INCREMENT;

Remove the DEFAULT '0' and it will be ok.
This part causes the sql install to stop at this point.

The are a few other edits that need a little ingenuity to get it to work, but was fairly simply.

Re: Reliable blog mod?

PostPosted: Mon Jun 01, 2009 9:55 pm
Author: DjPorkchop
yeah they were not that bad to do. And If I am not mistaken, I have premod files for that mod. but it would only work in a vanilla IM install.

Lycanth, if still interested, give me a few days on this one until i get a day off of work and I'll have a peak at it for you since I am the one who modded your site/s anyhow. Would be rather easy for me to do since I know where evrything is and have the correct info to do so.

Give me a shout either way.

Oh and what about Templates for it? You might be able to get the template pack from here, but I have went through all of them that I have wich is like 32 of them and modified them to work a whole bunch smoother than what they originally did as well as fixed a whole BUNCH of image errors.

Re: Reliable blog mod?

PostPosted: Tue Jun 02, 2009 4:47 am
Author: .QUACK.Major.Pain
Not sure why, but getting a lot of download when opening websites.

I just opened your website MWE_001, and a popup window came up trying to download shoutbox.php

I got this on one of my sites also several days ago.

Getting this in firefox.

Re: Reliable blog mod?

PostPosted: Wed Jun 03, 2009 7:46 pm
Author: DjPorkchop
I get that every now and again as well on various websites. I haven't had it happen recently. And I do not even have shoutbox installed on that site. It is a IM Portal. Not Integramod. So that is strange.

Re: Reliable blog mod?

PostPosted: Sat Sep 25, 2010 5:21 pm
Author: Lycanth
I know it's been awhile since I had this installed, but my site was slow then and not many were using it. Now, I've discovered that it's telling everyone that they are banned from making a blog, and i have to go into admin and individually untick the box to allow them to make a blog. Is there any easier way to just allow everyone?

Re: Reliable blog mod?

PostPosted: Sun Sep 26, 2010 3:14 pm
Author: viragotech
Can you post a link to your site, id like to see what the blog looks like.

was thinking about installing it.
does it allow pics and stuff???

Would be nice for folks to document their motorcycle trips.

Re: Reliable blog mod?

PostPosted: Sun Sep 26, 2010 11:00 pm
Author: Lycanth
My site is http://www.nextincantation.com In the top qbar you click on Pensieves. I haven't used that option yet, but it does allow pics in img tags just like the forum.

Re: Reliable blog mod?

PostPosted: Mon Sep 27, 2010 12:30 am
Author: viragotech
"Lycanth" wrote:My site is http://www.nextincantation.com In the top qbar you click on Pensieves. I haven't used that option yet, but it does allow pics in img tags just like the forum.


Thanks, guess Id have to register to see it?
Its not a public viewable mod?

don't see a "Pensieves" link.

Re: Reliable blog mod?

PostPosted: Mon Sep 27, 2010 3:56 pm
Author: Helter
You should be able to edit permissions as to who can view, create, comment etc..
Your members can also select who may view and comment on their blogs.

If you need more info, PM [url=http]MWE_001[/url]. He has installed this for many users and knows alot more about it than I do

Re: Reliable blog mod?

PostPosted: Tue Sep 28, 2010 6:26 pm
Author: DjPorkchop
That was a bug that came up long long ago. I would need to do some research and remember what was done to fix it if anything was. I believe that was one of the rare ones that I could never figure out. Let me see what I can come up with. RIght now it is hard because I have no IM 141 installs online. All I have is a standard phpBB with blog mod and on that install it never happens. It was an isolated bug with Integra if I recall correctly.

And Hello Ly. long time no chit chat. Hope all is well.

Re: Reliable blog mod?

PostPosted: Tue Sep 28, 2010 6:48 pm
Author: DjPorkchop
Ok I went back and did some reading on the Official Blog Mod Thread and found where we all discussed for months on end this users being banned problem.

What it is doing is, when a new user registers, it sets them automatically to banned from creating a blog. They actually are not being banned simply from trying to create one. The are just bug victims.

To solve this, run this query in phpmyadmin

Code: Select all
ALTER TABLE `phpbb_users` CHANGE `user_allowweblog` `user_allowadvweblog` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '1'


That should fix the problem. There is another fix to take care of current users that are banned that wish to create a blog. Run this query in phpmyadmin and if there are any users currently banned, it will unban them and put every user you have back on the good foot.

Code: Select all
UPDATE `phpbb_users` SET `user_allowweblog` = '1' WHERE `user_allowweblog` = '0'



If you would like to read the entire 14 or 15 pages of materal, please do a quick search for the blog mod. The main author is the long lost but not forgotten Dragonsys.

Re: Reliable blog mod?

PostPosted: Tue Sep 28, 2010 6:57 pm
Author: DjPorkchop
"HelterSkelter" wrote:You should be able to edit permissions as to who can view, create, comment etc..
Your members can also select who may view and comment on their blogs.

If you need more info, PM [url=http]MWE_001[/url]. He has installed this for many users and knows alot more about it than I do


If hers is unavailable, you can view mine here [url=http]Blog Mod In Action[/url]

It won't make you register to view, but it will to post.


Sorry this was meant to Viragotech. Not sure why I quoted Helter. <img> Sorry.


And I am awful sorry for the slow replies lately folks. I am just now finishing up my 2nd term at school. Just handed in finals tonight. I should be around a little more for a couple 2 or 3 weeks until the next term starts.

My next set of classes are

IT163-02: Database Concepts Using Microsoft Access

and

IT190-04: Foundations in Information Technology

Re: Reliable blog mod?

PostPosted: Tue Sep 28, 2010 10:45 pm
Author: Lycanth
No problem at all. It's good to see you around again!

Re: Reliable blog mod?

PostPosted: Wed Sep 29, 2010 3:52 pm
Author: DjPorkchop
I am really trying to make it a habbit to login here a couple times a day now. Who knows here in a couple weeks when school starts back up though. And it is great to be seen around here again. lol <img>

Hey let me know if that fix worked for your blogs Ly. And I still have all your info in my FTP client as well as dreamweaver if you need any help. The only thing I can not do from either of those is run them commands in your phpmyadmin.

Re: Reliable blog mod?

PostPosted: Wed Sep 29, 2010 6:16 pm
Author: Lycanth
I think most stuff is running smoothly....but there are a couple of things I know I'd really like, heh. Is it even possible to merge an old database with the present one? Story is: did a backup in march, then took a few months off (new baby), and my second in command accidentally deleted a big chunk of posts and data. The site has been active since and I don't want to overwrite the new data with the old, but just want to...splice the old into the current. I tried with bigdump but got this error:

Error at the line 3: INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count, post_attachment, post_icon, post_bluecard, rating_rank_id) VALUES('1', '1', '1', '2', '1204595865', '7F000001', '', '1', '0', '1', '0', '1254198994', '2', '0', '3', NULL, '0');

Query: INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, post_time, poster_ip, post_username, enable_bbcode, enable_html, enable_smilies, enable_sig, post_edit_time, post_edit_count, post_attachment, post_icon, post_bluecard, rating_rank_id) VALUES('1', '1', '1', '2', '1204595865', '7F000001', '', '1', '0', '1', '0', '1254198994', '2', '0', '3', NULL, '0');


MySQL: Duplicate entry '1' for key 'PRIMARY'


Any ideas? Can I change the values somehow, or change the post tables to auto_increment?


ETA: I'd really love for the arcade mod to be added to my HP site, too, if at all possible.

Re: Reliable blog mod?

PostPosted: Wed Sep 29, 2010 8:29 pm
Author: DjPorkchop
The arcade is no problem at all. That is easily done. It takes longer to upload games then it does to install the mod. Let me do a quick test install on my local server to make sure I still have it in me. I have installed it at least 100 times or more, but it has been at least 2 to 3 years since I did it last.

The database and splicing things, I really need Helterskelter to intervene on that one. I am getting better at tweaking databases but what I do not know about them will fill a book.

And a big belated congrats on the new baby!


Ray

Re: Reliable blog mod?

PostPosted: Wed Sep 29, 2010 10:55 pm
Author: Lycanth
Thank you Ray! And I'll wait and see what Helter says about the database. Hopefully it's not mission impossible!

Re: Reliable blog mod?

PostPosted: Thu Sep 30, 2010 10:37 am
Author: Helter
It could possibly be done but i dont really know how. You would need a mysql expert to do it. There are just too many tables involved that all must be in sync.

Re: Reliable blog mod?

PostPosted: Thu Sep 30, 2010 12:38 pm
Author: DjPorkchop
And there you have it. lol Let me know if you need any help with the arcade or anything like that. I am off of school for a couple 2 or 3 weeks and have some time to spare. I ran a test install last night and all went well. The only issue is one minor bug in the script. The fix for it was located at foundit forum and that site is no longer. The error was not serious that it effects game play at all.

What the error amounted to was, at the bottom of the games page you could click numbers to get to different pages of games ..... 1,2,3,4,5, ... etc. If you clicked on any number it would give an error. I have it fixed on one of my old installs. I have looked at my files and cant recall what it was I had to do to fix.

But like I said, that error does not effect game play at all.

Re: Reliable blog mod?

PostPosted: Thu Sep 30, 2010 6:09 pm
Author: Lycanth
Thanks for replying Helter. Might just have to find a mysql expert and offer to pay for them to nut it out for me. Any suggestions on where to look for one?


Ray, whenever you have the time would be fine. You still have my email? If not, PM here works fine. I check in several times a day.

Re: Reliable blog mod?

PostPosted: Thu Sep 30, 2010 6:28 pm
Author: DjPorkchop
Messaged.

I am not sure of who to get a hold of about the database. It is too bad that happened to your info. I actually deleted like a weeks worth of a guys db on accident once and boy did I feel bad. I had a backup of it, but it was a week old. All we could do was move on from there and not look back. I felt REAL bad, he just kind of shrugged his shoulders and said no worries.

Re: Reliable blog mod?

PostPosted: Sun Oct 03, 2010 12:17 am
Author: Helter