Not without a modification I guess.
177 2007-05-15 14:16
Re: char msg[] = {78,111,119,32,72,105,114,105,110,103,0}; (4 replies, posted in General discussion)
This site reports the same news but dated back to March 2004, is this stuff really that old?
178 2007-05-14 18:08
Re: Vulnerable to spambots (89 replies, posted in PunBB 1.2 discussion)
I'm in agreement that some native spam-fight control should be integrated but I also don't expect it done tomorrow, so meanwhile you'd better install a mod for that.
179 2007-05-14 18:04
Re: PunBB video tutorials... i need suggestions please. (34 replies, posted in PunBB 1.2 discussion)
I've seen many users having problems finding out how to lock, stick and delete topics. In short: some basic moderation tutorial would be very useful to the community.
180 2007-05-14 11:22
Re: IE7 Fix(es) (27 replies, posted in PunBB 1.2 troubleshooting)
I think it's already part of 1.2.14
181 2007-05-13 18:44
Re: Problem with restoring database (6 replies, posted in PunBB 1.2 troubleshooting)
182 2007-05-13 18:10
Re: Wtf. "Error: Unable to insert search index words." (3 replies, posted in PunBB 1.2 troubleshooting)
183 2007-05-13 10:20
Re: Sub forum error (2 replies, posted in PunBB 1.2 troubleshooting)
Change
error('Unable to fetch category/forum list', __FILE__, __LINE__, $db->error());
with
die('Unable to fetch category/forum list', __FILE__, __LINE__, $db->error());
184 2007-05-12 14:32
Re: new and have a question (3 replies, posted in PunBB 1.2 troubleshooting)
No I mean with, because if you do without it's likely to save it as config.php.txt. Quotes would prevent that.
185 2007-05-12 05:50
Re: query help (7 replies, posted in PunBB 1.2 troubleshooting)
p. means a parameter taken from the "posts" table, infact you can see "posts AS p" at some point in the string. and t.subject is the subject field from the topics table (topics AS t). A mysql's handbook or a real programmer would explain better
186 2007-05-11 19:22
Re: Anyway to reset privacy options for users? (2 replies, posted in PunBB 1.2 discussion)
Try with
UPDATE (prefix)users SET email_setting = 2;
Change (prefix) with... well it's self-explaining.
187 2007-05-11 18:35
Re: What's the CSS editor all the groovy people are using? (16 replies, posted in General discussion)
I find Editplus to be good.
Un-fussy and straightforward with good syntax highlighting.(It's just a glorified text editor though)
Agreed in full.
188 2007-05-11 15:20
Re: Can I add one more Base URL? (9 replies, posted in PunBB 1.2 troubleshooting)
As far as I know it's not possible.
189 2007-05-11 13:55
Re: new and have a question (3 replies, posted in PunBB 1.2 troubleshooting)
Simple. Open any text editor. Windows has one, just hit Start then Run and type notepad
Copy the config displayed on screen in the text editor then do File -> Save as "config.php" (with quotes). Upload it to your FTP.
190 2007-05-11 10:07
Re: SunBB 0.1 released (23 replies, posted in General discussion)
IMO its kind of lame to fork some else's work then promote your utensil on their website.
I respect your criticism but, ain't this exactly what the GPL license allows to do? As long as Sonrep provides the source code for SunBB he has all the rights to do it.
191 2007-05-11 06:53
Re: SunBB 0.1 released (23 replies, posted in General discussion)
I don't mind a fork, I see a good reason for it to remove even more features from the board such as ranks or some fields in the profile menu. What are your plans for the future with SunBB?
192 2007-05-11 06:51
Re: PunBB Website (2 replies, posted in PunBB 1.2 show off)
Agreed, very clean and good looking. Kudos.
193 2007-05-09 20:19
Re: Admin editing forums error (5 replies, posted in PunBB 1.2 troubleshooting)
The link you linked is for Bad HTTP_REFERER, not Bad request.
Oops.
So you've fixed both now?
194 2007-05-09 17:04
Re: no smiles with IE (19 replies, posted in PunBB 1.2 troubleshooting)
Can I see a link to your forums please?
195 2007-05-09 16:42
Re: Admin editing forums error (5 replies, posted in PunBB 1.2 troubleshooting)
For the first one: did you make any change to the code?
For the second one: check this thread.
196 2007-05-09 16:38
Re: No post count in spam (1 replies, posted in PunBB 1.2 discussion)
Try this
post.php
change line 317
if (!$pun_user['is_guest'])
with
if (!$pun_user['is_guest'] && $fid != X)
Where X is the category ID.
NOTE: I did not test this.
197 2007-05-09 16:33
Re: no smiles with IE (19 replies, posted in PunBB 1.2 troubleshooting)
Those arrays look fine, make sure you didn't disable emoticons by default. Also try deleting the temporary internet files from IE.
198 2007-05-09 14:56
Re: no smiles with IE (19 replies, posted in PunBB 1.2 troubleshooting)
I remember this thing happened in like IE 5.5 when the cache space was full, try emptying your browser's cache.
199 2007-05-09 13:07
Re: [Release] Author Update (18 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Renaming the plugin prefix from AP_ to AMP_ will make it available for all the moderators, I don't know if there's a simple way to restrict it to some mods only.
200 2007-05-08 14:21
Re: Can I add one more Base URL? (9 replies, posted in PunBB 1.2 troubleshooting)
Two urls pointing to the same folder sharing the same database tables?