VI smile

hmm,

in my opinion all code should start whit an e_all, this will force devs and extension devs to write decent and correct php code.

same here correct flag smile

yeah i gave up on fluxbb to, i thought it would be a fork of punbb that would move a bit faster, but it seems its not smile

The problem with punbb is thats all is going so slow, .... Maybe there dev team is to small? or they keep all to close to informer.

grudon66 wrote:

But what will you guys, do after punbb 1.3.3 is finished?

Interesting question smile will you guys start at punbb 2.0? cause i would be interested in helping out at the core of 2.0, certainly the OO structure smile

same problem in FF 3.0.8

i think its server side, all time functions inside punbb should start from gmt and from there on you can go an recalculate the correct time for a specifick user ...

Parpalak wrote:

As far as I understand the issue described in that topic is connected to the incorrect server time settings. That issue should be solved by a server administrator.

The issue described here is connected to the incorrect client time settings.

Do I miss something?

well an incorrect time is the same as this problem, here the problem is just related to daylight saving and daylight saving is a time setting smile

also i solved that problem the same way, but its not the way to go ....

parpalak i don't think this is the solution .....

it should be fixed in the code by using a time calculation thats independent of daylight saving times, like i suggested here: http://punbb.informer.com/forums/post/122645/#p122645

above are just workarounds for people that have this problem.

35

(3 replies, posted in Discussions)

lol nops,

i mean object oriented smile

36

(19 replies, posted in News)

will you guys allow otehr people into the dev team? none informer people?

37

(1 replies, posted in PunBB 1.3 additions)

it would be nice to have an option to manually verify the users,

so the forum is set to use email verification, but the admins should be able to set a unverified user to be verified, overriding the email verification process

i do something simular with a mysql trigegr (version 5) smile

have a 'on insert' trigger on your blog table (or however its called) let this trigger insert a new entry in the topics table and one in the posts table and your ready ...

here is an example that i use for this purpose

delimiter |

CREATE TRIGGER newsToForum AFTER INSERT ON news
    FOR EACH ROW
        BEGIN
            DECLARE x INT;
            DECLARE y INT;
            IF New.approved = 1 THEN
                INSERT INTO forum_topics (poster, subject, posted, forum_id, last_post, last_poster) VALUES ('newsMonkey', NEW.title, UNIX_TIMESTAMP(), 12, UNIX_TIMESTAMP(), 'newsMonkey');
                set x = LAST_INSERT_ID();
                INSERT INTO forum_posts (poster, poster_id, poster_ip, message, posted, topic_id) VALUE ('newsMonkey', 19455, '::1', NEW.txt, UNIX_TIMESTAMP(), x);
                set y = LAST_INSERT_ID();
                UPDATE forum_topics SET last_post_id=y, first_post_id=y WHERE id=x;
                update forum_forums set num_topics = num_topics + 1, num_posts = num_posts + 1, last_post = UNIX_TIMESTAMP(), last_post_id =y, last_poster='newsMonkey' where id = 12;
                update forum_users set num_posts=num_posts + 1, last_post = y where id = 19455;
            END IF;
        END;
|
delimiter ;

39

(6 replies, posted in PunBB 1.3 extensions)

hmm,

it seems that there is a problem ...

i'm trying to give a certain group extra privileges on the docuwiki, but they can not  edit, create pages, althought the acl system shows the folowing

Members of group staff currently have the following permissions in namespace wiki: Read, Edit, Create, Upload, Delete.

any ideas?

40

(2 replies, posted in PunBB 1.3 troubleshooting)

there is a file in the upload folder called htaccess.dist (i think), just rename this file to .htaccess and it should be solved

41

(6 replies, posted in PunBB 1.3 extensions)

well i fixed some more bugs in the implementation i used

all $pun_user should be replaced by forum_user var

in the last part a couple are not replaced
also its a good thing to diable some actions in docuwiki, like the profile, logout, login buttons

this can be done by a config setting:
$conf['disableactions'] = 'register,resendpwd,profile,logout,login';

