I'd use a robots.txt file.
776 2006-04-18 12:42
Re: Preventing search bot indexing of certain pages (25 replies, posted in PunBB 1.2 discussion)
777 2006-04-18 12:40
Re: Integrate into single-sign on (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
I wouldn't know where to start. Here's a good read on SOAP+PHP: http://developer.apple.com/internet/web … apphp.html
778 2006-04-18 12:36
Re: smf to punbb (5 replies, posted in PunBB 1.2 troubleshooting)
No, on the SMF database.
779 2006-04-13 22:49
Re: smf to punbb (5 replies, posted in PunBB 1.2 troubleshooting)
Have you tried using a prefix? For example smf_ ?
780 2006-04-12 20:11
Re: disabling the search function (18 replies, posted in Feature requests)
Rickard wrote:Just set "Use search" to no for the user groups.
I said that already, and he already said no.
Sorry. I'm tired
781 2006-04-12 20:10
Re: Boot Camp Turns Your Mac Into a Reliable Windows PC (4 replies, posted in General discussion)
I'm loving this. I was this close *holds up thumb and index finger really close to each other* to buying a mini mac the other day. The reasons I'm still running Windows are:
* Internet Explorer (for testing)
* Visual Studio (for ASP.NET development)
* Games
With Boot Camp and the new intel macs, the top two are sorted. Now, the only thing I need is an intel mac with a powerful graphics card. I guess I'll have to wait for the new powermacs.
Question: I have a SCSI card and a 15000rpm Seagate Cheetah disk that I use for the operating system and apps. Will I be able to use this in a powermac? I never want to back to ATA disks.
782 2006-04-12 20:06
Re: Change the labelling that Pun applies to pages as XHTML to HTML 4.01.. (8 replies, posted in Feature requests)
The improper nesting problem will hopefully be dealt with.
783 2006-04-12 20:05
Re: Unbuffered/buffered query (1 replies, posted in PunBB 1.2 discussion)
No, the only advantage with an unbuffered query is that it is a little bit more conservative with the memory on the server. Nothing to worry about.
784 2006-04-12 20:01
Re: impossible to add word to search index (14 replies, posted in PunBB 1.2 troubleshooting)
Ah, yes. Now I remember. Someone else had a similar problem at one time. However, he used a different tool for migrating.
785 2006-04-12 20:00
Re: disabling the search function (18 replies, posted in Feature requests)
Just set "Use search" to no for the user groups.
786 2006-04-12 19:59
Re: Forum not working properly (1 replies, posted in PunBB 1.2 troubleshooting)
You have a corrupt table. You need to repair it via e.g. phpMyAdmin or some other database management tool.
787 2006-04-12 19:58
Re: Problem with mysql 5.0.19 (2 replies, posted in PunBB 1.2 troubleshooting)
And what error message does the database report?
788 2006-04-12 19:49
Re: Mental typewriter (3 replies, posted in General discussion)
That's good news, I'm tired of moving a mouse around.
Haha, my first thought as well
789 2006-04-12 19:47
Re: Case sensitive e-mail (3 replies, posted in PunBB 1.2 troubleshooting)
There's a case sensitive mail server out there? Why, god, why?
790 2006-04-06 08:08
Re: impossible to add word to search index (14 replies, posted in PunBB 1.2 troubleshooting)
It's difficult to say really. We've encountered a similar problem before, but it was adressed. I would have to debug the error and see what actually happens.
791 2006-04-05 07:28
Re: How can I disable "redirects" after every post or action? (4 replies, posted in PunBB 1.2 troubleshooting)
Set redirect time to 0 in admin/options.
792 2006-04-04 14:13
Re: impossible to add word to search index (14 replies, posted in PunBB 1.2 troubleshooting)
1. PunBB version?
2. UTF-8?
793 2006-04-04 14:11
Re: Languages does not work. (2 replies, posted in PunBB 1.2 troubleshooting)
I've had a similar experience and the root of the problem in my case was that the webserver on my new host was sending a HTTP header saying all content was UTF-8 encoded. We need a link to the site in question.
794 2006-04-04 14:09
Re: need method to test php_mail function independent of punbb (2 replies, posted in PunBB 1.2 troubleshooting)
If you haven't filled out any SMTP info in admin/options, PunBB uses PHP's mail() function (which in turn relies on your local SMTP service). Here's a small PHP test script:
<?php
if (mail('foo@bar.com', 'The subject', 'The message'))
echo 'Mail sent';
else
echo 'Something is br0ken';
?>
795 2006-04-04 14:03
Re: Trouble with installation - Can't Load index.php (1 replies, posted in PunBB 1.2 troubleshooting)
I'm guessing you solved it?
796 2006-04-04 14:03
Re: Quotes without name after use 'PunBB Migration Tool' (32 replies, posted in PunBB 1.2 troubleshooting)
Well, modifications could interfere I guess, but I'm not sure. Unless someone is interested in debugging the problem, I think you're gonna have to live with this. At least it only affects the old posts. New posts will of course have the correct quote syntax.
797 2006-04-02 21:17
Re: 'quote=name' to 'quotes="name"' (1 replies, posted in PunBB 1.2 troubleshooting)
Then let's stick to that topic.
798 2006-04-02 21:17
Re: Quotes without name after use 'PunBB Migration Tool' (32 replies, posted in PunBB 1.2 troubleshooting)
I've migrated several phpBB forums myself and never encountered that problem. Do you have a link so we can check it out?
799 2006-04-02 12:20
Re: error when changing my options (1 replies, posted in PunBB 1.2 troubleshooting)
Try re-uploading the scripts. It appears include/email.php is corrupt or missing.
800 2006-04-01 18:16
Re: How to pass a "CODE" around Pages (4 replies, posted in Programming)
In 1.3, it will be very simple since all links are "generated" by a function. You would just append your code in that function.