726

(9 replies, posted in Programming)

Already made the script for him.

727

(9 replies, posted in Programming)

Just getting rid of a div? You don't need AJAX, just simple JavaScript. Like this:

document.getElementById('yourdivid').style.display = "none";

Looks like your MySQL server may not have started, or that you entered the wrong information.

Why do I get the feeling you're not actually uploading the files? =/

You have to run it through your web browser. Being a web application and all.

731

(4 replies, posted in PunBB 1.2 discussion)

Yep, it's been taken care of. Just take a look at the diff of email.php here:
http://punbb.org/download/hdiff/hdiff-1 … .2.15.html

732

(4 replies, posted in PunBB 1.2 discussion)

1.2.4? Don't worry, you should've upgraded beyond that for a long time now tongue

Well, I tested it yesterday on a fresh 1.2.15 install, and it worked just fine. So indeed, check what Smartys said.

Ah, I found the error. You should put it after this line:

check_cookie($pun_user);

You should be doing it right =/ May I remind you: this will nowhere show up, except for the admin interface the user himself sees.

True. Well, then the only option I see if writing it yourself tongue

It should work just fine. What mods do you have installed?

I don't see why not. It's just plain text after all.

Why not just use diff?

740

(11 replies, posted in PunBB 1.2 troubleshooting)

You obviously put a font tag in there somewhere. This part has an unclosed font tag:

<!-- message goes below here -->
<font color="#333333">Welcome to Ice-Warez, Enjoy your stay.<BR>
<!-- message goes above here -->

741

(17 replies, posted in Programming)

Trying to prod 10,000,000 values in an array.
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 35 bytes) in D:\Program Files\xampp\htdocs\punBB4\arr_test.php on line 5

Yep, Smartys is right tongue

742

(17 replies, posted in Programming)

Maximum size is the same as the int size on your system I think.

I wonder why it's trying to use 1.3 tongue

Yeah, UTF-8 is multibyte and thus can only store half of 255 (which would round down to about 127).

745

(16 replies, posted in General discussion)

ROFL tongue

It should be in lang/yourlang/common.php.

It's either the server or the client you're using that automatically does a base64-encode on whatever mail with an unrecognised mime type. Or something like that.
Does your forum use UTF-8?

748

(39 replies, posted in PunBB 1.2 troubleshooting)

I really wonder how hard it can be to make a non-resource intensive subforum mod =P

This line controls all border colours (that's in Radium_cs):

/* 3.1 All external borders (H1 is the board title) */

DIV.box {BORDER-COLOR: #565656}

Another one in the other stylesheet controls the size of that specific border:

/* 4.2 Special settings for the board header. */

#brdheader DIV.box {BORDER-TOP-WIDTH: 4px}

Just set that last one to 0px and it'll be gone.

It's a border. The border of #brdtitle even I think.