4,576

(11 replies, posted in PunBB 1.2 discussion)

I discussed it above, Rickard is Rickard's name in case you were confused tongue

4,577

(4 replies, posted in PunBB 1.2 discussion)

Ask in the Textdrive forums wink

4,578

(3 replies, posted in PunBB 1.2 troubleshooting)

That's a slightly different error wink

4,579

(4 replies, posted in Programming)

profile.php, search for "chmod"

Aha, my code was from 1.2.14 wink

After the lines you found, paste

$eol=  "\r\n";

You should really upgrade btw

err, I said comment them out (as in put // in front of each line) hmm

Try commenting out these lines in include/email.php

        // Change the linebreaks used in the headers according to OS
        if (strtoupper(substr(PHP_OS, 0, 3)) == 'MAC')
            $headers = str_replace("\r\n", "\r", $headers);
        else if (strtoupper(substr(PHP_OS, 0, 3)) != 'WIN')
            $headers = str_replace("\r\n", "\n", $headers);

4,583

(1 replies, posted in PunBB 1.2 troubleshooting)

http://punbb.org/forums/viewtopic.php?id=7354

4,584

(47 replies, posted in PunBB 1.2 troubleshooting)

I'm afraid I don't know what to tell you. If you're sure that all the SMTP details you supplied are correct, I'd suggest you talk to your ISP

Only other possibility would be to increase the timeout
in include/email.php
FIND

if (!($socket = fsockopen($smtp_host, $smtp_port, $errno, $errstr, 15)))

REPLACE WITH

if (!($socket = fsockopen($smtp_host, $smtp_port, $errno, $errstr, 60)))

4,585

(47 replies, posted in PunBB 1.2 troubleshooting)

I'd try 25: try adding PHP
Or you could try disabling it for a minute just to see if that was the issue

4,586

(47 replies, posted in PunBB 1.2 troubleshooting)

I think it could be your router, although I don't know enough to be sure. The error message is too generic: all it tells me is that something is aborting the connection.

4,587

(2 replies, posted in PunBB 1.2 troubleshooting)

Is that all? I afraid no. What else should I do to upgrade ?

You also need to download a fresh copy of PunBB, copy/upload the script 12_to_1214_update.php from the extras directory to your forum. Finally, run it through your browser and delete it once you're done.

Also I worry a bit about my mods (subforums, PMs, attaches etc). Will it be OK ?

Assuming there are no conflicting sections of code, you're fine. If there are, you'll need to figure out how to merge the two changes

4,588

(47 replies, posted in PunBB 1.2 troubleshooting)

I'd check any firewalls you have running. They could be blocking the outbound connection

4,589

(47 replies, posted in PunBB 1.2 troubleshooting)

Are you running the forum from your computer?

4,590

(8 replies, posted in General discussion)

Once again, this is not a bug
A filename in a URL can end in a . and thus a . at the end is included
The domain can not end in a . and thus the . is not included

4,591

(8 replies, posted in General discussion)

Oh, does this have to do with auto-URL detection? My bad then, I misunderstood

Then like you said Connor, simply don't put a . after a URL.
.s are perfectly valid in URLs wink

4,592

(8 replies, posted in General discussion)

Moved to General Discussion

This isn't related to PunBB at all, that is your server

Enable debug mode, paste the full error

I wouldn't go so far as to say that it will make PunBB dramatically faster, but it's certainly something we want to keep in mind smile

4,595

(11 replies, posted in PunBB 1.2 discussion)

Add a field for real name to register.php, make sure the data is inserted when the new user is, and ensure that the data is filled in

Moved to Modifications

You can't pull the specific data, you would need to grab it and then parse it and only return part of it

As for the search.php type pages, there's no way to syndicate that by default

4,597

(5 replies, posted in PunBB 1.2 troubleshooting)

You'll have to write your own script which inserts the proper rows into config.php. You can find the data for the columns in install.php

Emancipator wrote:

the spam is getting WAY out of hand with punbb I am getting hundreds. I just added this tweak in hopes it will help cut down on some of it. Thanks!

http://www.punres.org/files.php?pid=293

4,599

(4 replies, posted in PunBB 1.2 troubleshooting)

Looks fine now, seems like your mod security rules were updated smile

No problem smile