751

(3 replies, posted in PunBB 1.3 troubleshooting)

I get redirected to 'http://punbb.informer.com/demo/punbb13r … mp;login=1' after logging in with 'admin' account.

[Not really a bug]

On 'Administration  » Extensions  » Manage hotfixes', e.g. on the "Test Hotfix", you only get its full description when it's installed.

Before Install wrote:

    *  Created by PunBB
    * This hotfix for your PunBB installation was detected by automatic update.

After Install wrote:

    *  Created by PunBB Development Team
    * Hotfix
    * This hotfix extension does nothing useful. It is merely a test.

Yeah, I know you get the hotfix's description before you click the final "Install Hotfix", but having the full description before would be better.

Also, personally, I don't think "Created by PunBB" and "This hotfix for your PunBB installation was detected by automatic update" are needed.

You can post the bugs you find here?

754

(2 replies, posted in PunBB 1.2 discussion)

Yeah, I love PunBB big_smile ... *awkward silence* Ok... bye?

Edit: What I'm trying to say is that if anyone from the dev team needs any help testing stuff or an extra pair of hands, I'm there for you smile

755

(15 replies, posted in News)

Good job big_smile

Btw, when the database update is done, there's no link that points back to the forum index.

756

(2 replies, posted in PunBB 1.2 discussion)

I'm not sure, but there's the Wiki.

757

(12 replies, posted in PunBB 1.3 extensions)

I installed it on my test forum but I get this error:

PunBB repository wrote:

ERROR! PunBB Repository is inaccessible now. Try to check it later.

758

(20 replies, posted in PunBB 1.3 troubleshooting)

[REV 767] File: /admin/index.php

W3C Markup Validator wrote:

Error  Line 126, Column 7: end tag for "ul" omitted, but OMITTAG NO was specified.

Replace lines 216-219 in '/admin/index.php':

                    </ul>
                </div>
            </div>
<?php endif; endif; ($hook = get_hook('ain_items_end')) ? eval($hook) : null; ?>        </div>

with:

<?php endif; ?>                    </ul>
                </div>
            </div>
<?php endif; ($hook = get_hook('ain_items_end')) ? eval($hook) : null; ?>        </div>

759

(20 replies, posted in PunBB 1.3 troubleshooting)

What's the max length for the username?

760

(20 replies, posted in PunBB 1.3 troubleshooting)

HTML:

<li class="info-lastpost">
    <span class="label">Last post</span>
    <strong>Today 12:14:15</strong>
    <cite>by Garciat</cite>
</li>

CSS:

.brd .main-content .main-item li.info-lastpost cite,
.brd .main-content .main-item li.info-lastpost span {
     display: block;
     padding: 0 1em;
     font-style: normal;
     font-weight: normal;
     }

<cite>'s 'display: block' moves "by Garciat" to a new line. This is OK for the forum index because the forum description is also on a new line. However, on the topic view, this just makes the row higher for no reason.

761

(20 replies, posted in PunBB 1.3 troubleshooting)

I'm going to try rev719 right now and see if I get the same error.

Edit: I get this alert on 'Administration » Start » Information':

Database version mismatch Your PunBB database is meant to be used in conjunction with a newer version of the PunBB code. This mismatch can lead to your forum not working properly. It is suggested that you upgrade your forum to the newest version of PunBB.

The forum works ok, though.

762

(20 replies, posted in PunBB 1.3 troubleshooting)

When the installation is done, and I visit the forum's index, I get:

Your PunBB database is out-of-date and must be upgraded in order to continue. Please run db_update.php in order to complete the upgrade process.

Then, when I run 'db_update.php', I get:

Your database is already as up-to-date as this script can make it.

I used: SQLite, "localhost", and DB name "test". Using latest dev version.

You could delete 'config.php' on your PunBB installation folder then visit 'index.php'. Now, it should ask you to "Install" PunBB again. When entering your database info, just choose a different prefix for your MySQL tables (the default is 'punbb_').

I hope this helped.

Oh, right, he did say it wouldn't work on old IE.

