WCMSBlog v0.6 (was Phpwcms Blog Module)

Post custom hacks and enhancements for phpwcms here only. Maybe some of these things will be included in official release later.
User avatar
antonumia
Posts: 77
Joined: Mon 14. Feb 2005, 16:10
Contact:

Anti spam include Bad behavior ?

Post by antonumia »

Hi,

is it possible to include bad-behaviour anti-spam within the module? I am running 1.2.6 so no captcha

thanks

anton
igs
Posts: 9
Joined: Sat 9. Sep 2006, 22:41

Post by igs »

It would be really great if you would implement a tree feature for comments.

So that blogger can reply to individual comments (simular to livejournal.com) and it would be perfect, if a commenter would also get an email to say a new reply received.
phalancs
Posts: 793
Joined: Thu 19. Feb 2004, 05:09
Location: Germany

Post by phalancs »

Wow, sorry, asked for a paging fewature but its already in there :S
(edited this post)

Thanx for the great stuff shiny! :)
2008
Nordi
Posts: 6
Joined: Thu 7. Sep 2006, 21:18

Post by Nordi »

Kvist wrote:Goto include/inc_module/mod_blogs/inc_lib/dbinit.php and change the prefixes to match the prefix you used for you phpWCMS installation. If you don't remember it should be in the config/phpwcms/config.inc.php - I.e. I'm using this:

$phpwcms["db_prepend"] = "0706";

So my prefix is 0706_phpwcms_blogcomment

That solved it for me!
Kvist
Posts: 87
Joined: Sat 30. Oct 2004, 04:19
Location: Denmark
Contact:

Hmmm...

Post by Kvist »

Well, now the blog just isn't showing up anymore. It just shows "{BLOG:Kvist}" and that's it.... How can I get it to render the wonderous marvel that is the fruit of Shiny's labour?

NB: I recently installed phpWCMS 1.3.
Kvist
Posts: 87
Joined: Sat 30. Oct 2004, 04:19
Location: Denmark
Contact:

Please... Anybody?

Post by Kvist »

Please... Anybody?
Mobius
Posts: 39
Joined: Sun 15. Aug 2004, 13:07
Location: Hungary
Contact:

Post by Mobius »

It works not in 1.3
Please help me.
ferrismc27
Posts: 6
Joined: Sat 31. Mar 2007, 22:59

Post by ferrismc27 »

Es funktioniert nicht mit Version 1.30.

Wirklich. PHPWCMS ist ne feine Sache aber ohne ein News/Blog System wo User auch Kommentare zufügen können etc. ist für mich nichts Wert.
Zwar habe ich die Einbindung ins Bakend Module hinbekommen aber das EInbinden geht nicht. Wäre super wenn jemand für Version 1.30 eine Schritt für Schritt Anleitung basteln könnte.
User avatar
Oliver Georgi
Site Admin
Posts: 9892
Joined: Fri 3. Oct 2003, 22:22
Contact:

Post by Oliver Georgi »

@ferrismc27
it's possible to add comments using content part guestbook/comments. So that's not really the point.

The more complex simplified 1-click allow comments is coming.

Oliver
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn | Систрон
ferrismc27
Posts: 6
Joined: Sat 31. Mar 2007, 22:59

Post by ferrismc27 »

no it is not possible on my site. i press on send and nothign then happens. site hangs.

just need such news and comment feature urgently. if someone could write an howto for 1.3 version for the blog that would be really nice.
pepe
Posts: 3954
Joined: Mon 19. Jan 2004, 13:46

Post by pepe »

Hi ferrismc27,

is it such a solution, you are searching for?

http://phpwcms-templates.de/index.php?pepes-blog

it's shinys Blog... and full integrated in phpWCMS 1.3.0 :wink:

Hope, it will work online too... please make a comment!

Next week i'll show you the solution...( I'm searching EASTER-EGGS with my family first! :roll: )
...only some different lines of code to integrate it into the new version of OGs work!
pepe
Posts: 3954
Joined: Mon 19. Jan 2004, 13:46

Post by pepe »

OK friends, here is "the difference" against shinys description:

shinys description:
3. Find in phpwcms.php… (around line 360)

case "modules": //Modules
switch ($p) {
case 2: // Graphical Text MOD
if($phpwcms["gt_mod"]){ //enabled/disable GT MOD
include_once("include/inc_module/mod_graphical_text/main.inc.php");
} break;

Underneath this, add...

case 6: // Blog MOD
include_once "./include/inc_module/mod_blogs/main.inc.php";
break;
pepes solution for phpWCMS v1.3.0 .... v1.3.3 :
case "modules": //Modules

if($p == 2 && $phpwcms["gt_mod"]) { //enabled/disable GT MOD
// include language vars for Jérôme's Graphical Text MOD
include_once(PHPWCMS_ROOT.'/include/inc_module/mod_graphical_text/main.inc.php');
}

// ----- START pepes inclusion for Blog MOD | 2007.04.06 ---------------
if ($p == 6) { // Blog MOD
include_once "./include/inc_module/mod_blogs/main.inc.php";
}
// ----- END pepes inclusion for Blog MOD | 2007.04.06 ---------------


// if a module is selected
if(isset($phpwcms['modules'][$module])) {
include_once($phpwcms['modules'][$module]['path'].'backend.default.php');
}
break;

case "admin": //Administration
Don't know, if it's the right way to do it... but it seems to work?!

Wish you all a happy easter... :wink:
Last edited by pepe on Tue 8. May 2007, 15:49, edited 1 time in total.
shiny
Posts: 56
Joined: Tue 27. Sep 2005, 20:10

Post by shiny »

Hello everyone,

Sorry I've been away for so long. Life overtook me somewhat last year after releasing 0.6.

I'm pleased to see that people are still using my blog module successfully, and I'm sorry I've not been been able to support it so well over the last few months. I'd like to apologise publically for not replying to every email that I've received reporting bugs.

I've been away from the Phpwcms community for a while, but I'm pleased to see that things have moved up to 1.3.0, and that there's some Captcha code too (which Pepe has integrated fantastically on his blog).

There's a new version in the works, which involves:

- Blog Entry Categories
- IP Banning (for comment spam)
- MySQL5 compatibility

Are there any other feature requests that people want/need? I'm happy to look into them.

It also seems that I need to look at Phpwcms 1.3.0 compatibility too... but I'm pretty sure that won't prove too complex... Check back tomorrow :)
http://www.shinypixel.co.uk - WCMSBlog :: The blogging Module for Phpwcms.
Current version : 0.6 [Public Release] - Includes RSS support
Next Version : 0.7 [Public Release] - will include IP banning and blog entry categories
jue_mue
Posts: 1
Joined: Tue 10. Apr 2007, 15:35
Location: London

1.3.0 not working

Post by jue_mue »

I followed pepe's advice for the 1.3 installation but the frontend integration still fails.

How did you make it run, pepe?
ferrismc27
Posts: 6
Joined: Sat 31. Mar 2007, 22:59

Post by ferrismc27 »

hi since pepes solution does not work for jue_mue i won't try it again.it's good that shiny is back. maybe he could release a fix on how to integrate the blog on version 1.3.
then of course improve but that can be done by updates too.
Post Reply