I would assume so
If install_mod.php doesn't, just edit the array in the file so it does

7,052

(9 replies, posted in PunBB 1.2 troubleshooting)

No, it happened before
These changes happened after

7,053

(9 replies, posted in PunBB 1.2 troubleshooting)

Erm, did you upgrade to 1.2.5? Because if you did it properly using the patch you already changed that line smile
Or did you just re-download the files and upload them?

7,054

(9 replies, posted in PunBB 1.2 troubleshooting)

Well then, I'm guessing the cause was the critical vulnerability in versions < 1.2.5 smile
Here it is
If you updated to 1.2.5 you should be OK

7,055

(9 replies, posted in PunBB 1.2 troubleshooting)

What version were you on?

Check the info, it's listed as working with 1.2.5 smile

The most recent?

7,058

(9 replies, posted in PunBB 1.2 troubleshooting)

OK, looking at the code for the mod, there are 3 reasons why that would happen
1. $_POST['posts'] isn't set or is empty. That shouldn't be happening, since you're checking the boxes
2. $postcheck isn't numeric. Unless you're fiddling around intentionally, that can't happen
3. You're not sending the create_topic variable. But that check should be redundant, since before anything else happens it checks to make sure you are sending it.

Edit: I can't remember if this step is a leftover from the old mod (it doesn't look necessary), but we might as well try
open moderate.php
FIND

define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';

AFTER, ADD

$cur_user['disp_posts'] = 1000; // Ugly hack to "save" alot of steps... sorry.

7,059

(9 replies, posted in PunBB 1.2 troubleshooting)

lol
There's a reason I like gmail tongue
Which create topic button, the one on the really ugly page?

7,060

(71 replies, posted in Feature requests)

Yes

OK
There's an issue with converting that sets the Guest account to have member permissions.

To fix:

For non PHPBB users:
open [board you're converting from]/start.php
FIND

$db->query('INSERT INTO '.$_SESSION['pun']."users (username, password, email) VALUES('Guest', 'Guest', 'Guest')") or myerror('Unable to add guest user', __FILE__, __LINE__, $db->error());

REPLACE WITH

$db->query('INSERT INTO '.$_SESSION['pun']."users (group_id, username, password, email) VALUES(3, 'Guest', 'Guest', 'Guest')") or myerror('Unable to add guest user', __FILE__, __LINE__, $db->error());

For PHPBB users:
FIND

$db->query('INSERT INTO '.$_SESSION['pun'].'users (id, username, password, email) '."VALUES('1', 'Guest', 'Guest', 'Guest')") or myerror('Unable to add Guest-user', __FILE__, __LINE__, $db->error());

REPLACE WITH

$db->query('INSERT INTO '.$_SESSION['pun'].'users (group_id, id, username, password, email) '."VALUES(3, '1', 'Guest', 'Guest', 'Guest')") or myerror('Unable to add Guest-user', __FILE__, __LINE__, $db->error());

All this does is add the correct group_id setting smile

7,062

(10 replies, posted in PunBB 1.2 troubleshooting)

Nope, it's the fault of the conversion script
What did you convert from?

7,063

(10 replies, posted in PunBB 1.2 troubleshooting)

Yes, change it to 3
Did you use the conversion tool?

7,064

(10 replies, posted in PunBB 1.2 troubleshooting)

Yes, but check the users table and see what the group id set for the Guest account is smile

7,065

(9 replies, posted in PunBB 1.2 troubleshooting)

sent

phoenixtek wrote:

"I entered ' as an email and it accepted it "
It did, but you have to verify it... by clicking the link the email sent u.

And it still spams it with stuff I assume.
There's a reason to check validity.
Now, let me run it on a server without magic_quotes enabled and get back to you smile
Edit: Link isn't there now tongue

7,067

(2 replies, posted in PunBB 1.2 troubleshooting)

It's not meant to wink
There are mods that give that functionality though
ie: http://www.punres.org/files.php?pid=46

7,068

(9 replies, posted in PunBB 1.2 troubleshooting)

1. If you want it (it's still very ugly, I haven't worked on it and I don't plan to) I can email you it maybe (I'll see if I still have a copy)

7,069

(5 replies, posted in PunBB 1.2 discussion)

Which you can't see with just a usergroup, you want user accounts smile

Mmm, I'm tempted to add functionality to do this in the future (it will be much easier to do, just check the groups on the plugin screen).
The correct code:

if ($post_count == '1' && $adsense_config['google_adsense_enabled'] == '1' && $pun_user['g_id'] > '2' && $pun_user['g_id'] != '5')

In the if statement

if ($post_count == '1' && $adsense_config['google_adsense_enabled'] == '1')

Make it

if ($post_count == '1' && $adsense_config['google_adsense_enabled'] == '1' && $pun_user['g_id'] != 'num')

where num is the group you want to hide it from

7,072

(11 replies, posted in Feature requests)

Since the folders weren't meant to be moved around anyway, a better idea (at least IMO) is a way to disable caching

phoenixtek wrote:

The email address also isn't checked for validity < Not sure what u mean by this

I entered ' as an email and it accepted it smile

Rickard wrote:

IMPORTANT: Two rather annoying bugs have surfaced since the release of 1.2.5. See this post for instructions on how to fix them.

7,075

(11 replies, posted in Feature requests)

Erm, writing it to a public folder isn't the best idea
I would talk to your ISP