http://dev.mysql.com/doc/refman/5.0/en/ … reate.html
So, MySQL can't write the temporary file it needs for whatever reason (not enough space, no permissions, etc). Error 28 suggests a lack of space

3,652

(13 replies, posted in PunBB 1.2 troubleshooting)

Enable debug mode, paste the full error

Just when trying to use the one plugin?

SMTP: You have to enter the details you have for the SMTP server you're trying to use. The address for it, and the username/password they assigned you
Local mail program: It just uses PHP's built in mail function instead of SMTP. It works for most people, but your host might have disabled it
.htaccess files: They aren't necessary

Because whatever code you copied redefines code it doesn't need to

3,656

(3 replies, posted in PunBB 1.2 troubleshooting)

Talk to your host

3,657

(3 replies, posted in PunBB 1.2 discussion)

You would incorporate the function I gave you into profile.php. Then, you could reject animated GIFs.
As for converting from GIF to JPG, it's certainly possible using the GD library

Moved to Modifications

3,659

(3 replies, posted in PunBB 1.2 discussion)

I found this in the PHP doc comments

function is_ani($filename)
{
       $filecontents=file_get_contents($filename);

       $str_loc=0;
       $count=0;
       while ($count < 2) # There is no point in continuing after we find a 2nd frame
       {

               $where1=strpos($filecontents,"\x00\x21\xF9\x04",$str_loc);
               if ($where1 === FALSE)
               {
                       break;
               }
               else
               {
                       $str_loc=$where1+1;
                       $where2=strpos($filecontents,"\x00\x2C",$str_loc);
                       if ($where2 === FALSE)
                       {
                               break;
                       }
                       else
                       {
                               if ($where1+8 == $where2)
                               {
                                       $count++;
                               }
                               $str_loc=$where2+1;
                       }
               }
       }

       if ($count > 1)
       {
               return(true);

       }
       else
       {
               return(false);
       }
}

I think the current converter works fine with VB 3.6

I think two things:
1. You don't need to pay money to get "clean" URLs. There are mods which will accomplish this for you for free.
2. Clean URLs don't necessarily offer a benefit in terms of search engine rankings: the only type I would say would help would be the type that include keywords in the URL

3,662

(2 replies, posted in PunBB 1.2 discussion)

Moved to PunBB Discussion

3,663

(1 replies, posted in PunBB 1.2 troubleshooting)

http://wiki.punres.org/Open_links_in_a_new_window

3,664

(47 replies, posted in PunBB 1.2 troubleshooting)

Congrats on alienating someone who was willing to help you wink
I'll just repeat myself one last time: take a look at the code for yourself. If you can find a way for a user to register without providing an email, I'll gladly admit I'm wrong and fix it. However, until that point, I have to go with my reading of the code, which is that
A. The insert statement for the user takes the value from $email1
B. $email1 is taken from $_POST for every submit
C. $email1 is validated and checked to ensure that it IS a valid email (which means it needs an @, a tld, etc)

3,665

(4 replies, posted in PunBB 1.2 troubleshooting)

No, one has to take precedence wink
The ranks will work for any group without a title.

3,666

(27 replies, posted in PunBB 1.2 troubleshooting)

Works in IE7

You can't query within that while loop because the giant query is unbuffered. As you guessed, instead you need to do some editing

http://wiki.punres.org/Last_post%27s_su … orum_index

twohawks: You might: my point was simply that processing something with a larger height will take a great deal of memory.

3,669

(8 replies, posted in PunBB 1.2 troubleshooting)

That should have no effect on the time reported by the server.

That's a modification, so moved

3,671

(47 replies, posted in PunBB 1.2 troubleshooting)

No need to be sarcastic: check the file for yourself
http://dev.punbb.org/browser/trunk/upload/register.php

It IS impossible with an unmodded register.php

3,672

(1 replies, posted in Feature requests)

Personally, I think it would make the space more crowded. Plus, the icons don't mean as much to some people as the text
However, it's certainly possible as a modification.

Moved to Modifications

handle_url_tag tag function in include/parser.php

3,675

(4 replies, posted in PunBB 1.2 troubleshooting)

Custom titles for groups/users override ranks