Schematic view

http://keydogbb.info/img/keyword-checker.png

Good idea for those links that are meant for a human clicking on them.
As they are often trying to link farm, get higher search rankings for the keywords, the question is:


A. to be considered

  • will it still help them achieve the aim of getting better search enginge rankings for the spam site they are pointing to, if they write 'vi4gr4', 'v i a g r a' etc? That would create so many possibilities that the list of keywords would become huge


B. Ideas to efficiently counter the spam content posts

  • Quarantine any posts with the keyword (manual input by every forum admin, moderator)

  • Circulating such lists among forum admins could be beneficial (if the point listed under A. is considered)

  • Query an online database of keywords (similiar to the extension Grez wrote for URL checking that queries an online database of URLs used by spammers) and quarantine any attempts for use of those keywords

  • If using an online database it could be interesting to have checkable listings for 'watches, shoes, handbags (shopping)', 'pills (pharma)', 'porno, sex, etc'....

Colors are in 'Style'_cs.css
Right click and inspect element (if using Chrome) to speed up finding relevant block of code, when on your forum index...

I'd just

  • put the css lines one beneath the other and

  • put an extra spacing before 'url...'

  • then double check the location path...

WeNeedHelp wrote:

On a side note, how do you update the punbb forums from 1.3 to 1.4 without losing all the current posts? Or do I even need to?

hcs wrote:

Upgrade from 1.3
NOTE: Make a backup of your current forum folder before proceeding. Also, don't forget to make a backup of your forum database. Use mysqldump for MySQL and pg_dump if you are using PostgreSQL. If you're using SQLite, just make a backup copy of the SQLite database file. You can also make database backups via most administration tools, such as MySQL Administrator, phpMyAdmin and phpPgAdmin.

  1. Turn the Maintenance mode on via the admin panel.

  2. Disable all extensions via the admin panel.

  3. Overwrite the old files with the new ones.

  4. After owerwriting, verify that the cache, img/avatars and extensions (for pun_repository) directories are set enough write permissions (usually 777 or 755).

  5. Clear the cache directory.

  6. Go to the forum index and run the db_update.php script (this may take a while to finish).

  7. Update all the extentsions.

  8. Turn on all the updated extensions.

  9. Turn the Maintenance mode off.

WeNeedHelp wrote:

How do I add a picture to the background of my website?

I looked in other help threads, but I can't seem to figure it out. I have just started to learn code so if you could put it into simple terms that would be appreciated.

This should help...

KeyDog wrote:

You need to add
background-image: url(../images/bg.gif);
to style/Oxygen/oxygen.css  or oxygen_cs.css

see this post also


Ishimaru Chiaki wrote:

The only problem with the background is that it isn't fixed, so as we scroll, we see the pic's edges.

Paste these properties where you have put the background image, if you used the background-image property :

background-attachment: fixed;
background-repeat: no-repeat;
background-position: top center;

If a megaproperty (background instead of background-image) is used, just add fixed among the values.

132

(71 replies, posted in PunBB 1.4 additions)

He probably thinks using this extension;
Google Analytics would be cleaner and more professional....

http://keydogbb.info/img/thumbsup.png

The extension pun_karma also lets you have only thumbs up (so as not to offend any posters) - in admin/settings/features....

134

(8 replies, posted in PunBB 1.4 troubleshooting)

thanks for confirming... !

135

(8 replies, posted in PunBB 1.4 troubleshooting)

cool big_smile
your welcome...

136

(8 replies, posted in PunBB 1.4 troubleshooting)

The extension above currently changes the images like this:

http://keydogbb.info/images/iconsimg.png

137

(8 replies, posted in PunBB 1.4 troubleshooting)

you can also change this code in the extension... not sure icon new is working!