765

(6 replies, posted in PunBB 1.3 troubleshooting)

Oh, good job finding the bug then big_smile

My Idea

When a user visits 'register.php' a random string (Ex. ab45x) and a random arithmetic operation (Ex. 3+3) are generated and added to a MySQL table 'INSERT INTO regchk VALUES ("random string", "random operation", timestamp);' (rows are dropped automatically if they are 24 hours old).

You then add a new field to the registration form and a link to 'regchk.php?s=ab45x (random string)'. Then, you tell the user to visit the link and write the shown answer on the new field.

What 'regchk.php' does is look for the arithmetic operation related to the random string provided and then redirect the user to 'http://www.google.com/search?q=' + arithmetic operation (note that the operation's characters that are not numbers have to be URL-encoded).

Btw, this is just an idea.

Anatoly wrote:
.sig-content img{
max-height: 120px; /* Replace with whatever your limit is */
}

As I remember this will not work in IE7 and lower.

That's what you suggested.

1.- You need to enable IMAP on your Gmail settings (if you haven't already).

2.- Are you using Outlook Express or Microsoft Office Outlook (what version).

Edit: Visit this link for help: http://mail.google.com/support/bin/answ … swer=75726

769

(6 replies, posted in PunBB 1.3 troubleshooting)

You should use PunBB 1.2, I guess... since it's more stable.

770

(4 replies, posted in PunBB 1.2 discussion)

You should search over at www.punres.org, too.

I found this: http://www.punres.org/desc.php?pid=139

I don't think it's exactly what you're looking for, but it's certainly worth the try.

771

(20 replies, posted in PunBB 1.3 troubleshooting)

On the final steps of the installation, the CSS files relative paths are wrong.

<link rel="stylesheet" type="text/css" href="style/Oxygen/Oxygen.css" />
<link rel="stylesheet" type="text/css" href="style/Oxygen/Oxygen_forms.css" />
<link rel="stylesheet" type="text/css" href="style/Oxygen/Oxygen_cs.css" />
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="style/Oxygen/Oxygen_ie.css" /><![endif]-->

"../" Should be added to each one of them.

Edit: Actually, should be replaced by: [Lines 1777-1780 on 'admin/install.php']

<link rel="stylesheet" type="text/css" href="<?php echo FORUM_ROOT ?>style/Oxygen/Oxygen.css" />
<link rel="stylesheet" type="text/css" href="<?php echo FORUM_ROOT ?>style/Oxygen/Oxygen_cs.css" />
<!--[if lte IE 6]><link rel="stylesheet" type="text/css" href="<?php echo FORUM_ROOT ?>style/Oxygen/Oxygen_ie6.css" /><![endif]-->
<!--[if IE 7]><link rel="stylesheet" type="text/css" href="<?php echo FORUM_ROOT ?>style/Oxygen/Oxygen_ie7.css" /><![endif]-->

Edit: 'lang/English/admin_common.php' and 'lang/English/admin_ban.php' are missing?

Edit:

Notice: Use of undefined constant FORUM_MAX_POSTSIZE - assumed 'FORUM_MAX_POSTSIZE' in Z:\repository\punbb_rc2\lang\English\misc.php on line 14

when viewing 'moderate.php?get_host=127.0.0.1'.

772

(20 replies, posted in PunBB 1.3 troubleshooting)

Wait... I don't get it. You said:

Merged new markup (based on markup by Paul Sullivan) into main PunBB 1.3 development branch.
Some functions added to functions.php. Updated install.php and db_update.php. URL schemes updated.
Lots of hooks added.
Mostly imported from FluxBB.

So, PunBB and FluxBB are the same, technically?

773

(6 replies, posted in PunBB 1.2 troubleshooting)

Anatoly wrote:
Garciat wrote:

Try: Profile > Settings > Signature Display > "Show user signatures in posts" (Click checkbox)

Please, specify the forum version you are telling about.

Latest?

774

(2 replies, posted in PunBB 1.2 discussion)

Never mind...

Actually, I think YAML looks more complicated than XML.