1,426

(25 replies, posted in General discussion)

You sure you've copied it across correctly? That last script I linked works spot bollock. I double checked that one before copying it across. What are your logs saying?

1,427

(8 replies, posted in PunBB 1.2 troubleshooting)

Convert the database information to UTF8. I included the needed info in that thread to convert both pgsql and mysql db's to UTF8. smile

1,428

(25 replies, posted in General discussion)

http://outgoing.bauchan.org/unix/contactcr.txt

1,429

(25 replies, posted in General discussion)

My cockup. big_smile Redownload that file. Should be working fine now. Have made the captcha on/off configurable too. The two options are near the top of the file. Set to '1' to enable the rbl check and captcha respectively.

$checkrbl = '0';
$usecaptcha = '0';

1,430

(25 replies, posted in General discussion)

quaker wrote:

did u look at the spamhaus mod trying to integrate it with the contact.php?

I posted that rbl updated version several days ago for you to try out. That's the one I was asking about. big_smile

http://punbb.org/forums/viewtopic.php?id=17037

1,431

(25 replies, posted in General discussion)

It probably wouldn't be much use for a standard'ish PunBB install. It's tied in to a highly adapted setup. Plus, the uploads are through an addition to the admin section, not user accessible. Also, the installer is only written for PostgreSQL. big_smile I may post the code later on, when it's finished, if someone else wants to do all the standardising and adaptation for a standard PunBB. I personally wouldn't have the time to backport it though.

Btw, how's that new contact form? Have you tested it yet?

1,432

(2 replies, posted in PunBB 1.2 troubleshooting)

First thing I'd suggest, (not knowing that mod offhand), is to regenerate/delete your cache files.

1,433

(8 replies, posted in PunBB 1.2 troubleshooting)

This one: http://punbb.org/forums/viewtopic.php?id=16931

1,434

(8 replies, posted in PunBB 1.2 troubleshooting)

If you do a search of the forum, I put some info up awhile ago regarding UTF8 requirements. There may be something of use in that post.

1,435

(25 replies, posted in General discussion)

Okey dokey. Attempt two. big_smile One of the mods had taken quite a liking to the layout of the existing php-fusion site, big_smile so have re-modelled it somewhat, to try and get a nice inbetween between php-fusion type layout whilst retaining the forum look. (It wasn't easy). big_smile Opinions greatly appreciated once more. smile

Original version: http://forums.bauchan.org/testforum/downloads.php

Latest incarnation: http://forums.bauchan.org/testforum1/downloads.php



Matt

1,436

(124 replies, posted in News)

Can't see any cause for concern now, myself. The original author himself has said he will fork the code if that scenario ever arose. Even if he didn't, someone else could and probably would. No reason for concern. smile

1,437

(9 replies, posted in PunBB 1.2 troubleshooting)

That black text against that background is damned awkward to see. big_smile

1,438

(19 replies, posted in General discussion)

quaker wrote:

u get my email? about lancer site?

Sent you a reply. smile

Here you go:

http://outgoing.bauchan.org/unix/contactcr.txt

Rename it to contact.php, drop it in the root forum dir, and set this var near the top of the file to one to enable the rbl check: $checkrbl = '0';

This script is totally untested, but should work. smile You do know that if someone can't register due to a rbl check in register.php, they'll have no means of contacting you now? big_smile

1,439

(19 replies, posted in General discussion)

No probs. Leave it with me and I'll get that added when I've chance. smile

1,440

(19 replies, posted in General discussion)

quaker wrote:

right be fore the </form> there is a </div> take that out..

Cheers for mentioning it. I'd forgotten to update the file on that link. big_smile Have updated it now.

1,441

(98 replies, posted in News)

Run the db update script included in the 1.2.15 download package.

It's still a bloody silly way to do it.

1,443

(9 replies, posted in Programming)

You're welcome. smile

Might I also suggest you stop using short tags and use the full <?php tag? That shorthand may bite you in the backside one day. big_smile

Just out of curiosity, why don't you either just comment that line out or hide the board title with CSS? The way you have done it is silly.

1,445

(25 replies, posted in General discussion)

Dr.Jeckyl wrote:

looks good.

Cheers. smile

1,446

(25 replies, posted in General discussion)

Yup. That installer is written for MySQL only, and I couldn't be arsed converting it and then having to check all the mods queries for pgsql compatibility. Plus, it wasn't quite what/how I wanted, from what I could gather.

Wanted something pretty much like the php-fusion download setup, but integrated into and looking like the forum. Hence, it was easier to create/mod my own than have to get used to the coding style of someone else before modding their mod. big_smile The actual PunBB coding style I know quite well by now, so used that as the base. Modified the category/forum admin scripts for the categories/downloads creation, and the index.php and viewforums.php scripts for the categories/downloads viewing scripts.

1,447

(25 replies, posted in General discussion)

elbekko wrote:

Nice error.

big_smile big_smile Sods law that someone would try it at the moment I made a cockup of one of the files. big_smile big_smile I was copying a paginating category index across, (which is now fixed, btw). big_smile big_smile

1,448

(9 replies, posted in PunBB 1.2 troubleshooting)

Are you using any registration mods?

1,449

(9 replies, posted in Programming)

Also, are you setting the vars correctly? i.e:

$txtfirstname = '\''.$db->escape($_POST['txtfirstname']).'\'';
$txtsurname = '\''.$db->escape($_POST['txtsurname']).'\'';

(I believe that's the correct syntax). smile

1,450

(9 replies, posted in Programming)

Just use profile.php. big_smile

Try altering that $sql line to:

$sql = 'UPDATE members SET firstname='.$txtfirstname.', surname='.$txtsurname.' WHERE id = '.$pun_user['id'];