7,151

(87 replies, posted in PunBB 1.2 discussion)

Did some more stuff today.

7,152

(4 replies, posted in Feature requests)

Done.

7,153

(5 replies, posted in PunBB 1.2 show off)

Looking good :)

7,154

(4 replies, posted in PunBB 1.2 troubleshooting)

That's odd. It almost sounds as if one of the tables wasn't correctly created. Could you try re-installing? You will have to drop the tables before running install.php again.

7,155

(2 replies, posted in PunBB 1.2 troubleshooting)

Do you want it only on the index page? In that case, open up index.php and look for the first piece of HTML. It should look like this:

<table class="punplain" cellspacing="1" cellpadding="4"><tr><td> </td></tr></table>

That's the table you've marked out in your image.

7,156

(16 replies, posted in PunBB 1.2 troubleshooting)

I must have been drinking when I gave you that line of code. Try this:

ini_set('include_path', ini_get('include_path').';\forum');

7,157

(18 replies, posted in Feature requests)

I've changed my mind. I probably won't add this. The only simple solution to the problem from a developers point of view is having the user enter the date/time format string himself in the profile, but I think that's a little too much to ask from a regular visitor.

7,158

(3 replies, posted in Feature requests)

I've given this some thought and I don't think I will add it. At least not in 1.1. Sorry :(

7,159

(6 replies, posted in Feature requests)

I will consider it.

7,160

(87 replies, posted in PunBB 1.2 discussion)

I finished two really boring things today:

- [DONE] Mass move/delete/open/close topics.
- [DONE] Mass delete posts.

So, it's all fun and games now :)

7,161

(16 replies, posted in PunBB 1.2 troubleshooting)

I think it's related to the path. Are you sure your forums are located in /forums? Isn't it /forum? Have a look at the following row:

ini_set('include_path', ini_get('include_path').'/forums');

What it does is add the path /forums to the PHP include path. You can check what your current path is by running:

exit(ini_get('include_path'));

Edit: Regarding sporkit. There are two users: sporkit and sporkit150. The first of them has a bullshit address and the other has a yahoo.com address. Did you enter the yahoo adress in the "Forgot password?" form?

Edit2: I just tried the password recovery feature and it works for me.

7,162

(1 replies, posted in Feature requests)

There are no known exploits in PunBB 1.0.1. There is an exploit in 1.0, but I'm guessing you are already running 1.0.1. I very much doubt there is an unknown SQL injection exploit in PunBB that would allow an outsider to erase the full contents of the database. It almost impossible using MySQL since it only allows one query per call to mysql_query(). So, I believe we can almost ignore that possibility.

Are you absolutely sure it isn't just someone that has gotten hold of the password you use to administrate your database? Do you have a really easy-to-guess password? Do you change it frequently? Do you have the same password in the forums as you do in your database management utility?

To give you some advice regarding backup I need a little more info on what kind of host you are using. Do you have telnet/SSH access? Is the server running UNIX or Windows? Do you have access to phpMyAdmin? Can you setup scheduled tasks somehow?

7,163

(1 replies, posted in PunBB 1.2 show off)

Looking good. Then again, I'v already told you so via e-mail :)

7,164

(1 replies, posted in PunBB 1.2 show off)

Some call it Terok Nor, some call it DS9 :)

Edit: I just checked out your forums. You did really well with the interface I must say! It's not easy to make PunBB look anything like LCARS. Good job!

7,165

(5 replies, posted in PunBB 1.2 troubleshooting)

No, it means you can place php code in the templates if you do the small mod linked to in my previous post. The next version of PunBB will allow you to include files from the templates. Not execute PHP code directly though.

Check this: http://punbb.org/forums/viewtopic.php?id=2295

Edit: How's that for support? You had to wait 29 seconds for help :)

7,167

(37 replies, posted in General discussion)

Do a search for recent discussions or something like that. It has been discussed before.

7,168

(0 replies, posted in News)

I just received a German language pack from minichip. It's available on the download page. Vielen Dank!

7,169

(6 replies, posted in PunBB 1.2 bug reports)

Not really. The definitive solution is to not use a frame based domain redirect. However, you can try out different values for cookie_domain in your config.php.

7,170

(6 replies, posted in PunBB 1.2 bug reports)

The problem with not being able to login could be related to an "issue" in IE6 regarding cookies. Do you perhaps use some kind of domain redirect or frame based domain service?

You can read more about the problem in this topic: http://punbb.org/forums/viewtopic.php?id=2754

7,171

(180 replies, posted in PunBB 1.2 troubleshooting)

Well, when I visit that address I am forwarded to users.quickfox.org so perhaps you should try that?

7,172

(1 replies, posted in Feature requests)

There is a mod for attachments in development: http://punbb.org/forums/viewtopic.php?id=2394

7,173

(8 replies, posted in PunBB 1.2 troubleshooting)

Edit the .tpl-files in /include/template/ or edit the css-files in /style/

7,174

(1 replies, posted in PunBB 1.2 bug reports)

This is fixed in version 1.1 of PunBB. You will have to live with it for the time being :)

Check out the changes under 2003-09-21 in http://punbb.org/changelogs/current.txt

Take the code from the recent discussions thingy and replace the code after "require 'include/common.php';" with the code from index.php starting with "// Collect some statistics from the database".