You are not logged in. Please login or register.
Active topics Unanswered topics
Search options (Page 267 of 354)
Topics by Rickard User defined search
Posts found: 6,651 to 6,675 of 8,829
Yes, the quote syntax has changed in PunBB 1.1. First, upgrade to PunBB 1.1.1 that was released earlier today. Then, open up include/parser.php and goto line 300 and replace
$message = preg_replace('#\[quote=("|"|\'|)(.*)\\1\]#seU', '"<br></span><table style=\"width: 95%\" align=\"center\" cellspacing=\"4\" cellpadding=\"6\"><tr><td class=\"punquote\"><span class=\"puntext\"><b>".str_replace(\'[\', \'[\', \'$2\')." ".$lang_common[\'wrote\'].":</b><br><br>"', $message);
with
$message = preg_replace('#\[quote=("|"|\'|)(.*)\\1\]#seU', '"<br></span><table style=\"width: 95%\" align=\"center\" cellspacing=\"4\" cellpadding=\"6\"><tr><td class=\"punquote\"><span class=\"puntext\"><b>".str_replace(\'[\', \'[\', \'$2\')." ".$lang_common[\'wrote\'].":</b><br>"', $message);
I.e. just remove one of the <br>'s at the end of the line.
In the case above, there are no advantages. The advantages show first when you want more control over which table is joined with which. E.g. a LEFT JOIN means that all rows in the table to the left will be included and all rows that match the join condition from the right table. A RIGHT JOIN is the same, but vice versa.
Also, the join syntax PunBB uses is the current standard. However unlikely, support for the old style syntax could be dropped in future versions of the databases PunBB supports.
Ok. I've never had cache problems with IE. Lots of problems with Opera though. I'll have a look at the headers later tonight.
I just registered and it worked fine. I posted a message as well: http://malin.isa-geek.com/viewtopic.php?pid=389#389
Perhaps you should pop into the IRC channel (#punbb on quakenet). We'll straiten it out there :)
Yes, it does. It sends a few headers. Have a look at the top of header.php.
Might I ask what kind of browser you are using? Also, are you using a proxy?
Well, it sure doesn't say that for me. See:
http://w1.421.telia.com/~u42121130/can2004.png
Are you sure you aren't viewing a cached version of the page or something?
Haha, what the hell!? What's wrong then? I can browser your forums just fine.
Hmm, I don't understand. You have two posts in the forum "Groupe A | Tunisie - Rwanda - R.D. Congo - Guinée" and going there works fine.
What's wrong then? Do you get any error messages?
Nice to hear it worked out :)
davestroy wrote:It is possible to rewrite the sql statements into 2 or three separate statements. However, this invloves much time to understand the database structure.
Actually, you don't have to. You just have to rewrite the joins to not use SQL92 JOIN syntax. I.e.
SELECT posts.* FROM posts INNER JOIN topics ON topics.id=posts.topic_id WHERE topics.topic_id=666;
would be rewritten into
SELECT posts.* FROM posts, topics WHERE topics.id=posts.topic_id AND topics.topic_id=666;
Perhaps one of the tables is corrupt? Open up phpmyadmin, select all tables and run check and/or repair.
Yes, it is. However, this is the only german post I've seen so far, so I'll wait and see.
It uses SHA-1 if it is available (not all PHP setups have it). If it isn't available, it falls back on MD5.
Well, because not everyone speaks english?
I'm very sorry, but that will include rewriting a large number of queries. 3.22.32 is very old. You really should tell your ISP to get a grip and upgrade to a newer version. 3.22.32 was released in February 2000 and that was looong time ago in Internet years :)
Might I ask what ISP it is?
Edit: I just noticed the install document says: "Version 3.23 or later is recommended. PunBB will probably work with older versions though.". That is wrong and I will update it for the next version of PunBB. The absolute minimum for PunBB to work is 3.23.17.
I am pleased to announce the release of PunBB 1.1.1. This release is a bugfix version for 1.1. No new features have been added. For a full list of changes, please see the changelog.
Language packs for PunBB 1.1 are compatible with with this release, so no updates to the language packs will be required.
Update 2004-01-15: I forgot to change the version number in the install script.
Actually, chacmools script will not work because ihavenoidea appears to be running PunBB 1.0 :)
I'll update it. Just give me a minute.
You can include PHP scripts from the templates. Have a look in faq.html (included in the archive).
This is a problem. There is no simple way of doing that. Actually, the fastest way for you is to post a message in all the topics that he spammed in and then removing them one by one. That will reset the last post column.
I'm going to work out a way to remedy the situation for PunBB 1.1.1 but until then, you will have to do it manually (or have someone create a script for you).
Edit: I'm not sure what has happened after his spamming, but I guess you've removed his posts by running a query or something? Something weird has happened, that's for sure.
Yes, it would be "easier". The question is if it would be better :)
Yeah, that looks nice. It's quite a change from what we are used to :)
Yeah, maybe that's the way to go. However, if you distribute the HTML output of that program hdiff, you might as well include the actuall diff file as well so people can patch it automatically if they want to.
Cactuz wrote:Why don't we just stik to english? And, if you guys really are addicted to german, ask Kennel to open a german forum, which wouldn't be the greatest idea though
And why would that be?
Posts found: 6,651 to 6,675 of 8,829