1

(4 replies, posted in PunBB 1.2 troubleshooting)

Anyone??

2

(4 replies, posted in PunBB 1.2 troubleshooting)

elbekko wrote:

Have you used margin: auto to center it?

I'm not sure. I didn't edit this file. Someone else did, and it was just given to me to try and fix this issue with the profile page. It's driving me crazy! sad

3

(4 replies, posted in PunBB 1.2 troubleshooting)

Hi I edited the forum to be a set pixel width and centered on screen. everything works and looks fine excpet for the profile pages, they look like this: http://aycu08.webshots.com/image/4127/2 … 029_rs.jpg

Any ideas?!?!?

Smartys wrote:

PunBB is very quick in general
In regards to search, there is a beta search mod on PunRes which uses MySQL's FULLTEXT search abilities.
Cache? Not exactly sure what you mean by "reload", that's what it should do! tongue

Cool. Thanks i'll check that out.

What I mean is, not refreshing the board until the user clicks the link to the board, or hits the refresh button. But if the user clicks into a thread, and then hits the "Back" button in FF or IE, it goes back to the board but doesn't refresh it. I think this might help a bit.

What are some ways to increase the speed and performance of pun?

Is there an alternative search? The table seems to be growing quite large, and if multiple users are using the search, it could slow down the board.

Are there any other ways to speed it up? What about cache? I notice the board has to reload everytime you go back.

Anyone out there with large pun community that has had problems with speed, and has tips to increase performance?

Thanks

Does anyone still have this plugin?!?! His link doesn't work anymore

quaker wrote:

need to purge db and flush cache

How is this done?

Okay. I wrote this for mine, it works great. Try it for yours.

Open up include/common.php

Find line 1, enter this:

session_start();

Open up post.php, find this line:

// Did someone just hit "Submit" or "Preview"?
if (isset($_POST['form_sent']))
{

Right after this line, enter the following:

    $stamp = date("U");
        if(($_SESSION["LastPost"] + 35) > $stamp) {
            
            $errors[] = "You must wait 35 seconds between posts.";
            
        }

Find this line of code:
redirect('viewtopic.php?pid='.$new_pid.'#p'.$new_pid, $lang_post['Post redirect']);

Right BEFORE it, enter this code:

$_SESSION["LastPost"] = date("U");

You can change the time limit to anything you like. It's set at 35 seconds, but just change it in the code to whatever you want.

Good luck.

Instead of it going: 1,2,3 ... 1500

How can I make it just go 1-25 and that is it?

TIA

Also, anyone have any tips to speed up pun? Mine has 300,000+ posts and it's starting to really bog down.

Like, ban any IP that starts with lets say 202.33*

?? make sense?

Involves implimenting tough security measures into my punbb. If you are an expert in php, security, and punbb, please email me for further details.

averageinmate@yahoo.com

12

(1 replies, posted in PunBB 1.2 troubleshooting)

how can I replace the standard ban message that a banned user gets, and instead, redirect them to another site, like, google.com or something?

thanks