[00:01] *** Cain` has joined #tikiwiki [00:03] *** Cain has quit IRC (Ping timeout: 272 seconds) [00:03] *** Cain` is now known as Cain [00:29] *** squall has joined #tikiwiki [00:29] hello, I search a french support, is possible, thanks [00:42] *** Caarrie|away is now known as Caarrie [00:45] *** squall has quit IRC (Quit: Quitte) [01:06] *** ricks99 has quit IRC (Quit: Get more help: TikiWiki for Smarties http://twbasics.keycontent.org) [01:23] *** Kimberlee has joined #tikiwiki [01:23] hello. [01:31] *** Caarrie is now known as Caarrie|sleeping [01:50] *** goj|ghost has joined #tikiwiki [01:53] *** goj has quit IRC (Ping timeout: 248 seconds) [01:53] *** goj|ghost is now known as goj [02:02] *** fabricius_ has joined #tikiwiki [02:04] *** fabricius_ has left [02:05] *** fabricius has joined #tikiwiki [02:09] *** fabricius is now known as fabricius|afk [02:13] *** pjfrazi has joined #tikiwiki [02:20] *** pjfrazi_ has joined #tikiwiki [02:25] *** Kimberlee has quit IRC (*.net *.split) [02:28] *** Kimberlee has joined #tikiwiki [02:32] *** chealer has joined #tikiwiki [02:41] *** conner_bw has joined #tikiwiki [03:15] *** pjfrazi has quit IRC (Ping timeout: 252 seconds) [03:15] *** pjfrazi_ has quit IRC (Ping timeout: 252 seconds) [03:26] *** conner_bw has quit IRC (Quit: conner_bw) [04:11] *** chealer has quit IRC (Ping timeout: 240 seconds) [04:45] *** Kimberlee has quit IRC (Ping timeout: 240 seconds) [04:49] *** Kimberlee has joined #tikiwiki [04:54] *** FrankP_away has joined #tikiwiki [05:21] *** juice_d has quit IRC (Ping timeout: 252 seconds) [05:36] *** fabricius|afk has quit IRC (Ping timeout: 252 seconds) [05:41] *** ClaraM has joined #tikiwiki [05:41] *** ClaraM has quit IRC (Remote host closed the connection) [05:47] *** changi|afk has quit IRC (Ping timeout: 264 seconds) [05:53] *** Lucymoz has quit IRC (Ping timeout: 245 seconds) [05:54] *** changi|afk has joined #tikiwiki [05:59] polom [05:59] hi Kimberlee [06:00] *** FrankP_away has quit IRC (Ping timeout: 265 seconds) [06:15] hi luciash [06:17] g'night. [06:17] *** Kimberlee has quit IRC () [06:32] tikiwiki: 03nkoth * r27481 10/branches/5.x/templates/tiki-user_watches.tpl: [FIX] Fix spelling [06:43] Recent Bug: Tracker item: #3206 - - tiki-syslog.php has no browser title - http://dev.tikiwiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3206 [07:09] *** Wilkins has joined #tikiwiki [07:22] toctoc [07:33] *** KoddUX has joined #tikiwiki [07:34] *** KoddUX has quit IRC (Client Quit) [07:34] *** juice_d has joined #tikiwiki [07:35] xavi: cotcot [07:36] morning [07:36] * xavi likes having new energy around :-) [07:36] hi :) [07:37] I've found many many places with '{tr} .... {/tr}' still, even in trunk [07:38] * xavi is tempted to kill them all! [07:38] * xavi would substitute them for "{tr} .... {/tr}" [07:40] i understand but i think you have to be patient and wait for 5.1 [07:41] yes, I know (I was thinking in trunk (not branches/5x) [07:41] anyway, you have to wait at least until 5.0 final is out or sylvie will kill you ;) [07:41] (merges) [07:42] :-) [07:42] ok, I'll send a message to devel list, at least, about it [07:42] (maybe she would say "merdes" instead :-p) [07:42] :-) [07:43] New Forum Posts: Smarty errors: open_basedir restriction in effect - for nonexistent files? - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=14&comments_parentId=37358 [07:43] good idea [07:54] *** ClaraM has joined #tikiwiki [08:02] email sent [08:02] back to other work [08:10] any mysql guru around at this time? [08:10] we seem to have a problem in the upgrade scripts from tiki 2.1 to 4.x or 5.x.... [08:10] see this: http://tikiwiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=37355&thread_sort_mode=commentDate_asc#comments [08:11] it seems that a column "version_minor" is missing in table tiki_pages when you upgrade from 2.1... [08:19] I wonder if this is the right mysql command to fix old mysl installations without it: [08:19] ALTER TABLE `tiki_pages` ADD `version_minor` int(8) NOT NULL default '0' AFTER `version`; [08:36] maybe, i'm no mysql guru :) [08:40] oh well, I got it! [08:40] full story: http://tikiwiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=37355&thread_sort_mode=commentDate_asc#comments [08:40] I'll commit the solution [08:40] :-) [08:41] :) [08:43] but.... will this fix the problem of defective upgrades ? which run the defective upgrade process beforehand? [08:44] I mean, the defective upgrde script is this one: installer/schema/20090808_add_wiki_minor_edits_tiki.sql [08:44] as in proposals/4x [08:44] for some reason, this command didn't work for that user: [08:44] alter table tiki_pages add column version_minor int(8) NOT NULL DEFAULT 0; [08:44] in his server, I mean [08:45] and looking at other upgrade commands, I guess that this should work for him: [08:45] ALTER TABLE `tiki_pages` ADD `version_minor` int(8) NOT NULL default '0' AFTER `version`; [08:45] anyway, both commands worked for me on ubuntu [08:45] iwth mysql 5.x, etc [08:45] note that backticks are missing from the former upgrade schema [08:47] my question is: if I fix that upgrade schema from 2009 August, what wil happen to installations where they already run with that older syntax? when they upgrade again, I guess that they will not run the new (updated) sql file, because the date is old for them [08:48] anyway, I'll commit that slight change that should work in all cases, looking at the syntax of the other sql schemas [08:54] tikiwiki: 03xavidp * r27482 10/branches/5.x/installer/schema/20090808_add_wiki_minor_edits_tiki.sql: [08:54] tikiwiki: [FIX]For some reason, some users upgrading from 2.1 reported that this fix was [08:54] tikiwiki: missing for them, and it seems to be slightly different from other schemas [08:54] tikiwiki: (upper case and backtikcs). For more info, see [08:54] tikiwiki: http://tikiwiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=37355&thread_sort_mode=commentDate_asc#comments [08:54] tikiwiki: . I'm not mysql guru but this also works for me, and it looks more standard [08:54] tikiwiki: mysql syntax in tiki schemas. [08:55] tikiwiki: 03xavidp * r27483 10/branches/proposals/4.x/installer/schema/20090808_add_wiki_minor_edits_tiki.sql: [08:55] tikiwiki: [br/r27482][FIX]For some reason, some users upgrading from 2.1 reported that [08:55] tikiwiki: this fix was missing for them, and it seems to be slightly different from other [08:55] tikiwiki: schemas (upper case and backtikcs). For more info, see [08:55] tikiwiki: http://tikiwiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=37355&thread_sort_mode=commentDate_asc#comments [08:55] tikiwiki: . I'm not mysql guru but this also works for me, and it looks more standard [08:55] tikiwiki: mysql syntax in tiki schemas. [09:48] *** harrierpark has joined #tikiwiki [09:51] hi, I am installing tiki. The documentation says that 3.5 is the current version. I have tried 4.2 and 5.0 on my mac (using MAMP) and I like the newt theme on 5.0 the best. I have not had any stability issues, the download page warns against using it in production. Is it reasonably save to use? [09:52] *** Caarrie|sleeping has quit IRC (Quit: bye see you later) [09:55] *** Caarrie has joined #tikiwiki [10:00] *** Caarrie|away has joined #tikiwiki [10:03] *** Caarrie has quit IRC (Ping timeout: 248 seconds) [10:05] New Forum Posts: PHP-Errors: Invalid argument supplied for foreach() - for admin and freetags - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=37362 [10:11] *** clara_ has joined #tikiwiki [10:11] *** Wilkins_ has joined #tikiwiki [10:12] *** ClaraM has quit IRC (Read error: Operation timed out) [10:14] *** Wilkins has quit IRC (Ping timeout: 240 seconds) [10:20] *** clara__ has joined #tikiwiki [10:20] *** clara_ has quit IRC (Ping timeout: 258 seconds) [10:20] *** Wilkins has joined #tikiwiki [10:20] *** Wilkins_ has quit IRC (Ping timeout: 248 seconds) [10:22] *** harrierpark has quit IRC (Ping timeout: 252 seconds) [10:39] *** martijn85 has joined #tikiwiki [10:39] hello [10:40] *** xavi has left [10:40] where within tikiwiki 4.2 [10:40] can I enable the function to search withing a wiki page [10:40] not a global search. but within the page [10:52] one page ? [10:53] or all wiki pages ? [10:57] martijn85: for "all wiki pages search" look for "Search Wiki Page (new)" module on [10:57] tiki-admin_modules.php [11:05] just on one page [11:05] which is in the screen [11:05] for like when u have a gigantic wiki page [11:05] and u need to search for 1 particular word [11:06] *** ricks99 has joined #tikiwiki [11:10] martijn85: then use Ctrl + F [11:11] martijn85: browser built-in "find on page" [11:11] martijn85: or create custom form going to the same page with param &highlight=foo [11:12] martijn85: where it will highlight all "foo" found on the page [11:13] martijn85: there's no need to create such search to be included in Tiki [11:14] *** Hans__ has joined #tikiwiki [11:14] *** chibaguy has joined #tikiwiki [11:14] *** ChanServ sets mode: +o chibaguy [11:16] that's correct [11:16] but in my thoughts I saw an option in wiki [11:16] hi all :) [11:16] where it includes search form on wiki page particular [11:16] but maybe it was in my dreams :P [11:17] how do I set up a wiki page what has a completely different layout than the other page. Like different logo, different menu styles, different content. BUT I want to use the same tracker, galleries, users, groups as the rest of tiki [11:18] Hans__: every page should have unique id="" attribute of html tag [11:18] Hans__: so you can create CSS sing that [11:19] s/sing/using [11:19] what do I do with that Id? I have seen it [11:19] just continue [11:20] So I put s/sing/using where? Sorry, I'm not an expert [11:20] you put in your custom CSS something like: #theid body {background-color: red} etc. [11:21] or you can try the Tiki's Theme Control feature [11:21] sorry, gotta run now, bbl [11:21] * luciash passing the mic to ricks99 ;) [11:22] errr... um.... [11:22] @Hans__: Try somehting like this: http://twessentials.keycontent.org/Customizing+Per+Page [11:23] (still in beta, so use with caution :) ) [11:24] use that process to load a specific css for a specifi page. you can use this css to override any/all settings to make the page appear as custom [11:25] is that what you're trying to do... [11:25] * ricks99 still needs more coffee [11:25] looks great ricks99, so I assume I also can add java script code there. That is exactly what I was looking for. You guys are great!!!!!!! [11:26] *** martijn85 has quit IRC (Quit: Page closed) [11:29] if you want to include Jaascript on a per-page basis, use the JS plugin [11:29] (or the HTML plugin) [11:29] on that particular wiki page [11:29] * ricks99 hands the mic back to luciash [11:56] tikiwiki: 03sylvieg * r27484 10/branches/5.x/lib/smarty_tiki/function.preference.php: [FIX]pref: a little less confusing message [12:06] * luciash is back [12:06] thank you ricks99 :) [12:09] I need an advice .. there are 3 prefs 'print_pdf_from_url', 'print_pdf_webkit_path', 'print_pdf_webservice_url' that are only use in the plugin archivebuilder [12:10] They are not in a panel... I added them as dependencies of wikiplugin_archivebuilder [12:11] but the search does not work on dynamic build preference... so where do I put them? in general a fildset print? [12:18] *** redflo has joined #tikiwiki [12:20] tikiwiki: 03sylvieg * r27485 10/branches/5.x/templates/tiki-admin-include-general.tpl: [FIX]prefs: add the print settings in a panel [12:21] sylvieg: where did you added the dependencies ? if it doesn't work i would say the search should be fixed [12:21] not to workaround it [12:21] I put them in general [12:21] you're too fast :) [12:22] perhaps they will be used for other that archivebuilder... remember the 3 libs to generate pdf [12:22] yep, probably, that would make sense [12:23] i still don' know what the metrics are [12:23] somebody spent 2 hours yesterday to understand where to set them .. I spent 10 mn to add them ;-) [12:23] is pdf being re-added in tiki 5? [12:23] archivebuilder plugin is working.... [12:24] it builds zips or what ? [12:24] btw [12:24] so I suppose that for 6 we can put back everything together [12:24] yeas a zip of pdf [12:24] s/of/or/ ? [12:25] it builds a zip of wiki page and tracker attachments [12:25] s/pages [12:27] the problem is so far I understand it needs a task on your server - that is GPL... or you find a webservice to do that.... so we are still a little stuck [12:27] *** Hans__ has quit IRC (Ping timeout: 252 seconds) [12:28] :-/ [12:30] i can produce nice pdf using x(ht)ml+xslt, but it requires Apache FOP, which is also third party binary and not LGPL compatible... :-\ [12:30] what was wrong with the previous PDF lib in Tiki btw ? [12:32] do not ask me! I did not introduce myself one of the 3 pdf libs ;-) [12:32] the old PDF lib was not very good. did not produce quality PDFs [12:33] but it is true - that with zend we need to use their lib... [12:33] but at least it worked without any additional software needed on the server ;) [12:34] ZendPDF ? [12:34] :) [12:34] it did not work well at all. [12:37] * sylvieg must say she is confused - need some time to reconsider all the pdf stuff [12:38] is pdf being added in for 5.0, or 5.x? [12:38] * ricks99 hopes tha t5.0 is released *soon* [12:39] we still have lib/mozilla2ps/mod_urltopdf.php stuff taht is probably working if you instal that [12:43] Recent Bug: Tracker item: #3207 - - LDAP configuration not functioning - http://dev.tikiwiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3207 [13:00] *** MacLeod has joined #tikiwiki [13:07] *** chealer has joined #tikiwiki [13:09] *** FrankP_away has joined #tikiwiki [13:12] *** Cain` has joined #tikiwiki [13:14] *** Cain has quit IRC (Ping timeout: 272 seconds) [13:14] *** Cain` is now known as Cain [13:18] *** clara__ has quit IRC (Remote host closed the connection) [13:18] *** ClaraM has joined #tikiwiki [13:23] tikiwiki: 03nkoth * r27486 10/branches/5.x/templates/tiki-admin-include-wiki.tpl: [FIX] Prevent wiki home page setting from getting replaced with group homepage if set at the time the "admin" changes the admin...wiki settings. [13:24] *** martijn85 has joined #tikiwiki [13:24] good afternoon [13:24] I am using tikiwiki 4.2 [13:24] and showing images on my wiki works great [13:24] but I see some kind of plugin @ each image [13:25] is there a way I could hide that plugin option (plugin:img) [13:28] not sure i understand. images are added to wiki pages via the IMG plugin. [13:28] there's no other way to get images on a wiki page (afaik) [13:29] I understand [13:30] but showing pages to anonymous will show a { } with a pencil [13:30] there is no hide that for people or only show it to administrators? [13:30] the {} with a pencil [13:30] need to change your Anonymous group permissions then. Do not allow anonymous to edit plugins [13:30] is at every picture [13:41] hmm i changed permission tiki_p_plugin_preview , tiki_p_plugin_approve and tiki_p_plugin_viewdetail [13:41] but no solution.. [13:42] no. u need to disable the ability to edit the page (tiki_p_edit) [13:42] in the admin panel I also get this [13:42] Enable edit plugin icons [13:42] ah oke [13:43] then I have to accept it [13:43] because a wiki only works with editors ;p [13:43] sorry, but i don't understand? do you want users to be able to edit the page or not? [13:45] to edit the page YES [13:45] but at every image [13:45] I get a {} with a pencil [13:45] with plugin:img [13:45] and I don't want people to see that [13:45] just the picture an sich [13:45] ? so how will they edit the picture? [13:46] but I think (Enable edit plugin icons) [13:46] will maybe fix this? [13:46] if all u want to do is turn off the icon, disable the "enable edit plugin icons" [13:46] that's the only question [13:46] okey thanks [13:47] thanks [13:48] *** ricks99_ has joined #tikiwiki [13:49] *** fabricius has joined #tikiwiki [13:50] *** ricks99 has quit IRC (Ping timeout: 240 seconds) [13:53] *** martijn85 has quit IRC (Quit: Page closed) [13:58] tikiwiki: 03ricks99 * r27487 10/trunk/templates/freetag_list.tpl: [ENH]use icon instead of (x). added title text for ux [14:00] *** Helene has joined #tikiwiki [14:03] *** chibaguy has quit IRC (Read error: Connection reset by peer) [14:04] *** Helene has quit IRC (Ping timeout: 252 seconds) [14:06] New Forum Posts: Group Assignment of Module - projectpot.com - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=37365 [14:20] *** xavi has joined #tikiwiki [14:36] New Forum Posts: Link to informatie - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=37366 [14:36] *** MacLeod has quit IRC (Quit: Page closed) [14:44] *** harrierpark has joined #tikiwiki [15:00] *** conner_bw has joined #tikiwiki [15:30] Hi I am setting up a new site and am uncertain which version to use. 3.5 is LTS, 4.2 is promoted on the download screen and 5.0 has payment features I'd like to use, but is it stable? All advice is appreciated. [15:37] harrierpark: hi. Payment features are experimental (welcome to experiment :-) ) [15:38] if you are not in a hurry to have it in production, go for 5.0 if you are starting from zero [15:39] Q: is it possible to use antibot protection on a per-feature basis? For example, require it for anonymous freetag, but not for anonymous tracker? [15:39] *** ricks99_ is now known as ricks99 [15:39] ricks99: nope, it's not coded yet :-) [15:40] hm.... but you're working on it? :_) [15:40] to xavi, thanks for the response. Is stability is not really an issue among the versions? [15:40] at ricks99: nope² [15:41] if you are starting from zero, tiki5 is stable. [15:41] it's not release as the new stable version because some issues when upgrading from some tiki4 installation (depends on certain type of previous installation, etc.) [15:41] harrierpark: ^ [15:42] ricks99: but it should be too difficult to code, if you have time to get more skills :-) [15:42] ricks99: I managed to learn how to add antibot captcha for anons on some features [15:43] and you can learn from the "contribution" feature explained in the "hello world" tutorial, which has a similar configuration screen to what you are looking for with antibot [15:43] hth [15:43] y, i know how to add it. but i was looking for an existing (easy) way to make it optional. [15:43] otherwise, i need to add entirely new set of preferences for each feature :( [15:43] "existing": false [15:44] that's all I can say, with my limited knowledge and limited time [15:44] and good luck if you do, of course (I can also say that :-) ) [15:44] tx anyway... kinda confirmed what i thought [15:45] :-) [15:45] :-) [15:46] ricks99: btw, congratulations for the nice work you have in smarties site. I couldn't resist to improve the permissions page at doc.tw.o with content from smarties [15:46] luckily, the copyright licenses are compatible, afaik :-) [15:47] yup. CCSA with attribution. copy & paste as uyou desire :) [15:58] *** conner_bw has quit IRC (Quit: conner_bw) [16:08] woo hoo! 100% xhtml validation (finally) [16:26] *** Wilkins has quit IRC (Ping timeout: 276 seconds) [16:31] Recent Bug: Tracker item: #3208 - - since upgrade to 5. ... - http://dev.tikiwiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3208 [16:33] ricks99: depends on page ;) don't try other features rather [16:57] *** ClaraM has quit IRC (Remote host closed the connection) [17:01] hm... using freetags, i see no difference when type=list or type=cloud (using 5.x ) [17:03] no wonder. the TPL {if} has an error [17:08] oh.. nvr mind. i understand now [17:09] * xavi remembers a Spanish saying: "A few words are needed for a good learner" [17:10] and in the limit, no words from others are needed for a good learner such as ricks99 ;-) [17:10] i guess it depends on *which* words, eh? [17:10] :-) [17:10] * ricks99 still thinks ther's something odd with freetags when type=list. i'm not seeing what i would expect [17:10] oh well, that's the saying... [17:11] hm... doesn't translate real well... :( [17:11] s/a few words/just a few words [17:12] in Spanish: "Al buen entendedor, pocas palabras bastan" [17:13] but I don't know how to properly translate... that former one was a quick approach in simple words [17:14] ah.. sort of like... a good leaner knows when to *listen* instead of talking? [17:15] nope, it's not that meaning, but this is a good candidate for a new saying :-) [17:16] when you are in front of a good learner, you don't need to provide more than a few wors for that person to understand what you were going to say [17:16] s/wors/words [17:16] :) [17:16] here's your chance to teach me..... [17:17] i want to list the top 10 tags used in a site. A simple numerical list, in order of most used. [17:17] how? [17:17] type=list shows me a list, but tags are in ABC order [17:17] 3 words: "beyond my skills" [17:18] which could have been (according to the saying): "beyond..." (1 word) [17:19] so, sorry I can't help more [17:19] * ricks99 off to dig through the php [17:20] :( sourt_mode doesnt work. maybe this isn't possible.... [17:21] *sort_mode [17:22] bye lads and laddies [17:22] *** fabricius has left "fooooooooppp" [17:29] New Forum Posts: How to show Top XX freetags? - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=37367 [17:39] do we have a plugin COMMENT [17:40] because ~tc~ is interpreted after the plugins are interpreted [17:46] do u mean like a html comment, or just something like the RemarksBox plugin? [17:50] something like ~tc~ ;) [17:51] sylvieg: afaik we don't have one but it would be easy to have one which would return ''; [17:51] I will parse 2 time ~tc~ - I think it is the best [17:52] tikiwiki: 03sylvieg * r27488 10/branches/5.x/lib/tikilib.php: [FIX]parsing: parse 2 times ~tc~ because plugins can be in ~tc~ and do not need to be parsed and plugins can produce ~tc~ [17:54] I was on a site hyper hyper slow the user has tons on TRACKERLIST in ~tc~ [17:55] sylvieg: do u know anything about freetags. see my Q ^^^ [17:59] which module freetags_most_popular? [18:00] y [18:00] strange because the code in sort on count [18:01] aha ah perhaps you are right [18:01] i think the tsort_mode parameter is broekn. i can't sort ANY tags (see http://doc.tikiwiki.org/tiki-browse_freetags.php ) [18:01] I see the problem [18:01] there's no change when sortying by abc or count [18:01] can you try this lib/freetag/freetaglib/php [18:01] :-) easy fix? [18:02] replace [18:02] array_multisort($tag, SORT_ASC, $count, SORT_DESC, $ret); [18:02] with [18:02] array_multisort($count, SORT_DESC, $tag, SORT_ASC, $ret); [18:02] just a guess [18:05] the documentation of array_multisort is not simple [18:05] YOU ROCK!!!!! [18:06] +1 [18:06] um... [18:06] sylvieg rock [18:06] wait... [18:06] you can commit in 5 - a bug [18:06] wait.. [18:06] perhaps it is not so simple - back to the doc [18:07] but now my rgular cloud does not sort by ABC [18:07] i want tiki-browse_freetags to sort by name [18:07] ahah [18:07] the tsort_mode paramter is not being picked up [18:08] *** FrankP_away has quit IRC (Quit: Nettalk6 - www.ntalk.de) [18:11] * sylvieg does not uinderstand how the sort on count can work - mujst be array_multisort($count, SORT_DESC, SORT_NUMERIC, $tag, SORT_ASC, SORT_STRING, $ret); at least [18:12] * ricks99 doesn't even see where the sort paramater is valid in mod-func-freetags_most_popular.php [18:13] ther is no sort param .. because it is making no sense to have one... most popular is only one sort [18:13] on tiki-browse_freetags, there is a sort option: by abc or by count [18:14] ... but it doesnt seem to work! [18:15] the link adds a ?tsort_mode=... to the URL , but nothing seems to happen [18:16] * sylvieg needs to build a site with freetags... [18:16] take a look at doc.tw.o [18:17] *** Sug4r has quit IRC (*.net *.split) [18:18] *** Sug4r has joined #tikiwiki [18:18] sylvieg, btw, if you want to test here , you can (a pleasure): http://r-help-es.ourproject.org [18:19] you have the site built, with freetags and freetaged contetn [18:19] using tiki5.x (updated 4 hours ago or so) [18:19] and you have ssh access to that server :-) [18:19] but without ssh access I am not very powerful [18:19] ;-) [18:19] and it's not in production, so that there is som eroom for tests [18:19] you DO have ssh access [18:20] bbl school pickup - time is flying.. [18:20] ok [18:20] tx for looking at this sylvieg [18:20] mine was not a request, just an offer [18:21] in case it helps (it takes a while to setup a site with freetags and freetagged content) [18:35] but most popular should the count with the css [18:35] ricks99: you do not want taht? [18:38] a param is missing in the lib [18:43] tiki-browse_freetag seems completly broken to me - what means the sort on the tags or on the results? [18:45] i want both [18:45] i want to 1. list by count (biggest first) and list by 2. abc order [19:03] *** harrierpark has quit IRC (Quit: Page closed) [19:27] *** Jyhem has joined #tikiwiki [19:47] *** ricks99 has quit IRC (Quit: Get more help: TikiWiki for Smarties http://twbasics.keycontent.org) [19:56] *** xavi has left [20:22] *** L0ggar has quit IRC (Ping timeout: 240 seconds) [20:33] *** L0ggar starts logging #tikiwiki at Thu Jun 03 20:33:15 2010 [20:33] *** L0ggar has joined #tikiwiki [20:41] *** sthi has joined #tikiwiki [20:42] *** sthi has quit IRC (Client Quit) [20:44] polom all! Does the GroupMail profile work in v5 ? [21:00] *** Kimberlee has joined #tikiwiki [21:00] hello all. [21:07] *** Kimberlee has quit IRC () [21:07] *** RavenC has quit IRC (Quit: ~ Trillian Astra - www.trillian.im ~) [21:45] New Forum Posts: How to remove (X Posts | Y Visits | Activity=#.##) - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=37370 [22:21] *** Lucymoz has joined #tikiwiki [22:31] *** Cain` has joined #tikiwiki [22:31] *** Cain has quit IRC (Ping timeout: 272 seconds) [22:31] *** Cain` is now known as Cain [22:40] *** rodrigo_sampaio has joined #tikiwiki [22:45] since when we had a new sf devel? or there is anymore red carpet.... [22:48] it is fun at the beginning lot of devels - personal donations - now no devel - no personal donation - suppose it is because we go over the criticalo size [22:56] *** Caarrie|away has quit IRC (Quit: bye see you later) [22:59] *** goj|ghost has joined #tikiwiki [22:59] *** Caarrie has joined #tikiwiki [22:59] *** Caarrie is now known as Caarrie|away [23:02] *** goj has quit IRC (Ping timeout: 248 seconds) [23:02] *** goj|ghost is now known as goj [23:42] *** Caarrie|away is now known as Caarrie [23:46] *** redflo has left [23:52] *** conner_bw has joined #tikiwiki