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?
You are not logged in. Please login or register.
PunBB Forums → Posts by Smartys
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?
Importing is not what you want, importing would modify our repository
Try exporting
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?
Talk to your host
Moved to Modifications
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
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)
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
I believe you can't
Why is it always the same user? Because your query doesn't have a WHERE statement that specifies which user you're looking at.
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
Any massive number of requests can take down your server: that's a Denial of Service attack
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.
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
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
Moved to General Discussion
That's not PunBB
I would undo whatever changes you have made and try applying them again
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.
Aha, I see
http://ice-warez.net/punbb/include/template/main.tpl
You removed <pun_footer>
You can delete my account now
Do you need admin to solve the problem?
It would help me figure out where the problem is
I just registered as Smartys
Moved to Modifications
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
Could you paste the contents of your footer.php?
This has been an issue before with Wordpress: could you paste the full code of the page where you're trying to add PunBB?
That has nothing to do with it
grudon: Could you paste some of the lines around that line? I think the error is a line or two above it
$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());
PunBB Forums → Posts by Smartys
Powered by PunBB, supported by Informer Technologies, Inc.