So, I don't know if I'm concerned with the bug you link (for php 4.3.2).

The fix is what provided the error message I saw on your page

And disabling gzip removed the error for me, which seems to have normalized the layout. If there's still a problem you'll have to point it out to me

I believe it's something related to this:
http://bugs.php.net/bug.php?id=24315

This is a fix for Wordpress, but it accomplishes the same thing:
http://weblogtoolscollection.com/archiv … 12-mingus/

The alternative is to disable gzip output

4,478

(2 replies, posted in PunBB 1.2 troubleshooting)

I fixed your post: the folder didn't have a capital B wink

I'm not having any issues seeing/posting things

Elbekko wrote a mod to allow you to customize it. Other than that, there;s always the user management plugin

Moved to Integration

post.php, edit.php, there's a strlen check
But it's set to the maximum number of characters allowed by the datatype: you'll need to adjust the datatype as well

smartys, are you refering to copyright issues?

I'm referring to the rules the subSilver SDK is released under wink

This is an open source project, so anybody can come and take whatever ideas/code/look/whatever they want, as long as they do it in agreement with punnbb's licence.

That project uses a different license than PunBB, but it most likely isn't directly based on PunBB's code

Or just make a redirect forum. Set up the permissions and you'll see it as Administrator and Guests will see it and that's it

Just a normal text editor

I've never used AdBrite, but I would just replace the HTML for Adsense in the example with the HTML for AdBrite

http://punbb.org/forums/viewtopic.php?pid=32668#p32668
As Rickard said, there's plenty of topics on this

4,487

(2 replies, posted in PunBB 1.2 troubleshooting)

Upload a fresh copy of post.php: if you didn't modify it, someone did wink

4,488

(4 replies, posted in Programming)

The query:

$query = 'SELECT count(s.topic_id) as topicct, t.subject, t.id AS topic_id FROM '.$db->prefix.'statviews_all s INNER JOIN '.$db->prefix.'topics t ON s.topic_id=t.id WHERE logind >= \''.$start.'\' and logind <= \''.$end . '\' group by topic_id order by topicct DESC';
      $result = $db->query($query) or error('unable to fetch topic information', __FILE__, __LINE__, $db->error());

That should fix it

4,489

(5 replies, posted in PunBB 1.2 troubleshooting)

You'll have to undo the changes you made to your database or finish the changes to your files

4,490

(5 replies, posted in PunBB 1.2 troubleshooting)

Sounds like you didn't finish installing a poll mod smile

4,491

(5 replies, posted in PunBB 1.2 troubleshooting)

Enable debug mode, paste the full error

4,492

(2 replies, posted in PunBB 1.2 discussion)

This is not a PayPal help forum, if you're having issues with PayPal direct your questions to them
Closed

I don't see a problem in IE7, but in Firefox the forum seems like it's trying to stay in the center (but I still don't have to highlight anything).

Because square brackets need to be URL encoded:
%5B%5D

If those icons are what I think they are (from phpBB), that project might have some issues

http://dnfbb.sourceforge.net/ wrote:

PunBB is currently available, however no Firebird port is yet available, and the prospect of a port to Firebird does not look likely in the near future.

However, if you're looking for something written in C#, that's your forum wink

You could try opening PunBB's search.php and changing

<form id="search" method="get" action="search.php">

to something like

<form id="pun_search" method="get" action="search.php">

I'm pretty sure that will work

4,498

(10 replies, posted in PunBB 1.2 troubleshooting)

fmimoso wrote:

I'm having this same problem with my punbb installation. But I found the problem. smile

My site accepts http://www.mysite.com and http://mysite.com.
If your last logout was on http://www.mysite.com you can't login in http://mysite.com.
You should try to login with either one or the other.

Try it yourself:
1 - login using http://www.mysite.com
2 - logout
3 - login using http://mysite.com
4 - you get the login successful message, but after that you get index.php as guest

smile

The fix for that is to open up config.php and set $cookie_domain to .mysite.com smile
One cookie will then work for both domains

Moved to Integration
There's a conflict between PunBB's markup and your stylesheets. You have a div with an ID of search and PunBB's search form uses that same ID.

4,500

(30 replies, posted in PunBB 1.2 discussion)

I'm in PunBB's room on Quakenet

And here's code that should work

$result = $db->query('SELECT p.topic_id FROM '.$db->prefix.'posts AS p WHERE p.id IN('.implode(',', $search_ids).')', true) or error('Unable to fetch topic IDs', __FILE__, __LINE__, $db->error());

$tids = array();
while (list($tid) = $db->result($result))
{
    $tids[] = $tid;
}

$result = $db->query('SELECT t.id FROM '.$db->prefix.'topics AS t INNER JOIN '.$db->prefix.'forums AS f ON f.id=t.forum_id LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.id IN('.implode(',', $tids).')'.$forum_sql, true) or error('Unable to fetch topic list', __FILE__, __LINE__, $db->error());