Anyone??
2 2006-08-18 21:46
Re: div problems... (4 replies, posted in PunBB 1.2 troubleshooting)
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!
3 2006-08-18 18:50
Topic: div problems... (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?!?!?
4 2006-07-28 23:29
Re: Ways to increase speed and performance? (14 replies, posted in PunBB 1.2 discussion)
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!
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.
5 2006-07-28 23:00
Topic: Ways to increase speed and performance? (14 replies, posted in PunBB 1.2 discussion)
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
6 2006-07-28 22:51
Re: PunBB Firefox Search Plugin Available (11 replies, posted in General discussion)
Does anyone still have this plugin?!?! His link doesn't work anymore
7 2006-07-27 23:27
Re: Limit the pages in the pagination? (3 replies, posted in PunBB 1.2 troubleshooting)
need to purge db and flush cache
How is this done?
8 2006-07-27 22:36
Re: Can't block spam : really very annoying (27 replies, posted in PunBB 1.2 troubleshooting)
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.
9 2006-07-27 22:25
Topic: Limit the pages in the pagination? (3 replies, posted in PunBB 1.2 troubleshooting)
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.
10 2006-06-16 15:37
Topic: can you ban using IP range? (1 replies, posted in PunBB 1.2 troubleshooting)
Like, ban any IP that starts with lets say 202.33*
?? make sense?
11 2006-06-16 13:36
Topic: Willing to pay someone with extensive knowledge in PHP and punBB (0 replies, posted in Programming)
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 2006-06-15 21:19
Topic: replace ban message? (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