/****************************************************************/
/* POST STATUS INDICATORS */
/****************************************************************/
/* remove default first */
 .brd .main-content .main-item .icon {
     border-width: 0;
     height: 20px;
     width: 20px;
}
.brd .main-content .main-item .icon {
    background:transparent url(images/icon.png) no-repeat;
}
.brd .main-content .main-item .icon.moved {
    background:transparent url(images/iredirect.png) no-repeat;
}
.brd .main-content .main-item .icon.new {
    background:transparent url(images/inew.png) no-repeat;
}
.brd .main-content .main-item .icon.sticky{
    background:transparent url(images/isticky.png) no-repeat;
}
.brd .main-content .main-item .icon.closed{
    background:transparent url(images/iclosed.png) no-repeat;
}
.brd .main-content .main-item .icon.sticky.closed{
    background:url(images/iclosedandsticky.png) no-repeat;

138

(8 replies, posted in PunBB 1.4 troubleshooting)

Try this extension icon_imgs

put your own images in the /images folder in the extension...



manifest.xml

<extension engine="1.0">
    <id>icon_imgs</id>
    <title>Icon Images</title>
    <version>0.0.2</version>
    <minversion>1.3.2</minversion>
    <maxtestedon>1.4.1</maxtestedon>
    <author>KeyDog adaptation from a Rich Pedley extension</author>
    <description>Icon images.</description>
    <hooks>
      <hook id="hd_head">
            <![CDATA[
            $forum_head[] = '<link rel="stylesheet" type="text/css" media="screen" href="'.$ext_info['url'].'/imgs.css" />';
            ]]>
        </hook>
        <hook id="hd_viewtopic_head">
            <![CDATA[
                $forum_head[] = '<link rel="stylesheet" type="text/css" media="screen" href="'.$ext_info['url'].'/imgs.css" />';
            ]]>
        </hook>
        <hook id="hd_post_head">
            <![CDATA[
                $forum_head[] = '<link rel="stylesheet" type="text/css" media="screen" href="'.$ext_info['url'].'/imgs.css" />';
            ]]>
        </hook>
        <hook id="hd_profile-signature_head">
            <![CDATA[
                $forum_head[] = '<link rel="stylesheet" type="text/css" media="screen" href="'.$ext_info['url'].'/imgs.css" />';
            ]]>
        </hook>
        <hook id="hd_postedit_head">
            <![CDATA[
                $forum_head[] = '<link rel="stylesheet" type="text/css" media="screen" href="'.$ext_info['url'].'/imgs.css" />';
            ]]>
        </hook>
    </hooks>
</extension>

Note: PunBB 1.2 styles and modifications do not work on PunBB 1.4


Migration from PunBB 1.2 to PunBB 1.4

Follow these instructions to migrate from your current PunBB 1.2.* installation to 1.4.x.
NOTE: Make a backup of your current forum directory before proceeding. Also, don't forget to make a backup of your forum database. Use the tool mysqldump for MySQL and pg_dump if you are using PostgreSQL. If you're using SQLite, just make a backup copy of the SQLite database file. You can also make database backups via most administration tools such as MySQL Administrator, phpMyAdmin and phpPgAdmin. It's strongly recommended to make a database backup if your forum is not 100% in English. You can experience data loss in the convertion to UTF-8 if you specify wrong encoding of data stored in the database.
Download PunBB 1.4.x and extract the archive on your hard disk.
Replace your old 1.2 directory with the contents of the 1.4.x archive. Keep old config.php and img/avatars dir. E.g. if you have 1.2 installed into www/punbb/ and forum URL is http://example.com/punbb/. You can use the next steps:

  • rename old www/punbb/ to www/punbb_old/;

  • create new directory www/punbb/ and put PunBB 1.4.x there;

  • copy /www/punbb_old/config.php to new www/punbb/ and /www/punbb_old/img/avatars to /www/punbb/img/avatars.

  • Open forum index and follow instructions.


Watch out :

Tetert wrote:

I had to manually import back my data in my MySQL server to be able to convert to UTF8, and then to run a full install of 1.4 to get a working config.php, and then to use it in the fixed forum.
It was a bit epic, but it is finally working.

Link to post/thread

Ask him directly if in doubt.

Good luck.

Admin, Settings, Features

User has posted
Display a dot in front of topics to indicate to a user that they have posted in that topic earlier. Disable if you are experiencing high server load.

141

(52 replies, posted in PunBB 1.3 extensions)

An improvement idea.
I recently reported a spammer and minutes later I received an email from your extension on another forum, telling me an attempt had been blocked;

Is there a way of integrating the
- last seen information
- if IP or email were reason for report?

Thanks.

It doesn't take too long to modify front-end.
If you do one file a day, you'll be done by mid January... especially if you take 1.3 version and copy paste the translations...

You can add a .js to the header via an extension....

<extension engine="1.0">
    <id>javascript_caller</id>
    <title>Javascript Caller</title>
    <version>0.0.0</version>
    <description>Calling the javascript</description>
    <author>Author</author>
    <minversion>1.4.1</minversion>
    <maxtestedon>1.4.1</maxtestedon>

    <hooks>
            <hook id="hd_head" priority="4"><![CDATA[
            $forum_head['javascript_caller'] = '<script type="text/javascript" src="'.$ext_info['url'].'/myscript.js"></script>';
 ]]></hook>
    </hooks>
</extension>

Also look at in /include/template/main.tpl

Here's the pun_karma extension (beta for 1.4.1):
pun_karma (with large thumbs)

Works on a test forum I have...


This is an additional version with different icons;
pun_karma (smaller thumbs in green or red box)

http://keydogbb.info/img/thumbs.png

http://keydogbb.info/img/thumbs2.png

145

(7 replies, posted in PunBB 1.4 troubleshooting)

Okay, maybe you'll have to take detour by converting it to 1.3.4 (what the tool was tested on...)
http://punbb.informer.com/svn/punbb/tags/punbb-1.3.4/

If you can convert to 1.3.4 it will be a breeze afterwards....

Nice
added
@

147

(7 replies, posted in PunBB 1.4 troubleshooting)

epicguy11 wrote:

where can i find the phpbb3_login extension

Inside the downloadable tool...
phpbb_converting_tool\extensions\phpbb3_login

148

(7 replies, posted in PunBB 1.4 troubleshooting)

Please follow the steps in this post
http://punbb.informer.com/forums/topic/ … tion-tool/

Grez wrote:

I didn't know which section to choose, but I guess the main thing is that this tool finally exists and not section in which it is published big_smile

Instructions
  • Backup your phpBB3 forum! (both db and code, I don't know what could possibly go wrong, and I guess you don't want to end up with totally new forum without any posts, right?

  • Delete all phpbb files and install brand-new PunBB forum

  • Download phpbb_converting_tool

  • Extract it into rootdir of your forum

  • Using Administration install the phpbb3_login extension

  • Run the phpbb.php file, choose what do you want to convert, fill in the phpbb database prefix (if any) aaand

  • Trigger it

Converts
  • Users

  • Categories

  • Forums

  • Topics

  • Posts

  • PMs //if extension installed

  • BB codes

  • Admin's in original "admin" group and admin performing the conversion

Features this convertor does not include
  • Groups

  • Forums permissions

  • Avatars

  • Polls

  • Attachments

  • and some unimportant stuff

Changelog

2010-08-05: Published & first satisfied customer tongue

Currently has been tested only on localhost on forum PhpBB 3.0.1 with approximately 700 users, 300 topics and 5000 posts. The script took 3sec on my crappy PC  big_smile

149

(1 replies, posted in Discussions)

I don't think there will be separate language section...
but if you can post here - would be good...
I had started it a year or so ago... but there isn't much demand....

150

(20 replies, posted in PunBB 1.3 extensions)

@Justice (or any other ext developer)

Would be cool if this extension could be adapted/updated for 1.4.x

At the moment it seems to cause problems on 1.4.1 (as per this report)