Already made the script for him.
727 2007-05-03 15:41
Re: need a little help with ajax (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";
728 2007-05-03 15:35
Re: Pretty much a lot of problems . . . . (23 replies, posted in PunBB 1.2 troubleshooting)
Looks like your MySQL server may not have started, or that you entered the wrong information.
729 2007-05-02 18:18
Re: Pretty much a lot of problems . . . . (23 replies, posted in PunBB 1.2 troubleshooting)
Why do I get the feeling you're not actually uploading the files? =/
730 2007-05-02 08:44
Re: Pretty much a lot of problems . . . . (23 replies, posted in PunBB 1.2 troubleshooting)
You have to run it through your web browser. Being a web application and all.
731 2007-05-01 15:29
Re: hmm guys is this dangerous? (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 2007-05-01 15:18
Re: hmm guys is this dangerous? (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
733 2007-04-27 14:11
Re: Trying to make an undercover Admin (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Well, I tested it yesterday on a fresh 1.2.15 install, and it worked just fine. So indeed, check what Smartys said.
734 2007-04-26 21:49
Re: Trying to make an undercover Admin (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
Ah, I found the error. You should put it after this line:
check_cookie($pun_user);
735 2007-04-26 21:13
Re: Trying to make an undercover Admin (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
You should be doing it right =/ May I remind you: this will nowhere show up, except for the admin interface the user himself sees.
736 2007-04-26 17:58
Re: C++ source code to compare XML files like ExamXML XML differencing too (6 replies, posted in Programming)
True. Well, then the only option I see if writing it yourself
737 2007-04-26 17:56
Re: Trying to make an undercover Admin (12 replies, posted in PunBB 1.2 modifications, plugins and integrations)
It should work just fine. What mods do you have installed?
738 2007-04-25 15:23
Re: C++ source code to compare XML files like ExamXML XML differencing too (6 replies, posted in Programming)
I don't see why not. It's just plain text after all.
739 2007-04-25 11:19
Re: C++ source code to compare XML files like ExamXML XML differencing too (6 replies, posted in Programming)
Why not just use diff?
740 2007-04-22 17:03
Re: The Unsolveable Problem (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 2007-04-22 15:45
Re: Database username, id lookup (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
742 2007-04-22 14:39
Re: Database username, id lookup (17 replies, posted in Programming)
Maximum size is the same as the int size on your system I think.
743 2007-04-20 22:38
Re: Interesting... txpun.com ~ Whats this? (6 replies, posted in PunBB 1.2 discussion)
I wonder why it's trying to use 1.3
744 2007-04-19 20:16
Re: Specified key was too long; max key length is 255 bytes (Errno: 1071) (2 replies, posted in PunBB 1.2 troubleshooting)
Yeah, UTF-8 is multibyte and thus can only store half of 255 (which would round down to about 127).
746 2007-04-17 17:58
Re: Cryptic Registration/Notification Emails (7 replies, posted in PunBB 1.2 troubleshooting)
It should be in lang/yourlang/common.php.
747 2007-04-16 16:59
Re: Cryptic Registration/Notification Emails (7 replies, posted in PunBB 1.2 troubleshooting)
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 2007-04-16 14:24
Re: QUERIES (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
749 2007-04-15 20:38
Re: cant find the html element with this background color #333333; (6 replies, posted in PunBB 1.2 troubleshooting)
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.
750 2007-04-15 18:41
Re: cant find the html element with this background color #333333; (6 replies, posted in PunBB 1.2 troubleshooting)
It's a border. The border of #brdtitle even I think.