←Prev date Next date→ Show only urls(Click on time to select a line by its url)

WhoWhatWhen
chealerpetriknz: yes. all homepage preferences should be in the general panel
petriknz: check which URL the wiki page has
[00:04]
CIA-87tikiwiki: 03chealer * r34696 10/branches/7.x/ (2 files in 2 dirs):
tikiwiki: [FIX] Tracker Help module: fix ignored rows parameters (name conflict with common rows parameter)
tikiwiki: remove ignored max parameter
tikiwiki: From r28996
[00:08]
tikiwiki: 03chealer * r34697 10/branches/7.x/modules/mod-func-trackerhelp.php: remove max parameter to the max [00:15]
.... (idle for 15mn)
***Caarrie|away is now known as Caarrie|sleeping [00:30]
petriknzIn the tracker area it says "Item creator can modify his items?" and then says "The tracker needs a user field with the option 1" How do I do this user field? [00:43]
***redflo has quit IRC (Quit: Leaving.) [00:54]
........ (idle for 38mn)
dabright has joined #tikiwiki
dabright has quit IRC (Client Quit)
dabright has joined #tikiwiki
[01:32]
dabrightHave a question regarding permissions and wikiplugin_files and list_file_gallery_content.tpl (which the plugin uses). The plugin sets up a list of files and then passes it to smarty which formats the list using the tpl. If you list a gallery, the file name will be a link to download the file. If you list specific file (ids), then the file name will be link, but it has no href. [01:37]
Tiki|botWelcome to the official Tiki Wiki CMS Groupware channel. Please ask your question directly. Don't ask to ask. Someone will reply if and when they know the answer. Welcome again and please stay a while. Thank you!
Welcome to the official Tiki Wiki CMS Groupware channel. Please ask your question directly. Don't ask to ask. Someone will reply if and when they know the answer. Welcome again and please stay a while. Thank you!
[01:37]
dabrightThe plugin will set an attribute of the file, 'p_download_files', to indicate if the user has permission to download the file. But the tpl looks at files[].perms.tiki_p_download_files. The latter happens to be set when listing a gallery, but not when listing individual files.
So, which attribute should the template really be looking at when constructing the link?
fgal_context_menu.tpl looks at both, preferring p_download_files if set and falling back to perms.tiki_p_download_files if it isn't.
[01:38]
***rtdos has quit IRC (Ping timeout: 250 seconds)
goj|ghost has joined #tikiwiki
marclaporte has joined #tikiwiki
ChanServ sets mode: +o marclaporte
[01:48]
marclaportepolom [01:54]
***goj has quit IRC (Ping timeout: 276 seconds)
goj|ghost is now known as goj
[01:54]
petriknzHow do you rename a wiki page? [02:07]
dabrightIf you have permission to do so, there should be a "Rename" button at the bottom of the page. [02:09]
petriknzDOH! I was looking in the wrong place as always. [02:11]
marclaportechangi : ping [02:19]
.... (idle for 17mn)
chealerchealer notes that it's Monday 04:36 in France
dabright: that's a mess. I did a modification for a customer for the FILE plugin a few days ago, if they don't whine I'll commit it.
dabright: but still there should be real cleanup, the array should pass a yes or no, not several things to check
[02:36]
petriknzI selected the calendar as a module for the right sidebar but it is not coming up, what have I done wrong now? [02:38]
chealerdabright: it's the PHP that should decide if each file is downloadable or not.
petriknz: which version do you use?
[02:40]
petriknzwhere can I locate exact version? It is 6.x [02:42]
chealerpetriknz: in the admin panel, general I think
petriknz: did you select groups for the module?
[02:42]
dabrightchealer: agreed
How about if I change the php and tpl so that the php creates/sets the p_download_files attribute (which I actually think it already does) and the tpl always checks that attribute?
[02:43]
petriknzYes selected the groups [02:45]
dabrightOn the other hand, it may be better to artificially generate the perms.tiki_p_download_files attribute when it isn't already there. There are a fair number of templates that check perms.*
Just a couple check other attributes like p_download_files
Or has your mod (pending checkin) already taken care of all this?
[02:48]
chealerpetriknz: is the calendar feature enabled? [02:50]
petriknzYes [02:50]
chealerdabright: my mod just tries to uniformize the checks in the templates for one place (the plugin wouldn't offer to download but tiki-list_file_galleries.php would
so it doesn't touch the PHP
petriknz: and the module doesn't show for a user in one of the selected groups?
[02:51]
petriknzWell I am logged in as admin right now, I did set it for the admin group as well as the group I want to see it in. There is a link "Calendar" in the default Application Menu, I just can't get it to show as a sidebar module, I'll try loging out and in as a user from the other group
No still not showing
[02:55]
CIA-87tikiwiki: 03chealer * r34698 10/trunk/templates/list_file_gallery_content.tpl:
tikiwiki: FILE plugin: make link to download a file consistent with context menu link and tiki-list_file_gallery.php. The link would not be clickable (no href) even when the file is downloadable.
tikiwiki: I don't know if the other places use a good check, but this place was wrong for sure.
tikiwiki: TODO: cleanup
[02:56]
chealerdabright: we should make sure all templates check a single attribute and have the PHP set just that
a good part of the problem is to establish what are the actual rules determining if one can view a file
[03:01]
dabrightAgreed on both points. I just updated to catch your mod; it is almost the same as what I did locally. There is another check a few lines down from that, though, that it looks like you missed.
From what I can tell, the PHP is setting the attribute correctly, the template just looks elsewhere.
Actually, I'd say that the PHP in wikiplugin_files is setting the permission correctly, but it shouldn't have to. The permission returned from the core really should be set correctly, but it doesn't appear to be so at this point.
[03:06]
chealerdabright: right, feel free to fix that other place [03:11]
dabrightIn my case, I've got tiki_p_download_files set globally to allow and a category that denies tiki_p_download_files to anonymous. My gallery belongs to that category and has a file in it that is /not/ in the category (directly). Download of that is allowed only to registered users, which is what I wanted. [03:12]
chealerdabright: I agree for the individual file case, the plugin code is about what is should be [03:12]
..... (idle for 20mn)
CIA-87tikiwiki: 03dabright * r34699 10/trunk/templates/list_file_gallery_content.tpl: [FIX] FILES plugin: Correct another permission check to be consistent with context menu link. [03:32]
tikiwiki: 03dabright * r34700 10/branches/7.x/templates/list_file_gallery_content.tpl: [bp/r34698,r34699][FIX] FILES plugin: Make list_file_gallery_content.tpl permission checking consistent with the plugin and the context menu template [03:43]
petriknzAm I missing an on/off switch for the calendar somewhere, also what's the difference between Action Calendar and Calendar? [03:47]
chealerpetriknz: the action calendar is a calendar of system events, such as wiki page modifications, forum posts and article publications [03:52]
petriknzWell that confirms I'm trying to get the correct one going but It's not showing up. [03:54]
...... (idle for 28mn)
marclaportelast time I tried, it wasn't working (Action Calendar) [04:22]
***coaboa has joined #tikiwiki
coaboa|afk has quit IRC (Ping timeout: 246 seconds)
[04:24]
.... (idle for 19mn)
lphuberdeau has quit IRC (Ping timeout: 252 seconds) [04:43]
petriknz has quit IRC (Quit: Page closed) [04:52]
........ (idle for 37mn)
marclaportemarclaporte sees missing/squished modules on http://demo.tiki.org/7x/HomePage [05:29]
.... (idle for 15mn)
marclaporte fixed it
it was a feature, not a bug
filtering logo module by language
[05:44]
........ (idle for 39mn)
Tiki|botNew Forum Posts: Show same category links in directory module based on wiki page category - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=41367 [06:23]
.... (idle for 16mn)
***lphuberdeau has joined #tikiwiki
redflo has joined #tikiwiki
[06:39]
......... (idle for 40mn)
Wilkins has joined #tikiwiki [07:20]
...... (idle for 27mn)
CIA-87tikiwiki: 03chealer * r34701 10/branches/7.x/lib/prefs/wikipluginprefs.php: Change preference name 'Plugin pending notification' to 'Plugin pending approval notification' [07:47]
..... (idle for 24mn)
tikiwiki: 03chealer * r34702 10/branches/7.x/lib/wiki-plugins/wikiplugin_catpath.php: [FIX] HTML special characters encoding [08:11]
***lphuberdeau has quit IRC (Ping timeout: 240 seconds) [08:14]
CIA-87tikiwiki: 03jyhem * r34703 10/branches/7.x/lib/tikilib.php: [FIX BP34691] Make the feature also usable for members of the Admins group [08:26]
.......... (idle for 48mn)
***petriknz has joined #tikiwiki [09:14]
petriknzTrying to setup File Galleries to directory, directory is writable but I still get error Cannot write to this file. What could be stopping it? [09:20]
.... (idle for 19mn)
Tiki|botNew Forum Posts: left menu disappears when tiki-view_blog_post - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=41369
New Forum Posts: Tiki multi sites? - http://tiki.org/tiki-view_forum_thread.php?forumId=7&comments_parentId=41368
[09:39]
***petriknz has quit IRC (Quit: Page closed) [09:53]
Caarrie|sleeping is now known as Caarrie|away [09:58]
lphuberdeau has joined #tikiwiki [10:09]
Tiki|botRecent Bug: Tracker item: #3904 - - Ip logging in many table too short for IPv6 - http://dev.tiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3904 [10:21]
CIA-87tikiwiki: 03jonnybradley * r34704 10/trunk/lib/setup/twversion.class.php: [REL] Rollback version update from 7.x [10:33]
.......... (idle for 47mn)
***chealer has quit IRC (Ping timeout: 246 seconds) [11:20]
................. (idle for 1h24mn)
Bilal1 has joined #tikiwiki [12:44]
Bilal1I just enabled "BLOGS" in my TIKIWIKI 6.0 and it gives an error when I try to create a (first) blog , You don't have permission to access /tiki-edit_blog.php on this server.
how to fix this?
[12:46]
CIA-87tikiwiki: 03lphuberdeau * r34705 10/trunk/tiki-ajax_services.php: [MOD] Moving feature checks that were applied too broadly [12:48]
Bilal1can anyone help? [12:49]
lphuberdeautry running setup.sh
sometimes it fixes things
[12:49]
Bilal1lphuberdeau: are you suggesting me? [12:51]
lphuberdeauwho else?
otherwise, check the apache error logs to see what caused that error
[12:51]
..... (idle for 20mn)
***radek82 has joined #tikiwiki [13:11]
..... (idle for 20mn)
rodrigo_sampaio has joined #tikiwiki [13:31]
rodrigo_sampaio has quit IRC (Ping timeout: 244 seconds)
rodrigo_sampaio has joined #tikiwiki
[13:38]
...... (idle for 27mn)
Kissaki has left "Leaving" [14:08]
..... (idle for 20mn)
marclaporteBilal1 : 6.0 or 6.3? I seem to remember some blog fixes
petriknz: maybe directory one level higher?
[14:28]
***RobertPlummer has joined #tikiwiki [14:34]
RobertPlummerpolom all [14:35]
CIA-87tikiwiki: 03robertplummer * r34706 10/branches/7.x/ (lib/toolbars/toolbarslib.php tiki-view_sheets.php): [FIX] Sheet save button and ajax combined within [14:36]
RobertPlummermarclaporte: you think it is a good idea to kill those buttons we talked about in sheet for 7? [14:37]
marclaporteno, 8 [14:37]
RobertPlummerok [14:37]
marclaporteonly critical things in 7 [14:37]
..... (idle for 21mn)
lphuberdeaulphuberdeau just received a copy of Tiki for Smarties and it looks fantastic [14:58]
RobertPlummerlphuberdeau: The website?
or a book?
[15:01]
lphuberdeauhttp://www.lulu.com/product/paperback/tiki-for-smarties/15849663 [15:02]
***eldios has joined #tikiwiki [15:04]
RobertPlummerVery Cool! [15:04]
eldioshey guys.. two simple questions [15:04]
***USlacker has joined #tikiwiki [15:04]
eldios1) I get a 404 when I try to create a new empty non-existent page from a new non-existing URL.. any ideas? (both from directly and from a wiki-exixsting-page-URL) [15:05]
lphuberdeaua tiki 404? [15:05]
eldios2) PDFTOHTML prints an empty page from wiki while it works as a charme by CLI... any hint?
lphuberdeau, yes.. "Page not found foobar"
[15:05]
lphuberdeauit usually contains a link to create it [15:06]
eldioslet me see again.. but it seems not to me [15:06]
Bilal1marclaporte: its 6.0 beta [15:06]
lphuberdeauwhich version?
no clue about pdftohtml...
[15:06]
.... (idle for 16mn)
***Bilal1 has quit IRC (Quit: Page closed) [15:23]
.... (idle for 15mn)
rodrigo_sampaio has quit IRC (Quit: Leaving.) [15:38]
CIA-87tikiwiki: 03lphuberdeau * r34707 10/trunk/ (6 files in 4 dirs): [NEW] Base for an AJAX comment interface, including basic handling for AJAX controllers [15:44]
***RobertPlummer has quit IRC (Ping timeout: 252 seconds) [15:46]
.... (idle for 16mn)
chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
[16:02]
marclaportemarclaporte has "Tiki for Smarties" copies on the way
eldios : if you are allowed to edit pages, you'll have link to create that page
[16:10]
eldiosyes I did
the problem was I used the external link to link the non-existing page
that was the problem
=)
[16:11]
.... (idle for 17mn)
***dabright1 has joined #tikiwiki
dabright has quit IRC (Ping timeout: 244 seconds)
DerZauberer has joined #tikiwiki
[16:29]
DerZaubererhi
I just installed tikiwiki
but I have a problem with the url generation
it looks like this: "/tiki-admin.php/tiki-admin.php?page="
[16:31]
and the tiki_admin_modules.php page gets rendere without a header or footer [16:39]
marclaporteDerZauberer : which version of Tiki?
marclaporte has never seen that
[16:39]
DerZauberer6.3 [16:39]
marclaporterunning on Lin or Win? [16:40]
DerZaubererlinux
nginx with php-fpm
[16:40]
marclaportedid you change settings like Short URLs or base URL? [16:41]
DerZaubererno
I didn't find the configuration for that
the base url
[16:41]
marclaporteI am digging that up for you
tiki-admin.php -> can you use search engine here?
should be here: tiki-admin.php?page=look&cookietab=2&highlight=feature_html_head_base_tag
You may want to avoid ShortURLS (configured here: tiki-admin.php?page=sefurl&highlight=feature_sefurl) because it's not as well tested with nginx
[16:42]
DerZaubererthats also deaktivated
and base tag is deactivated
[16:48]
***ricks99 has joined #tikiwiki [16:50]
marclaportemaybe activate base tag? [16:56]
***eldios has left "bye =)" [16:56]
DerZaubererokay I will try that
still the same
[16:57]
marclaporteDo you need to use nginx?
(enough to take the time to make it work?)
[16:59]
DerZaubereryes I do
or let's better say
I want to use it
[17:02]
marclaporte:-)
I know amette (ping!) has used it in the past
[17:03]
DerZaubererokay
maybe it's best, to write a mail on the mailing list
[17:05]
marclaporteyes, please: http://dev.tiki.org/Dev+Mailing+List [17:06]
DerZaubererokay thanks for you help :) [17:07]
marclaportemy pleasure [17:07]
DerZauberertiki wiki would be perfect for our project [17:07]
marclaporteYou could also try a Tiki 7.0RC1 [17:07]
DerZauberer:) [17:07]
marclaporteThat's good to hear :-) What kind of project? [17:07]
DerZaubererwell a community to mentaly health problems
it will be a mix of forum, wiki and social network
the goal is, to mix the wiki with the forum
:)
[17:08]
marclaporteyes, that sounds like Tiki! [17:10]
DerZauberer:) [17:11]
chealerpolom [17:11]
DerZaubererbut I never worked much with tiki
so that's the first time
I think fedora has used tiki some times ago
[17:11]
marclaporteCould be...
Do you code?
[17:13]
chealerhi DerZauberer [17:16]
***DerZauberer has quit IRC (Ping timeout: 240 seconds)
DerZauberer has joined #tikiwiki
[17:16]
DerZauberersorry
netsplit
[17:18]
***emijrp has joined #tikiwiki [17:19]
DerZaubereroh
what about eaccelerator
[17:28]
***ricks99 has quit IRC (Quit: Get the best-selling Tiki books (paperback and ebook) at http://www.lulu.com/spotlight/ricks99) [17:30]
marclaporteShould work but http://doc.tiki.org/XCache and http://doc.tiki.org/APC have an interface in the performance admin panel
so you can monitor stuff there. I have used APC with joy, as long as assigned enough memory (128 Megs in my case)
If you fix stuff, you can http://dev.tiki.org/Commit+Code directly
[17:42]
***marclaporte has quit IRC (Ping timeout: 252 seconds) [17:48]
ab has joined #tikiwiki
ab is now known as Guest95958
Guest95958 has quit IRC (Ping timeout: 252 seconds)
ab2 has joined #tikiwiki
[17:58]
ab2help
>help
[18:04]
Sug4r(help [<plugin>] [<command>]) -- This command gives a useful description of what <command> does. <plugin> is only necessary if the command is in more than one plugin. [18:04]
***redflo has left [18:17]
........... (idle for 50mn)
petriknz has joined #tikiwiki
dabright1 has quit IRC (Quit: Leaving.)
[19:07]
dabright has joined #tikiwiki
Narkster has quit IRC (Read error: Operation timed out)
Narkster has joined #tikiwiki
Nils^ has joined #tikiwiki
[19:16]
Nils^hello. I asked this already a few days ago, but maybe now someone is here who knows the answer: Which is the php file where external feeds are imported? [19:22]
***RobertPlummer has joined #tikiwiki [19:26]
RobertPlummerIs there any reason we can't use a plugin attached to a feature?
polom by the way guys
I'm going to make trackers load inside spreadsheets and wanting to know if it would be bad to start with pluign trackerlist.
[19:27]
lphuberdeauNils^: lib/rss/rsslib.php [19:29]
Nils^lphuberdeau: thanks [19:29]
lphuberdeauupdate_feed() is the part you are looking for [19:29]
Nils^and another question: How can I turn on the php error console for anonymous users? Captcha images are not shown, but I can't see whats wrong (because only anons see the captcha) [19:30]
lphuberdeauthere is a checkbox to show it only for admins just close to where you enable the error reporting
as for the captcha, I would check if you have gd installed on the server
[19:33]
Nils^it is. It was reported on installation
ah, now ...
no permission to write
[19:34]
CIA-87tikiwiki: 03lphuberdeau * r34710 10/trunk/ (4 files in 3 dirs): [MOD] Adding basic AJAX comment submitting [19:36]
Nils^good, works now. that was easy [19:36]
petriknzI set global permisions to not allow a group to rename or remove wiki's yet when I login as a member of that group it still gives me those option, I have set all groups so none inherit any permisions from ohter groups Why is this happening? [19:39]
lphuberdeaurobertplummer: I don't get what you're trying to do [19:39]
RobertPlummerI want to load a tracker as a read-only spreadsheet that we can use to creat live reports on with spreadsheets
lphuberdeau: This is something that marc wants
[19:40]
lphuberdeaupetriknz: could there be object permissions on that page overriding the global permissions?
robertplummer: you probably want to stay away from trackerfilter for that purpose
[19:40]
RobertPlummerlphuberdeau: So I need tracker data in a table
lphuberdeau: What would you recommend?
[19:41]
***DerZauberer has quit IRC (Quit: Verlassend) [19:41]
RobertPlummerlphuberdeau: my new join toy?
lol
jk
[19:41]
lphuberdeauyou can use the direct library calls
then format the data the way you need it
[19:41]
Nils^lphuberdeau: is it correct that there aren't any comments in the php files? at least in rsslib [19:42]
RobertPlummerlphuberdeau: But the format I was is the same as the trackerlist... [19:42]
petriknzWell I'll go and take another look but if I recall I set object permissions to match the global in the hope that would fix it. I do this from admin login and then login as a group member to check it, could that be a problem? [19:43]
lphuberdeaunils^: well, that's debatable, but some files don't have too many comments
robertplummer, well, if that's exactly what you need, you can use it, but it does a lot of stuff
[19:43]
Nils^lphuberdeau: I'm looking for a way to disable showing the title of external feeds on a wiki page. I only want the news items. [19:44]
lphuberdeaunils^: fix that from the templates [19:45]
Nils^lphuberdeau: ok, which file? [19:45]
lphuberdeauusing the rss plugin? [19:45]
Nils^? [19:46]
lphuberdeauhow do you display the external feeds? [19:46]
Nils^{rss id=1} [19:46]
lphuberdeaureplace that for {rss id=1 showtitle=0} [19:47]
Nils^lphuberdeau: If this were working I would not try to edit the files [19:48]
lphuberdeauhow am I supposed to know you tried that? [19:49]
Nils^lphuberdeau: I think we had this conversation once. showing date and or title has no effect in 6.3 . Its always without date and with title [19:49]
lphuberdeaulib/wiki-plugins/wikiplugin_rss.php [19:49]
Nils^lphuberdeau: Of course you cannot know. [19:49]
petriknzWhat does "can admin the wiki" do? Is that over riding the settings perhaps [19:49]
lphuberdeautemplates/wiki-plugins/wikiplugin_rss.php
petriknz, yes it does
[19:49]
petriknzWell that explains it then [19:52]
***petriknz has quit IRC (Quit: Page closed) [19:54]
ab2 has quit IRC (Ping timeout: 252 seconds) [20:05]
amettemarclaporte, DerZauberer: pong - I used lighttpd, only had a brief look at nginx [20:07]
Nils^lphuberdeau: good. I even got the date to show :) [20:07]
........ (idle for 38mn)
Tiki|botNew Forum Posts: Glitch in Tiki 7 RC - http://tiki.org/tiki-view_forum_thread.php?forumId=3&comments_parentId=41372
New Forum Posts: Folder Icons Won't Toggle with my new Tiki 6.3 install - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=41371
[20:45]
..... (idle for 24mn)
***rodrigo_sampaio has joined #tikiwiki
petriknz has joined #tikiwiki
[21:09]
RobertPlummerthank lphuberdeau, the plugin works perfectly! [21:11]
petriknzI have wiki pages assigned as homepages for each of my groups, but one of my groups when you login tries to locate the page of another group and gets the error "You do not have permission to view this page." with a "Return to Home" button that takes you to the correct page
The question is why is it even looking for that other page, I am not inheriting any permissions
[21:13]
CIA-87tikiwiki: 03chealer * r34712 10/branches/7.x/templates/tiki-objectpermissions.tpl:
tikiwiki: [FIX] Change "Are you sure you want to effect all child categories?" to "Are you sure you want to affect all child categories?"
tikiwiki: I presume "effect" was some kind of typo. Native English speakers: please check
[21:26]
***emijrp has quit IRC (Quit: Ex-Chat) [21:39]
RobertPlummer has quit IRC (Ping timeout: 252 seconds)
petriknz has quit IRC (Quit: Page closed)
[21:51]
radek82 has quit IRC (Quit: Leaving) [21:59]
........................ (idle for 1h59mn)
marclaporte has joined #tikiwiki
ChanServ sets mode: +o marclaporte
[23:58]

←Prev date Next date→ Show only urls(Click on time to select a line by its url)