I would assume so
If install_mod.php doesn't, just edit the array in the file so it does
7,051 2005-05-24 12:47
Re: Mark topics as read v1.1 (92 replies, posted in PunBB 1.2 modifications, plugins and integrations)
7,052 2005-05-24 12:37
Re: Hacked! (9 replies, posted in PunBB 1.2 troubleshooting)
No, it happened before
These changes happened after
7,053 2005-05-24 12:32
Re: Hacked! (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
Or did you just re-download the files and upload them?
7,054 2005-05-24 12:12
Re: Hacked! (9 replies, posted in PunBB 1.2 troubleshooting)
Well then, I'm guessing the cause was the critical vulnerability in versions < 1.2.5
Here it is
If you updated to 1.2.5 you should be OK
7,055 2005-05-24 11:49
Re: Hacked! (9 replies, posted in PunBB 1.2 troubleshooting)
What version were you on?
7,056 2005-05-23 17:27
Re: Mark topics as read v1.1 (92 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Check the info, it's listed as working with 1.2.5
7,057 2005-05-23 13:50
Re: Mark topics as read v1.1 (92 replies, posted in PunBB 1.2 modifications, plugins and integrations)
The most recent?
7,058 2005-05-22 21:16
Re: 2 questions (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 2005-05-22 15:42
Re: 2 questions (9 replies, posted in PunBB 1.2 troubleshooting)
lol
There's a reason I like gmail
Which create topic button, the one on the really ugly page?
7,060 2005-05-22 15:33
Re: README: About feature requests (71 replies, posted in Feature requests)
Yes
7,061 2005-05-22 12:43
Re: Unified converter! (InvPB, miniBB, PhpBB, vBulletin & YabbSE) (105 replies, posted in PunBB 1.2 discussion)
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
7,062 2005-05-22 12:14
Re: Posting permissions (10 replies, posted in PunBB 1.2 troubleshooting)
Nope, it's the fault of the conversion script
What did you convert from?
7,063 2005-05-22 11:57
Re: Posting permissions (10 replies, posted in PunBB 1.2 troubleshooting)
Yes, change it to 3
Did you use the conversion tool?
7,064 2005-05-22 11:22
Re: Posting permissions (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
7,066 2005-05-20 01:59
Re: Multi - PunBB v2 (38 replies, posted in PunBB 1.2 modifications, plugins and integrations)
"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
Edit: Link isn't there now
7,067 2005-05-19 22:50
Re: Cache problem (2 replies, posted in PunBB 1.2 troubleshooting)
It's not meant to
There are mods that give that functionality though
ie: http://www.punres.org/files.php?pid=46
7,068 2005-05-19 19:10
Re: 2 questions (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 2005-05-19 15:47
Re: Spiders usergroup (5 replies, posted in PunBB 1.2 discussion)
Which you can't see with just a usergroup, you want user accounts
7,070 2005-05-19 01:04
Re: punbb adsense advertisement mod? (43 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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')
7,071 2005-05-18 10:38
Re: punbb adsense advertisement mod? (43 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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 2005-05-18 10:36
Re: Define a "cache directory" constant (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
7,073 2005-05-17 21:54
Re: Multi - PunBB v2 (38 replies, posted in PunBB 1.2 modifications, plugins and integrations)
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
7,074 2005-05-17 20:47
Re: Only guests' posts are not displayed. (5 replies, posted in PunBB 1.2 bug reports)
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 2005-05-17 15:01
Re: Define a "cache directory" constant (11 replies, posted in Feature requests)
Erm, writing it to a public folder isn't the best idea
I would talk to your ISP