3,126

(89 replies, posted in PunBB 1.2 discussion)

MadHatter wrote:

i'm not talking about a captcha solution or extension.  I'm talking about re-thinking the sign up process so that automated registrations are overly difficult or infeasible.

And how would you do that?

3,127

(4 replies, posted in PunBB 1.2 discussion)

Importing is not what you want, importing would modify our repository wink
Try exporting

3,128

(4 replies, posted in PunBB 1.2 discussion)

etoh wrote:

The PunBB SVN is available through the web browser to everyone right? If that's the case, why is it password protected through my SVN program? Because I think that's mean, and also kind of silly since we can download it file by file anyway (afaik).

(For reference: TortoiseSVN 1.4.3, XP 32bit)

Are you exporting, as opposed to checking out?

3,129

(5 replies, posted in PunBB 1.2 troubleshooting)

Talk to your host smile

Moved to Modifications

3,131

(5 replies, posted in PunBB 1.2 troubleshooting)

I would check your error log and see what errors are appearing there

I actually had no problem loading the index in FF 1.5

3,132

(6 replies, posted in PunBB 1.2 troubleshooting)

The RSS? The encoding is $lang_common['lang_encoding'], where the language is the language seen by Guests
The HTML's encoding depends on the encoding of the page in which it's placed (and the encoding of the database)

3,133

(3 replies, posted in PunBB 1.2 troubleshooting)

I don't think the database change was related to an upgrade, it sounds like you did a bad import

And as for auto-incrementing columns:
http://punbb.org/docs/dev.html#dbtables
search the page for auto-incrementing

3,134

(5 replies, posted in PunBB 1.2 discussion)

I believe you can't smile

Why is it always the same user? Because your query doesn't have a WHERE statement that specifies which user you're looking at. tongue
Your query grabs all the rows from the users table and your code grabs the first row from the set and spits out data based on that

3,136

(89 replies, posted in PunBB 1.2 discussion)

Any massive number of requests can take down your server: that's a Denial of Service attack smile
And it isn't as if PunBB has no way to deal with the spam: there are mods, there is banning, there is deletion, there is a usergroup system, there are forum permissions.

3,137

(89 replies, posted in PunBB 1.2 discussion)

Moved to PunBB Discussion
Spam is a serious issue, but unless a mistake in the code is allowing something it shouldn't, it isn't a bug smile

There are plenty of mods that allow you to deal with spam, and 1.3 will most certainly have official extensions to help fight spam

3,138

(1 replies, posted in General discussion)

Moved to General Discussion
That's not PunBB wink

I would undo whatever changes you have made and try applying them again

3,140

(13 replies, posted in PunBB 1.2 troubleshooting)

Yes, it is. In case you didn't notice, they have the same containing div: you would need to alter footer.php to edit the contents of it.

3,141

(13 replies, posted in PunBB 1.2 troubleshooting)

Aha, I see
http://ice-warez.net/punbb/include/template/main.tpl
You removed <pun_footer> wink

You can delete my account now tongue

3,142

(13 replies, posted in PunBB 1.2 troubleshooting)

Do you need admin to solve the problem?

It would help me figure out where the problem is smile
I just registered as Smartys

Moved to Modifications wink

3,144

(13 replies, posted in PunBB 1.2 troubleshooting)

OK, how about viewtopic.php? And any chance I could get a link to your forum as well?

OK, so in config.php you need to set the cookie_domain to .example.com
That way, the cookie will work over all subdomains of example.com

Make sure you made the modifications for the arcade mod correctly

3,147

(13 replies, posted in PunBB 1.2 troubleshooting)

Could you paste the contents of your footer.php?

3,148

(2 replies, posted in PunBB 1.2 troubleshooting)

This has been an issue before with Wordpress: could you paste the full code of the page where you're trying to add PunBB?

3,149

(2 replies, posted in PunBB 1.2 troubleshooting)

That has nothing to do with it wink

grudon: Could you paste some of the lines around that line? I think the error is a line or two above it

3,150

(7 replies, posted in PunBB 1.2 troubleshooting)

$result = $db->query('SELECT u.email, u.title, u.url, u.location, u.use_avatar, u.signature, u.email_setting, u.num_posts, u.registered, u.admin_note, p.id, p.poster AS username, p.poster_id, p.poster_ip, p.poster_email, p.message, p.hide_smilies, p.posted, p.edited, p.edited_by, g.g_id, g.g_user_title, o.user_id AS is_online FROM '.$db->prefix.'posts AS p INNER JOIN '.$db->prefix.'users AS u ON u.id=p.poster_id INNER JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id LEFT JOIN '.$db->prefix.'online AS o ON (o.user_id=u.id AND o.user_id!=1 AND o.idle=0) WHERE p.topic_id='.$id.' AND p.deleted=0 ORDER BY p.id LIMIT '.$start_from.','.$pun_user['disp_posts'], true) or error('Unable to fetch post info', __FILE__, __LINE__, $db->error());