config.php
1,576 2006-08-30 17:34
Re: What is the database prefix used for? (30 replies, posted in PunBB 1.2 discussion)
1,577 2006-08-30 16:27
Re: What editor do you use for php? (114 replies, posted in Programming)
Well, I just tried UltraEdit, and, well, I don't like it
*wanders off to Dreamweaver*
1,578 2006-08-30 10:54
Re: Very slow search (query) (16 replies, posted in PunBB 1.2 troubleshooting)
Well, %text% is a wildcard match. It matches everything with 'text' in it
1,579 2006-08-29 21:28
Re: Spam Prevention (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
rofl, indeed, this has no use...
1,580 2006-08-29 21:11
Re: Spam Prevention (6 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I hope those outputted characters are actually HTML-encoded ASCII characters (like @ for, erm a I think)... else a bot can be easily adjusted
1,581 2006-08-29 19:41
Re: What is the database prefix used for? (30 replies, posted in PunBB 1.2 discussion)
No need to change the database, as long one of the forums has a prefix
1,582 2006-08-29 16:49
Re: Bot attack in punbb forum (16 replies, posted in PunBB 1.2 troubleshooting)
Powered by eNepal media
© Copyright 2005?2006 Parikrama WWW team
Yeah, that's an evil thing to do >=/
1,583 2006-08-29 15:56
Re: What is the database prefix used for? (30 replies, posted in PunBB 1.2 discussion)
Well, first of all, install the two forums. Assign each of them a prefix, like inst1_ and inst2_. Then you decide which installation to use as the main one. After that you just edit the other installation to have the chosen prefix for the users table instead of ".$db->prefix.". So you'd edit your second installation to work with the first like this:
Replace
".$db->prefix."users
with
inst1_users
I know Dreamweaver can replace in all the files of the local site etc.
1,584 2006-08-29 14:19
Re: Database - when is the post posted? (3 replies, posted in PunBB 1.2 troubleshooting)
You're correct about the field
What you see there is called a Unix timestamp. It counts the elapsed seconds since January 1 1970.
You can decently display things of this with PHP's date() function.
1,585 2006-08-29 10:26
Re: What is the database prefix used for? (30 replies, posted in PunBB 1.2 discussion)
The best thing would be to use a program that goes replacing in all the files =P Just change
".$db->prefix."users
to
"whateveryourprefixmaybe_users
And it'll be solved.
1,586 2006-08-28 20:03
Re: Myspace PunBB Script (11 replies, posted in PunBB 1.2 show off)
Looking nice
1,587 2006-08-28 16:04
Re: style a single nav link? (25 replies, posted in PunBB 1.2 modifications, plugins and integrations)
use html.
example:0 = <font style="background-color: #0000ff"><a href="URL">LINK</a></font>
Eww.
0 = <a href="link" style="color: #FF0000">Linkeh</a>
1,588 2006-08-28 14:54
Re: MYSQL Read-Only possible?? (21 replies, posted in General discussion)
I'd say have it reset every hour and leave it at that. Because otherwise some mods (ones that need delete access) won't work.
Yeah, that's the best option.
I wonder how you're going to have it all fit in tho, as many mods modify the same query etc.
1,589 2006-08-28 14:10
Re: MYSQL Read-Only possible?? (21 replies, posted in General discussion)
Myeah, well, I'm not going to try removing all deletes now
Have fun with it ^^
1,590 2006-08-28 14:06
Re: MYSQL Read-Only possible?? (21 replies, posted in General discussion)
DELETE is needed. First error popped up here:
An error was encountered
Error: Unable to delete from online list.
1,591 2006-08-28 13:53
Re: MYSQL Read-Only possible?? (21 replies, posted in General discussion)
then going on to my other subject. Would this mean admin could not delete anything.
Yes, including users and search indexes =P I'm not sure if PunBB works on a MySQL account without delete. It might.
1,592 2006-08-28 13:50
Re: Admin power... (6 replies, posted in PunBB 1.2 discussion)
Unless the DB management and/or the file editing plugin is installed, no.
1,593 2006-08-28 13:48
Re: MYSQL Read-Only possible?? (21 replies, posted in General discussion)
Sure, make a user account that doesn't have INSERT, UPDATE or DELETE privileges.
1,594 2006-08-28 13:47
Re: Admin power... (6 replies, posted in PunBB 1.2 discussion)
Delete everything in the forum, delete all users, ...
Pretty much everything but clear the DB and delete the files =/
1,595 2006-08-28 11:59
Re: Multigroup mod for PunBB 1.2 (20 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Is this Modification still up to date?
I doubt it =/
1,596 2006-08-28 10:07
Re: when i add bans display "php no permission to access cache dir" (9 replies, posted in PunBB 1.2 troubleshooting)
It doesz no harm, it just forces a recreation of your cache files, which would've solved your problem
1,597 2006-08-27 21:21
Re: Default Features In PunBB 1.3 (5 replies, posted in PunBB 1.2 discussion)
* New markup and CSS.
* Search engine optimized "Fancy URLs" via mod rewrite.
* Proper extension support - Extend the functionality without touching a line of PHP code.
* New topic read marking system.
* Improved syndication - Feeds extended to include individual topics. Also feeds in the form of Atom and XML format.
* Post moderation queue.
* Multiple moderator groups.
* Per-style templates - It will be possible to have one set of templates per style.
I bet that's not all tho
And for the max login attempts... no idea.
1,598 2006-08-27 15:41
Re: Closed threads? (5 replies, posted in PunBB 1.2 discussion)
Admins and mods normally.
1,599 2006-08-27 15:38
Re: Closed threads? (5 replies, posted in PunBB 1.2 discussion)
The option is at the bottom of the page
1,600 2006-08-26 19:21
Re: Bug with smilies larger than default (6 replies, posted in PunBB 1.2 troubleshooting)
Erm, in your stylesheet somewhere. If it isn't already in it, put it in.
Something like this:
.pun div.postright img { vertical-align: middle; }