6,051

(71 replies, posted in News)

Strofanto wrote:
tassoman wrote:

How to roll up version from 1.2.10 to 1.2.11 for guyz who edited by hand?

Go to the extras folder in the zip archieve, get the x_to_y_update.php.

Edit line 31 and add '1.2.10' to the array
Edit line 32 and replace with $update_to = '1.2.11';

Upload, run and then remove the script.

What are you talking about? tongue
Download a copy of PunBB, look in the extras folder, there's a 12_to_1211_update.php file. Upload it to your forum directory, run it, delete it tongue

If their custom rules were grabbed prior to December 1 2005 or so from a list similar to the one I posted, then yes, that's the problem: they're using the bad rule tongue

6,053

(11 replies, posted in Feature requests)

elbekko wrote:

It would be quite the job to do that, but I suppose it's possible... You'd have to edit quite alot of queries tho.

Nope smile
get_remote_addr(): just change it so it always returns 0.0.0.0 and you should be fine with the IP thing tongue

6,054

(5 replies, posted in PunBB 1.2 troubleshooting)

No, Rickard means did you specify to the converter that your database tables for SMF are using the prefix smf_? Because the converter doesn't seem to know that

Once again, PunBB does not offer free subdomains
What you linked to was someone running a copy of PunBB on their site off of a subdomain called punbb on their site.
If it was a subdomain on this site, it would have been something like tehsig.punbb.org
MyPunBB offers free forums on a subdomain, as was said. If you want to check it out, go to http://www.mypunbb.com

6,056

(1 replies, posted in PunBB 1.2 troubleshooting)

link?

6,057

(33 replies, posted in PunBB 1.2 troubleshooting)

peterg wrote:

I got a new code from SpinkBB and opend a new 'Text document'
I uploaded the new cs  files but it didnt work again.

Should also i try to paste the code into a "Rich Text document" ,  or "word pad document"?

I just looked at SpinkBB.css
You still have this code

/* Import the basic setup styles */
@import url("../../imports/base.css");
/* Import the colour scheme */
@import url("../../imports/spinkbb_cs.css");

It should be, as other people have said:

/* Import the basic setup styles */
@import url("imports/base.css");
/* Import the colour scheme */
@import url("imports/spinkbb_cs.css");

6,058

(33 replies, posted in PunBB 1.2 troubleshooting)

peterg wrote:

i'll check.


Yes its in there. Contents for forum/style/imports    i can see the spinkbb_cs.css file

Is it capitalized (or rather, non-capitalized), because it still returns a 404

http://www.gotroot.com/downloads/ftp/mo … /jitp.conf
That's the updated version

I was right then wink
You're using old mod_security rules

Check the error log, see what you find there?
I have a feeling I know (old mod_security rules with a bad rule in them), but you should check

6,062

(2 replies, posted in PunBB 1.2 discussion)

  Originally based on PunBB by Rickard Andersson

That's from the source code, so yes, it's based on PunBB (legally).

6,063

(1 replies, posted in PunBB 1.2 discussion)

http://punbb.org/forums/viewtopic.php?pid=58707#p58707
It says it's fixed, but apparently it's not wink

This thread doesn't have a fix, keep looking for it (I posted another thread with various fixes)

That gets the first username from the resultset and puts it into $usernames wink
You'd want to do a while loop to get it into an array

Paul: He means like what he did

[b]invalid [i]markup[/b]?[/i]

Where the tags aren't nested properly

I'm confused: why not just use a database table? hmm

6,068

(18 replies, posted in Feature requests)

Just comment the lines
update_search_index('post', $new_pid, $message);
in post.php
update_search_index('edit', $id, $message, $subject);
and
update_search_index('edit', $id, $message);
in edit.php
and that should stop indexing

It's the function PunBB uses to sort wink
The fix is just to replace the calls to natsort (one for languages, one for styles) with a call to natcasesort

6,070

(7 replies, posted in PunBB 1.2 bug reports)

taralee teds wrote:
Smartys wrote:

You have to run a repair command on the posts table
the SQL for that is "repair table posts"

Our administrator would do that - but the post table is missing! What do we do now......:-(

That's not the error you would get then (well, I guess if it's horribly corrupted), but ah well
Restore the forum from a backup?

6,071

(7 replies, posted in PunBB 1.2 troubleshooting)

You can't add URL parameters to a require if you're getting the stuff from the local filesystem (it looks for a file named extern.php?action=active&show=5)

http://punbb.org/forums/viewtopic.php?id=7486
among other discussions that have been had tongue
So yeah, there are advantages to XHTML 1.0 Strict while still serving it as text/html

6,073

(7 replies, posted in PunBB 1.2 bug reports)

You have to run a repair command on the posts table
the SQL for that is "repair table posts"

No
I think you would want this

6,075

(11 replies, posted in PunBB 1.2 troubleshooting)

Make sure display_errors is enabled?