I have no idea, I'm not using it atm, so can't show it to you.
701 2007-05-19 14:30
Re: Links Page 1.2 - has somebody already added description? (9 replies, posted in PunBB 1.2 modifications, plugins and integrations)
702 2007-05-19 13:21
Re: Links Page 1.2 - has somebody already added description? (9 replies, posted in PunBB 1.2 modifications, plugins and integrations)
It just adds a page, the main functionality of the board isn't affected.
703 2007-05-14 14:55
Re: Sending a post, an error appear, but the message is sending (15 replies, posted in PunBB 1.2 troubleshooting)
Well, it's still an ugly hack, but I don't know of a better way to fix it atm.
704 2007-05-13 20:14
Re: Sticky Function Missing (13 replies, posted in PunBB 1.2 troubleshooting)
Maybe you're not a moderator/administrator?
705 2007-05-13 19:36
Re: global $db doesn't work?!? (2 replies, posted in PunBB 1.2 troubleshooting)
706 2007-05-11 21:20
Re: Sending a post, an error appear, but the message is sending (15 replies, posted in PunBB 1.2 troubleshooting)
To be honest, I have no idea. Do you intend to have a large forum?
707 2007-05-11 18:41
Re: PHP: include (6 replies, posted in Programming)
Your problem is that you need to declare a variable global at the start of every function. Even in classes. So put
global $db;
as the first line of your function and it'll work.
708 2007-05-11 14:47
Re: What's the CSS editor all the groovy people are using? (16 replies, posted in General discussion)
Dreamweaver, but I don't let it generate my CSS.
709 2007-05-11 14:11
Re: SunBB 0.1 released (23 replies, posted in General discussion)
Did you actually add any hooks?
710 2007-05-11 14:03
Re: Sending a post, an error appear, but the message is sending (15 replies, posted in PunBB 1.2 troubleshooting)
This is probably an ugly hack, but try this instead of the current line 149 in search_idx.php:
$db->query('INSERT INTO '.$db->prefix.'search_words (word) VALUES'.implode(',', preg_replace('#^(.*)$#', '(\'\1\')', $new_words)).' On DUPLICATE KEY UPDATE word = word') or error('Unable to insert search index words', __FILE__, __LINE__, $db->error());
711 2007-05-10 15:35
Re: Sending a post, an error appear, but the message is sending (15 replies, posted in PunBB 1.2 troubleshooting)
Hrmm, that's odd. Try running the following query in phpMyAdmin:
TRUNCATE TABLE prefix_search_words
Replace "prefix_" with your prefix.
Then try rebuilding the search index again.
712 2007-05-10 08:29
Re: Sending a post, an error appear, but the message is sending (15 replies, posted in PunBB 1.2 troubleshooting)
Rebuilding the search index should help. It'll do nothing special, but if you have a large forum it could take a while.
713 2007-05-09 17:35
Re: no smiles with IE (19 replies, posted in PunBB 1.2 troubleshooting)
Your smilies display in IE, but just really, really small =/
Try completely removing the width="" height="" part.
714 2007-05-09 13:44
Re: Sending a post, an error appear, but the message is sending (15 replies, posted in PunBB 1.2 troubleshooting)
What is the full error with debug mode enabled?
And try rebuilding your search index.
715 2007-05-08 21:14
Re: Punbb site 500 error (35 replies, posted in PunBB 1.2 troubleshooting)
PunBB doesn't use transactions AFAIK. And closing a non-existant connection should issue a mere warning.
716 2007-05-08 10:10
Re: Punbb site 500 error (35 replies, posted in PunBB 1.2 troubleshooting)
Could you try running an unmodded version?
717 2007-05-07 08:10
Re: Punbb 1.3 in collabnet? (2 replies, posted in PunBB 1.2 discussion)
1.3 isn't even in public alpha/beta yet, so no point in adding it unless they have a special section for it.
718 2007-05-06 19:29
Re: Punbb site 500 error (35 replies, posted in PunBB 1.2 troubleshooting)
Hrmm, just a wild guess, but does your server configuration have any special settings for images?
719 2007-05-06 19:20
Re: Punbb site 500 error (35 replies, posted in PunBB 1.2 troubleshooting)
Have you looked in the error and access log? According to this line:
[Sun May 06 16:47:42 2007] [error] [client 82.110.105.8] adding: tactical-gaming.co.uk-error_log
There is another one that might have more info?
720 2007-05-06 16:33
Re: "Mark as read" & "Show news posts since last visit" does not appear... (5 replies, posted in PunBB 1.2 troubleshooting)
Do you have miniportal or something like that?
721 2007-05-06 13:18
Re: need a little help with ajax (9 replies, posted in Programming)
I don't see how it's unpractical: it shows the error perfectly.
And you can always install Console², that allows you to filter errors.
722 2007-05-05 19:45
Re: need a little help with ajax (9 replies, posted in Programming)
They work about the same as in PHP; You can escape them, put special characters (\n) in double quotes, ...
And if something doesn't work, I suggest you open up your error console
723 2007-05-04 17:02
Re: need help converting from e107 to punbb (9 replies, posted in Programming)
He gave me access to his admin panel
724 2007-05-04 15:37
Re: need help converting from e107 to punbb (9 replies, posted in Programming)
I already fixed it, it was due to 1&1 being noob and splitting his databases over different servers with different users.
725 2007-05-04 15:35
Re: need a little help with ajax (9 replies, posted in Programming)
Execute it through the body's onload handler.