WCMSBlog v0.6 (was Phpwcms Blog Module)
Anti spam include Bad behavior ?
Hi,
is it possible to include bad-behaviour anti-spam within the module? I am running 1.2.6 so no captcha
thanks
anton
is it possible to include bad-behaviour anti-spam within the module? I am running 1.2.6 so no captcha
thanks
anton
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!
Hmmm...
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.
NB: I recently installed phpWCMS 1.3.
Please... Anybody?
Please... Anybody?
-
- Posts: 6
- Joined: Sat 31. Mar 2007, 22:59
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.
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.
- Oliver Georgi
- Site Admin
- Posts: 9903
- Joined: Fri 3. Oct 2003, 22:22
- Contact:
-
- Posts: 6
- Joined: Sat 31. Mar 2007, 22:59
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
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! )
...only some different lines of code to integrate it into the new version of OGs work!
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
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! )
...only some different lines of code to integrate it into the new version of OGs work!
OK friends, here is "the difference" against shinys description:
shinys description:
Wish you all a happy easter...
shinys description:
pepes solution for phpWCMS v1.3.0 .... v1.3.3 :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;
Don't know, if it's the right way to do it... but it seems to work?!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
Wish you all a happy easter...
Last edited by pepe on Tue 8. May 2007, 15:49, edited 1 time in total.
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
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
Current version : 0.6 [Public Release] - Includes RSS support
Next Version : 0.7 [Public Release] - will include IP banning and blog entry categories
1.3.0 not working
I followed pepe's advice for the 1.3 installation but the frontend integration still fails.
How did you make it run, pepe?
How did you make it run, pepe?
-
- Posts: 6
- Joined: Sat 31. Mar 2007, 22:59