42

(6 replies, posted in PunBB 1.3 extensions)

add

define('FORUM_SKIP_CSRF_CONFIRM', 1);

at the top of punbb.class.php in dokuwiki

43

(5 replies, posted in PunBB 1.3 discussion)

well users are reporting the same problem at my site ...

another thing thats impacted is the read posts, when this happens (after posting or login in) post they have read are marked as unread ...

so it happens at 2 places:
1- on login
2- on posting a message

44

(82 replies, posted in PunBB 1.3 extensions)

esupergood wrote:

Essential for me. Yes Please!!!
It stops people registering new accounts just so they can vote themself up or vote other people down & down & down

yeah tahts exaactly why i would like to see this smile

45

(82 replies, posted in PunBB 1.3 extensions)

well if i decrease a users karma i have to motivate why i do it, so i get some sort of imput form to write a message about it.

another idea: enable/disable the decreasing of the karma, so suers can only add karma points not take them away (ofcourse admins/mods can)

and anotehr idea smile
disable karma for users with less then a specifick number of posts, for example, only users that have 100 posts or more kan vote for the karma

46

(82 replies, posted in PunBB 1.3 extensions)

Ekarma 0.9

it would be nice to have an option to motivate your karma posting (of course configurable smile)

47

(7 replies, posted in PunBB 1.3 extensions)

hmm,

then it would be best to create a new bb tag, something like
[map]coordinates[/map]

this way all the maps can use the same google key and users don't need to play with the javascript ...

but its certainly possible, somone just needs to write an extension for it

in the public display part of the profile some hooks can't be run in some cases

if you see:
- line 1401 opens an if
- line1411 closes the same if

the hook at line 1410 which belongs to the code after line 1411 will only be run if the above mentioned if returns true

the endif and the hook call needs to be swapped, so the hook will always be called.

1401<?php if (!empty($forum_page['user_contact'])): ?>
1402                         <div class="ct-set data-set set<?php echo ++$forum_page['item_count'] ?>">
1403                                 <div class="ct-box data-box">
1404                                         <h3 class="ct-legend hn"><span><?php echo $lang_profile['Contact info'] ?></span></h3>
1405                                         <ul class="data-list">
1406                                                 <?php echo implode("\n\t\t\t\t\t\t", $forum_page['user_contact'])."\n" ?>
1407                                         </ul>
1408                                 </div>
1409                         </div>
1410 <?php ($hook = get_hook('pf_view_details_pre_user_activity_info')) ? eval($hook) : null; ?>
1411 <?php endif; if (!empty($forum_page['user_activity'])): ?>
1412                         <div class="ct-set data-set set<?php echo ++$forum_page['item_count'] ?>">
1413                                 <div class="ct-box data-box">
1414                                         <h3 class="ct-legend hn"><span><?php echo $lang_profile['Posts and topics'] ?></span></h3>
1415                                         <ul class="data-box">
1416                                                 <?php echo implode("\n\t\t\t\t\t\t", $forum_page['user_activity']) ?>
1417                                         </ul>
1418                                 </div>
1419                         </div>
1420 <?php ($hook = get_hook('pf_view_details_pre_user_sig_info')) ? eval($hook) : null; ?>
1421 <?php endif; if (isset($forum_page['sig_demo'])): ?>
1422                         <div class="ct-set data-set set<?php echo ++$forum_page['item_count'] ?>">
1423                                 <div class="ct-box data-box">
1424                                         <h3 class="ct-legend hn"><span><?php echo $lang_profile['Current signature'] ?></span></h3>
1425                                         <div class="sig-demo"><?php echo $forum_page['sig_demo']."\n" ?></div>
1426                                 </div>
1427                         </div>
1428 <?php endif; ?>

nevermind the fluxbb wiki helped me with this smile

how can i ban an entire email domain?

i want to ban all disposable e-mail services such as mailinator.com, mytrashmail.com, GuerrillaMail.com, etc.