[01:33] Gwayne joined #tikiwiki [02:14] fabricius joined #tikiwiki [03:52] chibaguy joined #tikiwiki [04:20] marclaporte joined #tikiwiki [04:22] midbrain joined #tikiwiki [07:28] chibaguy joined #tikiwiki [08:50] Tiki-KGB 03gezzzan r49484 10trunk/tiki-install.php * [MOD] boostrapped and simplified installer authentication screen layout [09:30] redflo joined #tikiwiki [10:10] xavi joined #tikiwiki [11:30] Tiki|bot joined #tikiwiki [11:31] Tiki|bot New Forum Posts: Anybody using TRIM? - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=50942 [11:32] Tiki|bot New Forum Posts: Content Field and Editor in Blog - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=50941 [11:32] Tiki|bot New Forum Posts: Users list with Real Name & pic in 12.x: porting module users_list from mods? - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=50939 [11:51] rodrigoprimo joined #tikiwiki [11:57] xavi Jyhem ? [11:57] xavi anyone else using ISPConfig3 ? [11:57] xavi (& Tiki, of course) [11:58] xavi or anyone using mod_security and Tiki 12? [12:09] Telesight joined #tikiwiki [12:25] xavi Jyhem, for later, in case you have any clue: https://doc.tiki.org/ISPConfig#Errors [12:28] arildb joined #tikiwiki [12:40] arildb Hi, I need to store some password in Tiki (to connect to an external system). Does anybody know if there is some "secure" password storage in Tiki? [12:41] Telesight joined #tikiwiki [12:41] xavi hi arildb . :-) I haven't used it, but there is (was?) some admin panel for that somewhere.... [12:41] * xavi checking [12:42] arildb xavi: thanks [12:43] xavi arildb: see this https://doc.tiki.org/Clipperz+online+password+manager [12:44] arildb checking [12:44] xavi however, I can't find it in admin panels in 12.x [12:44] arildb I think there was some issue with Clipperz about a license change/payments [12:46] xavi yes, that's true. I can see the info in 11.x : tiki-admin.php?page=security > "Clipperz online password management", but it's not foudn any more in 12.x [12:46] arildb I prefer a more local (in installation) solution, I believe. [12:46] arildb There is mcrypt which does a reversable encryption. [12:47] xavi sounds a nice (future) feature :-) [12:47] arildb Using the user preferences to stoer the username/password + mcrypt may be a solution [12:48] arildb Maybe add a new lib to encrypt (reversaby) passwords, then is mcrypt is available use it, otherwise just use Base64 encryption.....some thought [12:49] arildb mcrypt requires a key, which must be stored somehow...and kept secure... [12:49] arildb would keeping this in a PHP file be good enough? [12:50] xavi mmm, arildb, can this OpenPGP help somehow? tiki-admin.php?page=security&cookietab=6&highlight=openpgp_gpg_signer_passfile [12:50] arildb checking [12:56] arildb Since a reversable encryption is required, it comes down to the availablity of the "final" signing key, I guess. If this key could come fromthe client machine/browser, it would not be possible to locate it by having direct machine access (hosting admin). This would be the preferred solution, I believe [12:57] arildb Maybe store the signing key ina cookie, and if not found prompt the user for it..... [13:01] arildb maybe with an option to store the encryption key in the user preferences too, which would be less secure, but the system would then always find the key and not prompt the user. [13:04] arildb changing the encryption algorithm for the password storage, must rehash all passwords...and not fail to avoid invalidating any password. [13:05] arildb xavi: any thoughts? [13:05] * xavi reading [13:06] xavi mmm, becoming away from my skills. I can understadn what you mean, but I'm not skilled enough to suggest improvements or potential points of failure [13:07] arildb ok [13:07] xavi sounds neat to my little understanding [13:07] xavi you'd better ask in the devel list, maybe? [13:07] arildb yes, maybe better [13:08] arildb or maybe just do it... ;-) [13:08] xavi :-D [13:08] xavi yeah, "show me the code" :-) [13:08] arildb easier to discuss then [13:08] xavi some people in teh devel list might think... :-) [13:08] xavi yes [13:09] xavi glad to point to another potential way of solving your need, reusing current features in tiki code :-) [13:10] xavi s/solving your need/having yourself solve your own need [13:11] arildb I will take a look at it [13:13] arildb trying to access https://doc.tiki.org bring me to the installer [13:13] xavi :-/ [13:13] xavi it must be the periodic update of the *.t.o servers [13:13] arildb now back again [13:14] xavi wait a few mins, and it'll automagically work again [13:14] xavi ok [13:32] xavi anyone good at regexps? [13:32] xavi what does this mean?: (\S+) INTERFACE (\S+) line protocol BOUNCE [13:40] Telesight1 joined #tikiwiki [13:55] Jyhem polom [13:56] Jyhem xavi: I never saw that error, but thanks for the link. I learned a lot on th jailroots :) [13:56] xavi moloq [13:56] xavi :-) ok [13:56] Jyhem is that perl regexp ? [13:57] xavi that's the benefit of sharing know-how [13:57] xavi I guess. It's from "sec" (there is a deb pacakge) [13:57] Jyhem It's either (one or more non-space characters)(1 space)INTERFACE(1 space)(one or more non-space characters) [13:58] Jyhem non-space being anything not space, tab, linefeed maybe, etc [13:58] xavi ok, thanks [13:59] Jyhem or it's (one or more space-like characters)(1 space)INTERFACE(1 space)(one or more space-like characters) [13:59] xavi so I gues I can use that to create a new "sec" rule, to what out for those weird errors in the ispconfig3 server [14:00] xavi ..to match for the string "Handler for (null) returned invalid result code 70007" [14:00] xavi with simply: [14:00] xavi (\S+)Handler for (null) returned invalid result code 70007 [14:01] xavi or even better, with the ending (\S+), because the log line doesn't end with that, but with the referer url [14:01] xavi (\S+)Handler for (null) returned invalid result code 70007(\S+) [14:02] Jyhem Probably (\S+)Handler for \(null\) returned invalid result code 70007(\S+) [14:03] Jyhem because these are real parentheses [14:03] xavi ah, ok, thks [14:03] xavi btw, Jyhem, have you ever used the PHP mode PHP-FPM ? [14:04] Jyhem why don't you try first without the (\S+) ? [14:04] xavi ok, I'll try (I'm going to play first with some regexp helpers I found for Ubuntu in the repos ;-) ) [14:06] xavi I've just started my own doc page for regexps, after so many years of saving links in different computers and (paper) notebooks: http://seeds4c.org/regexps [14:06] Jyhem xavi: not on any server I currently manage ( php5-fpm nor fcgiwrap) [14:06] xavi ok. so you are using in your ispconfig-powered server the default PHP-FCGI? [14:06] Jyhem xavi: you need three pages or three sections for the regexp styles :) [14:07] xavi why 3? (newbie here still) [14:07] xavi perl and? [14:07] Jyhem one in vim, one on command-lines [14:08] xavi ok. he he, I'll discard vim (on ofense intended). Command-lines are kind of bash regexps? [14:08] Jyhem yes [14:09] xavi thks. I'll google a bit for that. As far as I know, everytime I needed regexps, I found someway (command, param, argument, etc) to say "perl like"... [14:09] xavi but thanks for hints, I'll keep that in mind [14:24] chibaguy joined #tikiwiki [14:29] ricks99 joined #tikiwiki [15:01] ricks99 polom y'all [15:04] Tiki-KGB 03manivannans r49485 10branches/12.x/lib/core/Tracker/Field/TextArea.php [15:04] Tiki-KGB [FIX] Changes added to fix PluginTracker input word count limit for text area not working Ref:http://dev.tiki.org/item5096. [15:26] xavi hi ricks99 [15:27] xavi Jyhem , fyi, I just updated this, http://seeds4c.org/Regular+expressions#Ubuntu , after testing the ubuntu packages. Some seem very nice and handy! [15:27] xavi bbl (lunch here) [15:28] Tiki-KGB 03manivannans r49486 10branches/12.x/templates/tiki-list_kaltura_media_entries.tpl [15:28] Tiki-KGB [FIX] Changes added to fix Kaltura user interface issue in browse media and action access Ref:http://dev.tiki.org/item5028. [15:34] Tiki-KGB 03eromneg r49487 10branches/12.x/templates/tiki-editpage.tpl [15:34] Tiki-KGB [FIX] this per page 'show title' option doesn't make sense if the 'wiki_page_name_above' pref is not on - so add a check for this. Also it should be noted that this 'show title' toggling only seems to apply to the 'wiki_page_name_above' pref and not the 'feature_page_title' pref [15:41] arildb_ joined #tikiwiki [15:45] ricks99 left #tikiwiki [17:21] fabricius joined #tikiwiki [17:44] Tiki-KGB 03jonnybradley r49488 10branches/12.x/lib/setup/ 10mobile.php 10javascript.php [17:44] Tiki-KGB [FIX] js: Set jqueryTiki.useInlineComment just once from the pref and disable it in setup/mobile (tidier) [17:48] Tiki-KGB 03jonnybradley r49489 10branches/12.x/lib/ 10setup/javascript.php 10tiki-js.js * [FIX] help: Obey help system prefs in plugin edit popup (thanks eromneg) [18:02] Tiki-KGB 03jonnybradley r49490 10(7 files in 5 dirs) [18:02] Tiki-KGB [MRG] Automatic merge, branches/12.x 49462 to 49489 [18:02] Tiki-KGB Conflicts in templates/tiki-editpage.tpl resolved manually [18:02] Tiki-KGB (the autotoc & page title prefs logic from 12.x had been mysteriously removed from trunk, so restored and ammended as per r49487) [18:08] marclaporte joined #tikiwiki [18:34] Tiki-KGB 03xavidp r49491 10branches/12.x/lang/ca/language.php * a few strings from the new versions of the * wizards translated [18:40] Tiki-KGB 03xavidp r49492 10branches/12.x/lang/ca/language.php * typo and a couple more strings translated [18:41] ricks99 joined #tikiwiki [19:03] Emenems joined #tikiwiki [19:07] marclaporte joined #tikiwiki [19:26] marclaporte Hi! Anyone know of a way to check in logs on permission changes? (ex.: group now has permission X) [19:44] Tiki-KGB 03arildb r49493 10trunk/ 10db/tiki.sql 10installer/schema/20131231_add_sheet_metadata_tiki.sql * [FIX] database error. longblob cannot have a default value [19:56] Tiki-KGB 03lphuberdeau r49494 10trunk/templates/user_conditions/approval.tpl * [ENH] Limit the space used by conditions, as most license agreements [20:02] Tiki-KGB 03arildb r49495 10trunk/ 10(6 files in 3 dirs) * [NEW] Secure data/password storage, using mcrypt [20:04] OpEx joined #tikiwiki [20:05] OptionEx Hello [20:05] arildb xavi: The (first draft) of the secure password storage has been committed [20:06] xavi wohoo, arildb, nice! (& hard work) [20:06] xavi hi OptionEx [20:06] arildb :-) [20:06] xavi marclaporte: no idea, sorry (is this logged?) [20:07] OptionEx I was wondering if someone could guide me in troubleshooting a problem. [20:07] xavi OptionEx: try it. Describe your problem, as detailed as possible [20:08] OptionEx I'm getting a "blank page" error when editing a page, but only in Firefox. [20:08] OptionEx Chrome works A-OK. Php mem is 256. [20:08] xavi url? tiki version? mmeory allocated to php? [20:08] ricks99 OptionEx: When saving? Or when opening to edit? Also, are you using wiki or wysiwyg mode? [20:09] OptionEx Ver 12 LTS [20:10] OptionEx Happens when saving, OR when canceling an edit on the page. Changes seem to go through when saving, however. The page just blanks out and I have to reload. [20:11] OptionEx I'm using the default editor for 12 LTS ( which I guess is wiki editing? ) [20:11] xavi can you reproduce it in http://demo.tiki.org ? (12.x) [20:11] ricks99 only in FF? wonder if a FF plugin or extension is interfering? [20:11] OptionEx ricks99: Could be. I'll try on demo.tiki.org and see if I can recreate. [20:12] Tiki-KGB 03lphuberdeau r49496 10trunk/lib/core/Services/Broker.php * [FIX] Modal had stopped working [20:12] OptionEx Thanks for your interest in helping out. [20:12] xavi thks, so that we have some public url we others can test and help you [20:12] xavi s/we others/where others [20:13] xavi OptionEx: you are welcome [20:13] xavi ... welcome to the Tiki Community! :-) [20:13] OptionEx Thanks : ) [20:14] OptionEx ricks99: I think you're on to something. Seems like I can recreate the problem on the demo site. I'll play around some more and try to nail down the things that cause problems. Then I'll supply my add-ons. [20:15] ricks99 try disabling all ur FF plugins. then re-enable 1 by 1 [20:15] ricks99 will be a PITA, but only way to figure it out :( [20:15] OptionEx ricks99: Yep. Here we go! ... [20:17] OptionEx Ack. Gotta reboot FF to disable some of these (chatting via web interface). brb. [20:19] OptionEx joined #tikiwiki [20:20] Tiki-KGB 03arildb r49497 10trunk/lib/crypt/cryptlib.php * [DOC] Correct comment. CryptLib automatically locates the "correct key phase" [20:24] OptionEx Ugh. Enabled add-ons one at a time, and everything works now. [20:24] ricks99 lol [20:25] ricks99 1st rule of troubleshooting. when in doubt, reboot ;P [20:25] OptionEx I wonder if it was some kind of weird caching issue in the browser? I am on a shared server, so I don't know if server load was causing the problem before. [20:26] OptionEx I hate not knowing what caused the problem, because I know it'll come back at some point (at the worst time, of course) [20:26] OptionEx Anyway, thanks for the troubleshooting guidance. [20:27] ricks99 glad all is working now for you. [20:27] ricks99 and welcome to Tiki :) [20:28] OptionEx In the meantime, I'll just continue my sacrifices to the Internet Gods and hope that they show mercy on me. [20:28] OptionEx Thx [20:54] dbalieiro joined #tikiwiki [21:15] OptionEx Wow, the minichat module is pretty cool. [21:16] Tiki-KGB 03xavidp r49498 10branches/12.x/ 03modules/mod-func-users_list.php 03templates/modules/mod-users_list.tpl * [NEW]Ported module users_list ( http://doc.tiki.org/Module+users_list [21:22] arildb_ joined #tikiwiki [21:22] xavi c u [21:22] xavi left #tikiwiki [21:25] fabricius1 joined #tikiwiki [21:38] Tiki-KGB 03arildb r49499 10trunk/ 10tiki-login.php 10tiki-change_password.php 10lib/prefs/feature.php 10templates/admin/include_security.tpl * [FIX] Add feature: feature_user_encryption to control the CryptLib activation [21:56] Tiki-KGB 03arildb r49500 10trunk/lib/tikilib.php * [FIX] Add TikiLib::lib type "crypt", to create CryptLib instances [21:59] marclaporte I have an old proposals branch and I get: svn switch https://svn.code.sf.net/p/tikiwiki/code/branches/6.x . [21:59] marclaporte svn: Server sent unexpected return value (403 Forbidden) in response to PROPFIND request for '/svnroot/tikiwiki/branches/6.x/lib/htmlpurifier_tiki/HTMLPurifier.tiki.php' [22:14] Tiki-KGB 03lphuberdeau r49501 10trunk/ 10(6 files in 6 dirs) [22:14] Tiki-KGB [MOD] Send emails from notifications when required, includes some path changes because strange things happen to paths during the shutdown process [22:15] fabricius joined #tikiwiki [22:18] Tiki-KGB 03lphuberdeau r49502 10trunk/lib/core/Services/User/ConditionsController.php * [ENH] Add message to indicate missing checkbox, lost with inclusion of decline [22:26] Tiki-KGB 03lphuberdeau r49503 10trunk/lib/core/Services/Broker.php * [FIX] Notice [22:28] Tiki-KGB 03robertplummer r49504 10trunk/ 10lib/payment/paypallib.php 10templates/admin/include_payment.tpl 10lib/prefs/payment.php [22:28] Tiki-KGB [NEW]Added method to be able to referance paypal by invoice id. [22:28] Tiki-KGB [NEW] password,and siganature from PayPal Pro account [22:31] fabricius joined #tikiwiki [22:48] Tiki-KGB 03lphuberdeau r49505 10trunk/ 10(6 files in 5 dirs) * [MOD] Inline styles in email content from the site's CSS files [22:50] Tiki-KGB 03arildb r49506 10trunk/ 10(6 files in 3 dirs) [22:50] Tiki-KGB [FIX] Use global cryptlib instance and TikiLib::lib, instead of class method. [22:50] Tiki-KGB [FIX] CryptLib - When changing user password, validate the decryption before rehashing the password [22:50] Tiki-KGB [FIX] Call $cryptlib->onChangeUserPassword when a user changes the password in the user preferences [23:04] Tiki-KGB 03arildb r49507 10trunk/lib/crypt/cryptlib.php * [DOC] Better CryptLib documentation [23:09] fabricius joined #tikiwiki [23:37] Tiki|bot joined #tikiwiki [23:38] Tiki|bot New Forum Posts: Storing secure password in Tiki - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=50947 [23:50] Tiki-KGB 03arildb r49508 10trunk/lib/prefs/feature.php [23:50] Tiki-KGB [FIX] Rename CryptLib feature to "User Encryption" (was: Tiki User Encryption). [23:50] Tiki-KGB [DOC] Better feature documentation, including link to help page