In the instructions, perhaps take the line after it and say "BEFORE, ADD" to reduce confusion?
7,426 2005-02-15 15:55
Re: Private Messaging for 1.2.x BETA (47 replies, posted in PunBB 1.2 modifications, plugins and integrations)
7,427 2005-02-15 11:19
Re: Private Messaging for 1.2.x BETA (47 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Yup, that's because the if statement you put that within when you edit the code is one only mods and admins can see...
Try moving it out of that block of code?
7,428 2005-02-13 23:15
Re: error on guest login (13 replies, posted in PunBB 1.2 troubleshooting)
Who knows, maybe some other change in the code
7,429 2005-02-13 23:00
Re: error on guest login (13 replies, posted in PunBB 1.2 troubleshooting)
#
#---------[ 12. FIND (line: ~708) ]-------------------------------------------
#
$remote_address = $_SERVER['REMOTE_ADDR'];
#
#---------[ 13. REPLACE WITH ]------------------------------------------------
#
$remote_address = isset($_SERVER['SHELL']) ? '127.0.0.1' : $_SERVER['REMOTE_ADDR'];
That's from the email digest code
7,430 2005-02-13 22:56
Re: error on guest login (13 replies, posted in PunBB 1.2 troubleshooting)
Erm, what are those lines in your code?
7,431 2005-02-13 22:36
Re: Styles? (4 replies, posted in PunBB 1.2 troubleshooting)
If a style is there, it's listed. Therefore, delete the styles you don't want
7,432 2005-02-13 22:32
Re: Maintenance login script not working (11 replies, posted in PunBB 1.2 troubleshooting)
I'll test it now...
Very odd. When I loaded the script it gave me the "You are in maintenence mode" message
adding the line:
define('PUN_TURN_OFF_MAINT', 1);
fixed it, and the forum worked fine after I used it
7,433 2005-02-13 20:19
Re: deleting a few messages at once (7 replies, posted in Feature requests)
7,434 2005-02-13 19:19
Re: deleting a few messages at once (7 replies, posted in Feature requests)
Oww, what Connor said
7,435 2005-02-13 17:41
Re: deleting a few messages at once (7 replies, posted in Feature requests)
Edit: What Connor said
7,436 2005-02-12 20:28
Re: error_reporting (4 replies, posted in General discussion)
And what you're thinking of is in php.ini, although it's the opposite of what you said
; - error_reporting = E_ALL [Code Cleanliness, Security(?)]
; By default, PHP surpresses errors of type E_NOTICE. These error messages
; are emitted for non-critical errors, but that could be a symptom of a bigger
; problem. Most notably, this will cause error messages about the use
; of uninitialized variables to be displayed.
7,437 2005-02-11 17:01
Re: would love to replace fudforum (7 replies, posted in Feature requests)
Not unless it's as a mod
7,438 2005-02-09 23:51
Re: [mysql] how does the table topics work? (4 replies, posted in PunBB 1.2 discussion)
select [columns] from forum_topics as ft inner join forum_posts as fp on ft.id = fp.topic_id where ft.posted = fp.posted
Just change forum_ to punbb_
Oh yes, and I normally use LIMIT 5 and restrict it to a certain forum
7,439 2005-02-09 19:28
Re: [mysql] how does the table topics work? (4 replies, posted in PunBB 1.2 discussion)
Once I get home I'll pull the code I use
7,440 2005-02-09 17:48
Re: [mysql] how does the table topics work? (4 replies, posted in PunBB 1.2 discussion)
Oooh, I did this before...
Use posted and the post time with the topic id and post topic?
7,441 2005-02-08 00:27
Re: PunPoll v1.2.3 (188 replies, posted in PunBB 1.2 modifications, plugins and integrations)
change $pun_root on that line to PUN_ROOT (it's no longer a variable, it's now a constant)
7,442 2005-02-07 17:04
Re: Odd error (4 replies, posted in PunBB 1.2 troubleshooting)
Enable debug mode?
7,443 2005-02-07 16:16
Re: User List question and image attachment upload (6 replies, posted in PunBB 1.2 discussion)
Just put near the beginning a check of $pun_user['is_guest']
7,444 2005-02-07 00:14
Re: [Release] Database Management Plugin (84 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Whoops, silly me
I really should pay more attention...
7,445 2005-02-06 23:40
Re: [Release] Database Management Plugin (84 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Mmm, I just realized that this doesn't have protection against a mod who knows the filename from using it...
7,446 2005-02-06 22:28
Re: Not sure if this has been posted before, but anyway... (4 replies, posted in PunBB 1.2 bug reports)
LOL, it does the same for me
7,447 2005-02-06 15:13
Re: How to uninstall a mod ? (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
If you mean a plugin, simply delete the file from the plugins folder.
If you mean a mod, I think you'll have to manually undo any database changes you made to install it, and then you'll need to do the mod install instructions in reverse (ie: put back in the original code, delete extra code, etc)
7,448 2005-02-06 14:51
Re: Mark topics as read v1.1 (92 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Enable debug mode and paste the exact error?
7,449 2005-02-06 14:50
Re: Upgrade from 1.2 to 1.2.1 problem (7 replies, posted in PunBB 1.2 troubleshooting)
That looks like you already ran it...
7,450 2005-02-06 14:09
Re: Mark topics as read v1.1 (92 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Did you run mod_install.php