76

(32 replies, posted in PunBB 1.2 troubleshooting)

I get warnings and such things as soon as i try to install it. If you want me to try to fix it, you'll have to send me a dump of your database (tables and data).

Email: chacmool@gmail.com

Just use an editor with a search-function, and you'll find that it's located at line 180 in vewtopic.php, and at line 100 in viewforum.php.

78

(32 replies, posted in PunBB 1.2 troubleshooting)

I don't have time to do it now, I'll look at it later today (maybe).

79

(32 replies, posted in PunBB 1.2 troubleshooting)

Have you downloaded the new converter? I released new versions of the converters yesterday. Download them on punbb's download-page.

80

(32 replies, posted in PunBB 1.2 troubleshooting)

CPG-Nuke? Never heard of it...

When you enter the prefix, and it tells you it can't find any tables, do you get a list of tables then?

Exactly.

I'll have to save the salt in punbb's database, and slowly convert all user passwords as they login. It works like this: (PunBB don't use three steps, it's just three different ways depending on which is availible)

// vBulletin
md5(md5($password) . $salt);
    
// PunBB
1. sha1($password);
2. mhash($password);
3. md5($password);
xargh wrote:

I'd like to suggest one little feature - checkboxes in the first column in message_list.php allowing users to e.g. multiple deleting of messages or backup selected messages to the text file.

There's a 'Delete multiple messages'-link in the footer. Backup selected messages? Is that really necessary?

xargh wrote:

Other interresting feature could be when sb clicks on user's atavar in topic, he/she will (be redirected to message_send.php) start writing a PM message to that user...

There's a PM-link that takes the user to the send_message-page. I don't want to change to much of PunBB's original functionality.

xargh wrote:

I myself added one little thing in my forum - in message_send.php, you have Save messages checkbox unchecked by default. I changed it to be checked by default, because I prefer to store all the messages I wrote.

I maybe can make this an admin/profile option?

83

(38 replies, posted in PunBB 1.2 discussion)

It's fixed now :)

84

(38 replies, posted in PunBB 1.2 discussion)

Yes it is...

The host I'm running it on have some problems with the database.

85

(9 replies, posted in PunBB 1.2 show off)

Nice forum :)

*changed the topic to 1.2 instead*

No. But I've not looked either :) I've just forgot about it, mostly been working on the converters lately...

No, no mails yet either. Does someone have a mailserver I can use?

Good luck! :)

Btw, polls are converted, but not the private messages.

They will have to use the "Forgotten your password?"-function to have their passwords sent by mail (not their own password, but a new generated one).

I've had some thoughs of making a mod that removes this problem... don't know if I'll ever make it though.

It's made, but not released.

I'm about to release new versions of all converter soon, just some small work left to do first. It would be great if you would like to try the first beta though :) Download it [url=]here[/url].

Oh, and btw, the passwords can not be converted, as vBulletin and PunBB handles them differently.

Edit: Url removed. Download from punbb's downloadsection instead.

90

(32 replies, posted in PunBB 1.2 troubleshooting)

I'll look at it as soon as I'm home...

I've also written new installation-instructions and added new features to all converters, so I'll release them all soon.

91

(3 replies, posted in Feature requests)

It has been mentioned many times before. A quick search, and you'll find for example this topic.

92

(3 replies, posted in PunBB 1.2 troubleshooting)

Use search...

93

(2 replies, posted in Archive)

Den enkla lösningen är att inte använda formatet "åååå-mm-dd" i databasen. Kör med en int istället. Funktionen time() ger antalet sekunder sen 1 Januari 1970.

För att konvertera till "vanlig" tid använd date(), exempelvis det här skriver ut när användarens "goldmemberstatus" tar slut:

date('Y-m-d H:i', $goldmember_expires)

Just i ditt exempel är det bara att lägga på 3600*24*30 (en månad i sekunder) på 'goldmember_expires'. Testen om man betalt körs då lätt såhär:

if( $goldmember_expires < time() )
  echo 'Not valid';
else
  echo 'Member payed';

94

(21 replies, posted in PunBB 1.2 show off)

Reines wrote:

ok ive added that thing at http://www.rei-net.org/punbbig.php

Thanks! You've currently got position #3 on the list :)

95

(21 replies, posted in PunBB 1.2 show off)

Nice, completely built around punbb! :)

I was about to add it to PunBBig, but it's too modded. Please read this topic.

96

(4 replies, posted in Archive)

"need step-by-step FAQ !" (The only thing I understand :))

There should be a small description in the readme:

Installation notes:
1. Put the files in a subfolder to PunBB.
2. Go to the converter page (ex: './punbb/conv')
3. Enter database and forum information

97

(1 replies, posted in PunBB 1.2 show off)

Yes, there is.

Try the search engine next time...
*thread locked*

It's only showed in the admin-section...

SpAZ wrote:
Chacmool wrote:

Any suggestions or comments?

Yeah, DONT SHOW PPL THAT HAVENT VOTED! lol, lets say u have like 2k members. that wouyld be annoyting and also display who voted for what ;)

Hehe, true :) I'll probably look at it later this week (as everything else http://punbb.org/forums/img/smilies/roll.png)

pl0x wrote:

As I understand people from one IP can vote only once(not each of them). There is no difference if they are from different computers or not. Am I right ?

The user-id is saved in the database, so users can only vote one time, and it's not tied to any specific IP.

Do you get an error-message, or does it seem to work but with no votes registered?