VI
26 2009-05-26 11:08
Re: What is the best Webdesigner Software (40 replies, posted in General discussion)
27 2009-05-07 07:46
Re: error_reporting setting in include/essentials.php (4 replies, posted in PunBB 1.3 discussion)
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.
28 2009-04-14 08:34
Re: Is this your Flag? Please help test this (20 replies, posted in General discussion)
same here correct flag
29 2009-04-10 12:50
Re: PunBB 1.3.3 is almost ready to be released (23 replies, posted in PunBB 1.3 discussion)
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
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.
30 2009-04-10 08:13
Re: PunBB 1.3.3 is almost ready to be released (23 replies, posted in PunBB 1.3 discussion)
But what will you guys, do after punbb 1.3.3 is finished?
Interesting question 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
31 2009-04-09 14:30
Re: PunBB 1.3.3 is almost ready to be released (23 replies, posted in PunBB 1.3 discussion)
same problem in FF 3.0.8
32 2009-03-27 13:12
Re: Can't login - "Cookie has not been set" - *Solution* (21 replies, posted in PunBB 1.3 bug reports)
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 ...
33 2009-03-27 12:45
Re: Can't login - "Cookie has not been set" - *Solution* (21 replies, posted in PunBB 1.3 bug reports)
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
also i solved that problem the same way, but its not the way to go ....
34 2009-03-27 12:30
Re: Can't login - "Cookie has not been set" - *Solution* (21 replies, posted in PunBB 1.3 bug reports)
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 2009-03-27 08:20
Re: PunBB OO interface (3 replies, posted in Discussions)
lol nops,
i mean object oriented
36 2009-03-19 08:42
Re: Changes in development team (19 replies, posted in News)
will you guys allow otehr people into the dev team? none informer people?
37 2009-03-19 08:41
Topic: unverified users (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
38 2009-03-18 17:16
Re: WordPress comments <-> PunBB topic (5 replies, posted in PunBB 1.3 discussion)
i do something simular with a mysql trigegr (version 5)
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 2009-02-26 12:59
Re: Integration with dokuwiki (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 2009-02-23 08:51
Re: How do this ? (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 2009-02-20 16:09
Re: Integration with dokuwiki (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 2009-02-20 13:37
Re: Integration with dokuwiki (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 2009-02-14 11:01
Re: CSRF Token in Form (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 2009-02-12 15:21
Re: Extensions by Rich Pedley (82 replies, posted in PunBB 1.3 extensions)
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
45 2009-02-12 15:10
Re: Extensions by Rich Pedley (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
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 2009-02-12 15:01
Re: Extensions by Rich Pedley (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 )
47 2009-02-05 14:46
Re: [request] Google Maps embed (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
48 2009-02-04 16:46
Topic: profile hooks not run in certain cases (2 replies, posted in PunBB 1.3 bug reports)
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; ?>
49 2009-02-02 08:10
Re: banning entire email domains (2 replies, posted in PunBB 1.3 troubleshooting)
nevermind the fluxbb wiki helped me with this
50 2009-02-02 08:06
Topic: banning entire email domains (2 replies, posted in PunBB 1.3 troubleshooting)
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.