51

(20 replies, posted in PunBB 1.3 extensions)

Meowmeow wrote:
lie2815 wrote:

Subforums are supported officially.

How did you know?

Look at the link at the top of this page... wink

52

(62 replies, posted in News)

Anatoly wrote:

... but cross-promotion in other of our services, that takes the rest (lesser part) of our resources.

A good start would be to make feed.informer.com use PunBB as a forum...

53

(62 replies, posted in News)

Anatoly wrote:
lie2815 wrote:

Just btw, the automatic update checking fails now... wink

Fixed.
Thanks.

It is? Where? Does it still work with punbb.org or did the Trac environment move, too?

54

(20 replies, posted in PunBB 1.3 extensions)

What about Subforums?

EDIT:
Subforums are supported officially.

55

(20 replies, posted in PunBB 1.3 extensions)

Could you please post a list of planned official extensions for 1.3?
Thanks

56

(62 replies, posted in News)

Just btw, the automatic update checking fails now... wink

57

(2 replies, posted in PunBB 1.3 troubleshooting)

Oh, ok. I didn't look at the code...

58

(2 replies, posted in PunBB 1.3 troubleshooting)

One can enable sending a email to verify new registrations.
It's not really hard to enter an invalid address, though. You can just change it after registering. So, to prevent that, another email should be sent out when changing the e-mail adress only when user verification is enabled

59

(62 replies, posted in News)

Guys! It's not the end of the world. It's just a new domain... and a few more links on the main page. So what?

PunBB hasn't lost any of its quality, so why are you all crying?

I only use the main page to find the newest posts anyway...

Ah ok, thank you. I was thinking a little bit wrong here... wink

What exactly is the problem with forms???

Isn't the quickjump cached? Why not just recreate the qjump cache also when changing the url scheme?

63

(14 replies, posted in Programming)

Now, after I copied your code and fixed your error, it works wink

It should have read:

array_multisort($size_decimal, SORT_ASC, SORT_REGULAR, $sizes);

Still:
Thanks a lot!!!

Wait for 1.3 or do it yourself wink
Would you like to work with me and a few others on the German language file???

Vovochka wrote:

lie2815, you still didn't fix the bug daris had reported http://punbb.org/forums/viewtopic.php?p … 78#p112378

I already fixed it in the new version which will be released next (whenever that may be...)

I will. Thanks...

67

(14 replies, posted in Programming)

do you know what I want to do? Because it would be great if you could just tell me what kind of array you want and write me the one line with array_multisort.

Pleaaaaaaaaaaaase

68

(14 replies, posted in Programming)

oh I understand now. It's not always only a decimal... but sometimes something lik 2.00x5.04 or whatever...

69

(14 replies, posted in Programming)

does cast sort it naturally?

70

(1 replies, posted in PunBB 1.2 troubleshooting)

Enable debug mode, paste the full error.

What I can tell you right now is, that it is not the config.php file, that is not fetched correctly... it's something with the database

71

(14 replies, posted in Programming)

Could you define that a little more? I didn't quite understand the example, sorry...

72

(14 replies, posted in Programming)

$result = $db->query('SELECT id, size_inches, size_decimal, normal_lbs, 144inch_lbs FROM '.$db->prefix.'sizes WHERE alloy_id='.$id.' ORDER BY size_decimal ASC') or error('Unable to fetch size information', __FILE__, __LINE__, $db->error());
while ($cur_size = $db->fetch_assoc($result))
{
$data['id'][] = $cur_size['id'];
$data['size_inches'][] = $cur_size['size_inches'];
$data['size_decimal'][] = $cur_size['size_decimal'];
$data['normal_lbs'][] = $cur_size['normal_lbs'];
$data['144inch_lbs'][] = $cur_size['144inch_lbs'];
}

array_multisort($data['size_decimal'], SORT_ASC, SORT_REGULAR);

foreach ($data['id'] as $key => $elem_id)
{    
echo '<tr style="text-align: center;"><td style="border: 0;">'.$data['size_inches'][$key].'</td><td style="border: 0;">'.$data['size_decimal'][$key].'</td><td style="border: 0;">'.$data['normal_lbs'][$key].'</td><td style="border: 0;">'.$data['144inch_lbs'][$key].'</td>';
if(!$pun_user['is_guest'])
echo '<td style="border: 0;"><a href="deletesize.php?id='.$elem_id.'">delete</a></td>';

echo '</tr>';
}

This doesn't work.
It only sorts one column and the others stay wrong...

73

(19 replies, posted in PunBB 1.3 extensions)

Ah ok. So PUN_ROOT is only for server-side things

74

(11 replies, posted in PunBB 1.2 show off)

Looks great.

75

(19 replies, posted in PunBB 1.3 extensions)

I am sure you are right.
Could you just explain why???