CIA-75: tikiwiki: 03nkoth * r30651 10/trunk/ (3 files in 3 dirs): [NEW] New module to show outstanding payments of current user ***: chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
ohertel has joined #tikiwiki ohertel: Hello! :) ***: mohrt has joined #tikiwiki nkoth: no
hello CIA-75: tikiwiki: 03nkoth * r30652 10/trunk/templates/modules/mod-payment_outstanding.tpl: [MOD] use standard modules listing bulleting styles nkoth: sorry, that "no" was wrong window ohertel: That was quite some traffic on our servers today. ^^ chealer: polom ohertel: 1GB more than usual. nkoth: I wonder what is the best way to deal with big releases like that (rather then having to need a big server all the time) ricks99: is it strickly a tiki issue? or hardware? ohertel: We could use some static pages in front, not directly pointing into tiki.
I think it's a tiki issue. That traffic shouldnt bring down an i7-920 quadcore with 12GB of ram...
There is sites on smaller machines with more traffic. ricks99: hm... info.t.o is a pretty tiny tiki (few features, few pages, etc) ohertel: It's all the php compiling stuff, smarty maybe... enabling eAccellerator for caching helped to get the server back up.
I know eAccellerator has problems, so I will disable it again soonish,if the traffic has calmed down a bit. ***: nkoth_ has joined #tikiwiki ricks99: currenly all the performance options on info are 'on' ***: nkoth__ has joined #tikiwiki ricks99: should i turn on wiki page caching? will it make a difference ohertel: I think a static page might help, plain html, checked into svn, synced like all 5 minutes or something, and that page could contain links to download on sourceforge, releasenotes on freshmeat, forums on tw.o, docs on docs. etc nkoth__: ohertel: how many users did we have hitting the site at the time? I think wiki page caching will help ohertel: Then all the requests will split up to many servers... and we can cope way better with the load. ricks99: @nkoth: i'll turn on wiki page caching. any possible issues? ohertel: nkoth: no idea. It was 1GB of additional data. Should parse the logs for a usercount. ***: nkoth has quit IRC (Ping timeout: 272 seconds)
nkoth__ is now known as nkoth ohertel: I have no idea, but might help.
Hm, maybe enabling it only for the pages with the most hits might help. I guess most people only clicked 2-3 pages, and thats it... releasenotes, download link, and 1 or 2 more... ***: nkoth_ has quit IRC (Ping timeout: 240 seconds) ricks99: theres only about 10 pages that are 'live' anyway... :-) ohertel: ^^
And we could link to the freshmeat link for releasenotes, that might help a lot, too. -: ricks99 turns on wiki page caching 1 hr on info ohertel: That releasenote page we have in tiki is rather hard to read and split up in many other pages linked in. ricks99: y, but the installer links directly to the appropriate release note apge ohertel: It's many headlines and stuff, rather long page. Don't know how others like releasenotes, but at least *I* like the key features listed in a SHORT and SIMPLE list, and for details something like the releasenotes text file we have in the tarball. ;)
Maybe we could drop the release notes in full length onto sourceforge or freshmeat? They can handle high load way better. ;) ***: GillesM has joined #tikiwiki ricks99: if i create a static html page, is it possible to have that as a fallback in case of *any* error or non-conenction? ohertel: Don't think there is a fallback feature in apache. ;)
But maybe the 'access denied due to heavy load' feature could have a redirect to this page.
Maybe we could show NO access denied thingy and ONLY show that static page then. ricks99: well, i turned on the "...due to heavy load" feature. so at least folks will get a meaningful message ohertel: So people se tiki page by default, and on heavy load some will see the static via redirect.
Will do for tw.o, too.
Hm, how time consuming is a memory check in php? Then we could fix the fetch_next_record loops by adding some memory check and only add next row to somevariable[] = ... when there is enough memory left yet.
I still think that it's totally crazy to fetch more that a 100 entries from a table anyway. I would put in a hard limit ... ^^
Btw. the download image on tw.o is broken now. chealer: yay. I just hope that feature works well ohertel: which feature? :) chealer: ohertel: I don't understand what you mean about fetch_next_record loops
ohertel: "...due to heavy load" ohertel: The loops that get the record from the database. chealer: ohertel: so what do you do if there's not enough memory? ohertel: just stop and do NOT load any more data?
while (hasmorerecords) { getnextrowfromdatabase(); if (memoryisalmostgone) break; results[]=addtherow; } ;)
^--- pseudocode ;)
Getting only a part of what we wanted to get is better than tiki breaking with a memory error. GillesM: is ti possible to translate on line or do I need to modify languages.php ? ohertel: Hm, I think if you store translation in database, then you can translate directly, somehow. Not sure though. never cared about translation stuff except de/language.php ;) ricks99: @GillesM: u can use the interactive translation feature online
see docs http://doc.tiki.org/Interactive+Translation ohertel: Oh dear... Chrome was tons faster, thats why I switched from Firefox to Chrome. Right now Chrome is REALLY broken... chealer: ohertel: I think it's better to fail with an error than to die. at least users can report something.
ohertel: are you going to the TikiFest? ohertel: No time, probably. chealer: ohertel: shame ohertel: Yah, I'd like tiki to halt the loading from database and show a warning on top of the site,or something. Like "Tiki couldn't get all data from the database due to memory shortage. Handle data with care." or something. ;) chealer: ohertel: users don't care about why it doesn't work. they just want to be told there was a problem, and ideally how to report it (if it's not automatic). if memory lacks during such a loop, it doesn't mean the loop is unreasonable, it means something somewhere took too much memory... ohertel: yah
But they need to get warned that a list on the page might be incomplete. No more needed. chealer: ohertel: you mean the request processing would continue? ohertel: Yes, I think that would be a good idea. ***: idle- has joined #tikiwiki ohertel: Show the page, but add a small warning that data are incomplete. In most cases this might be a capped user list in a selection box. No one would care ...
Or capped list of all wiki pages ... we seem to have quite some code that gets and adds all pages/users to a list somewhere. Which is completely silly.
And it doesnt do a simple 'get all names of the users' it's a 'get ALL userdata' ... 95% of those are not used for the final page to be shown to the user.
We fixed some by just adding a LIMIT 100 or something... but that's not a real solution, it's a hack/workaround. chealer: ohertel: loops aren't just for consultation. there are loops that read data to be used for an update or modification later. if the transaction has to be interrupted, it's better to break during a read than later, which could be during writing ohertel: I know. ***: idle-_ has quit IRC (Ping timeout: 276 seconds) chealer: so, that would be even more risky ohertel: Another solution could be to just fix all the queries and only get the data really needed. And reduce the data, if the needed data are way too big. ;)
I do not need a complete userlist anywhere. chealer: ohertel: right :-) ohertel: What I need is a count() of the records, a page size, and <pagesize> number of entries to read. CIA-75: tikiwiki: 03nkoth * r30653 10/trunk/templates/tiki-payment-single.tpl: [MOD] Make clear that credit cards are accepted through PayPal as well ohertel: Maximum of pagesize can be 100. So all data gets split into 100 entry segments. ;)
For the loops you mentioned... there should be nothing that needs to read all entries into memory at the same time.
get one, edit one, write it back.
Assume each table might have a million entries.
Well used tracker, huge user database ... tons of wiki pages ... chealer: ohertel: not necessarily, you might be doing an intersection between two tables for example ohertel: If you need the whole list in memory, you did something wrong.
Should the database handle that? Do large table operations on the database, not in php memory? chealer: ohertel: ideally, but SQL isn't a programming language ohertel: That's what database are for. And MySQL can get more memory than php.
And I am not really willing to raise the memory limit to above 48MB. I'd even like to move it back down to 32MB ...
On info.tw.o it seems to 256MB, that's not a good idea.
And you see, even that gets exhausted. Must be a real bad memory problem in tiki.
I tried to raise memory limit on some of those errors we got... 256MB... error... and it even ate 512MB... so the used memory grows with available memory.
So we can NOT kill the memory errors by raising the available php memory.
restarted apache on tw.o to have a clean memory there. ^^ nkoth: anyone here knows what happens when a Tiki Payment becomes "due" , if anything? ohertel: going to bed. ***: ohertel has quit IRC (Quit: Page closed) CIA-75: tikiwiki: 03nkoth * r30654 10/trunk/templates/tiki-payment-list.tpl: [ENH] Usability - description of payment should link to it ***: GillesM has quit IRC (Quit: KVIrc 4.0.2 Insomnia http://www.kvirc.net/)
Caarrie|away is now known as Caarrie|sleeping Tikiwiki|bot: Recent Bug: Tracker item: #3637 - - Blog This - http://dev.tiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3637 CIA-75: tikiwiki: 03nkoth * r30655 10/branches/6.x/templates/tracker_item_field_input.tpl: [FIX] Remove debug display in most recent commit ***: kiilo has quit IRC (Ping timeout: 245 seconds) Tikiwiki|bot: Recent Bug: Tracker item: #3638 - - Smarty tabset showing tabs for tabs that are inside permission checks - http://dev.tiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3638 ***: goj|ghost has joined #tikiwiki
goj has quit IRC (Ping timeout: 245 seconds)
goj|ghost is now known as goj CIA-75: tikiwiki: 03nkoth * r30656 10/trunk/ (6 files in 6 dirs): [NEW] Allow payments to be restricted to be seen only by user that is supposed to be pay it (common use case) ***: mohrt has left thraxisp: are old tiki commit logs saved somewhere? chealer: thraxisp: what do you want to do? thraxisp: I'm fixing a cookie problem that I traced to a commit about a year ago. I want to see the original patch. chealer: thraxisp: what else do you know about the commit? do you have a revision number? thraxisp: yes, 19122 chealer: thraxisp: see http://tikiwiki.svn.sourceforge.net/viewvc/tikiwiki?view=revision&revision=19122 thraxisp: thanks. nkoth: thraxisp: as I thought it was to prevent multiple tikis on the same server from accessing each other
's things
maybe changing t REQUEST_URI instead of PHP_SELF will solve it
but I don't know if there is any security weakness with that - I will ask security team
but if you only have 1 tiki on your server it should not matter to you > thraxisp ***: Trebly_ has quit IRC (Ping timeout: 272 seconds)
ricks99 has quit IRC (Quit: Get more help: Tiki for Smarties http://twbasics.keycontent.org and Tiki Essentials http://twessentials.keycontent.org) CIA-75: tikiwiki: 03nkoth * r30657 10/branches/6.x/templates/ (tiki-payment-list-past.tpl tiki-payment-list.tpl): [FIX] After cancelling payment item the listing still showed it in the outstanding or past listings. Patch includes [bp/r30654] : [ENH] Usability - description of payment should link to it ***: chealer has quit IRC (Quit: Konversation terminated!) CIA-75: tikiwiki: 03nkoth * r30658 10/branches/6.x/lib/payment/paymentlib.php: [FIX] Non payment admins were not able to cancel their own payments ***: chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
chealer has quit IRC (Ping timeout: 272 seconds)
chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki
nkoth has quit IRC (Quit: nkoth)
chealer has quit IRC (Quit: Konversation terminated!)
chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki Tikiwiki|bot: New Forum Posts: My articles don't show up - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=39453 ***: kiilo has joined #tikiwiki
kiilo has quit IRC (Ping timeout: 264 seconds) Tikiwiki|bot: New Forum Posts: SEFURL not working - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=39454 ***: thraxisp has quit IRC (Ping timeout: 276 seconds) Tikiwiki|bot: New Forum Posts: Blank pages after Tiki 6.0 update - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=39456
Recent Bug: Tracker item: #3639 - - Displayproblems WYSWIG and IE7 - http://dev.tiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3639 ***: xavi has joined #tikiwiki
chibaguy has joined #tikiwiki
ChanServ sets mode: +o chibaguy
chibaguy has quit IRC (Ping timeout: 255 seconds)
JoernOtt has joined #tikiwiki
Trebly has joined #tikiwiki
kiilo has joined #tikiwiki
pharvey has joined #tikiwiki
nightclaw has joined #tikiwiki nightclaw: Hi there
i have a problem with setting the right time on my tiki installation
i set the right timezone but the displayed time is trailing by 1 hour
i set the date and time to "use site default to show time .. " ***: kiilo has quit IRC (Ping timeout: 276 seconds)
rodrigo_sampaio has joined #tikiwiki
kiilo has joined #tikiwiki
kiilo has quit IRC (Ping timeout: 260 seconds)
Caarrie|sleeping is now known as Caarrie|away nightclaw: noone any idea? xavi: nightclaw: try changing then the time zone in "Admin home > general > Date and Time" to adapt it to your real time
I mean, that looks to me the easiest solution... nightclaw: i did and it is the correct time zone xavi: put it in +1 (or -1) time zone, to get the right time nightclaw: changing the timezone in the admin backend does not do anything# xavi: ok, looks like a bug then? open a bug report about it, I would say... http://dev.tiki.org JoernOtt: nightclaw, what is the date/time set to on your server
(not the local client) nightclaw: System time is GMT +1 CET
which is correct JoernOtt: and in php.ini?
I once had it set wrong there and had some strange phenomenons because of that nightclaw: do you know where to find it in php info?
ah default timezone is set to UTC ***: yonixxx has joined #tikiwiki
chibaguy has joined #tikiwiki
ChanServ sets mode: +o chibaguy chibaguy: polom
I wonder why anon can't see an image I just added to a file gallery at themes.t.o. Anon has tiki_p_download_files. ***: ricks99 has joined #tikiwiki chibaguy: hi ricks99 ricks99: hi gary nightclaw: JoernOtt: thank you very much for pointing out this quite obvious misconfiguration :) chibaguy: I added an image at themes.t.o and anon can't see it. anon has perm to download files, and the image isn't categorized. JoernOtt: nightclaw: you're welcome, this did cost me some time too nightclaw: but this seems to be a bug. i should be able to change the timezone in tiki even thought a wrong/no timezone is set in php ***: thraxisp has joined #tikiwiki
amette has quit IRC (Ping timeout: 245 seconds)
amette has joined #tikiwiki
xavi has quit IRC (Ping timeout: 265 seconds) ricks99: anyone know... is there a way to grab a category name and description and put it into a wiki page? any global variable or anything? ***: olinuxx has quit IRC (Quit: http://www.linuxmao.org) Tikiwiki|bot: New Forum Posts: Problem updating from 5.2 to 6.0 - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=39458 ***: RavenC has joined #tikiwiki RavenC: polom ricks99: Hi RavenC RavenC: Morning Ricks! chibaguy: I wonder why (when not logged in - to themes.t.o) I can see a file gallery and see the thumbnails, but can't access the full-size images.
I get the error: you are not logged in. ricks99: perm? chibaguy: I thought that would be the problem, though previously anon could see the files.
but tiki_p_download_files is set already. ricks99: some new perm in 6 maybe? chibaguy: seems like it, though I can't find it in the perms list. ricks99: what's the difference in the URLs? chibaguy: I tried the short version - display112 - and the full version - tiki-download_file.php?fileId=112&display
Both won't work. But older files can be seen by anon. ricks99: anything "special" about the files? are they locked? max download? etc? sylvieg: do we have account must be validated after n incorrect passwords? chibaguy: ricks99, no, I don't think so. It was just a straightforward upload of a very small image file. ricks99: @sylvieg: y, on admin: login sylvieg: tkx ricks99 - I thought so but can not find it .. .me needs coffee chealer: polom chibaguy: hi chealer -: sylvieg found it - in logiun _ I was looking in password chealer: hi chibaguy -: chealer is catsitting at Marc's while he's away chibaguy: chealer, I hope they don't escape. ;-) ***: nightclaw has quit IRC (Quit: Page closed) chealer: chibaguy: of course not, I give them bugs to hunt RavenC: Tracker Kittahs .... :) chealer: unfortunately they always come on the keyboard too chibaguy: we'll need to watch your commits closely now ;-) rodrigo_sampaio: hi chealer
chealer: how the cats are behaving?
:) chibaguy: ricks99, I uploaded the image to a different file gallery and now it's visible to anon. But I don't see (yet) any config difference in the galleries. ***: ricks99 has quit IRC (Remote host closed the connection) chibaguy: heh chealer: rodrigo_sampaio: there's still regular fighting (Reika is not here a bit because of that) :-(
chibaguy: hehehe :-) rodrigo_sampaio: chealer: you know anything about openid auth and tiki? i saw you made a few commits to the code. i'm wondering if openid is not present in the top login for some specific reason or if it is just that no one ever did it. same thing for removing the an openid account associated with a tiki account
chealer: so reika is still afraid of the other cat :( chealer: rodrigo_sampaio: yes, she would still be afraid I think
rodrigo_sampaio: I do. I don't think there's any reason OpenID wouldn't be in the top login. ***: jonnyb has joined #tikiwiki chealer: same thing with removal of association (which would be a nice thing, preventing me from having to do that in the database when testing!)
hi jonnyb! jonnyb: polom rodrigo_sampaio: hi jonnyb jonnyb: hi all - sounds like it's been a busy week for tiki (typical when i'm on other stuff!) RavenC: polom Johnnyb ***: mikebeary has joined #tikiwiki mikebeary: Anyone know what that feature is that gives users points based on how much they contribute? ***: mohrt has joined #tikiwiki
Trebly_ has joined #tikiwiki CIA-75: tikiwiki: 03sampaioprimo * r30659 10/branches/6.x/lang/pt-br/language.php: typo ***: Trebly has quit IRC (Ping timeout: 265 seconds)
Trebly_ is now known as Trebly
leagris has quit IRC (Quit: leagris)
chealer has quit IRC (Remote host closed the connection) chibaguy: Heh, the mouseover on user module edit icons at tiki.org say "Bearbeiten".
I guess it's gently pushing us to learn other languages, which is good. ;-) ***: MacLeod has joined #tikiwiki
MacLeod has quit IRC (Client Quit)
ricks99 has joined #tikiwiki
changi|a1ay is now known as changi changi: polom ***: mikebeary has quit IRC (Ping timeout: 255 seconds)
mikebeary has joined #tikiwiki mikebeary: Can someone tell me how to show my score feature now that I've turned it on?
I want the score to show on the main page chibaguy: mikebeary, did you check the docs about that? I haven't looked at the score feature for a long time. ricks99: @mikebeary: i believe there is a "top users" module. you can add this to the home page
it ranks users by score mikebeary: Yes and it doesn't make sense to me. Is it something to do with "creating new event"?
How do I add the top users module? I've never added a module before ricks99: example of the top users module is in docs: http://doc.tiki.org/Score
to add a modules, see docs, too http://doc.tiki.org/module ***: changi is now known as changi|berlin mikebeary: Wow
Got it. Thanks dude ricks99: glad to help. docs are quite useful :-) mikebeary: How come the active poll I created isn't available to add to a page?
My dropdown list under "add poll to pages" isn't populated ricks99: is the poll publish date in the future? mikebeary: Yes. Buy I
But I changed it and it's still not populating ricks99: are you trying to add a poll to a page as a *ranking* or just a regular poll? ***: kiilo has joined #tikiwiki mikebeary: I thi jonnyb: rodrigo_sampaio: can you have a look at r30660 pls? there was a conflict in lib/importer/tikiimporter.php - hope i resolved it ok mikebeary: Think as a reg poll
jonnyb: want to see? Collegecollab.org jonnyb: see what? (sorry, not been following - fire-fighting currently) ricks99: @mikeberry: and you're unable to add the poll to a page using the poll plugin? mikebeary: I created the poll, activated it, set publish date to yesterday, and when I click on add poll to pages, no polls are available in the dropdown menu
This is the first poll I'm making Trebly: !help ricks99: "add poll to page" ... are you trying to put the poll in a *module* or a wiki page? Tikiwiki|bot: You can get a more complete list of commands that work with this bot at http://tikiwiki.org/TikiBot . ***: chealer has joined #tikiwiki
chealer has quit IRC (Changing host)
chealer has joined #tikiwiki mikebeary: I'm going to admin/polls. Not sure, but I just want the poll to show on the homepage ricks99: you need to use the poll plugin to add to the home page
you might fnd the beginner's guide useful: http://twbasics.keycontent.org/Polls+in+Wiki+Pages mikebeary: I have an honors presentation in two hours and I want to show a poll
Can you Quickly tell me how to add the plugin? It's not in the list of modules
Going to your link thanks ricks99: if you want to add it to a wiki page (not a module) use the poll plugin
see docs: http://doc.tiki.org/pluginpoll CIA-75: tikiwiki: 03jonnybradley * r30660 10/trunk/ (74 files in 60 dirs): [MRG] Automatic merge, branches/6.x 30590 to 30659 rodrigo_sampaio: jonnyb: its ok, thanks jonnyb: super, thanks ricks99: ping chibaguy: css question for you... mikebeary: Got it! chibaguy: hi ricks99 ricks99: chibaguy: when using a background image with repeat-y, is there no way to specify vertical start position? repeat-y seems to override y value of background-position. But cannot find any verication of this in the css spec. chibaguy: I don't recall offhand, although I've had the same problem before. ricks99: how'd you solve it? mikebeary: I found in the tiki for smarties the command you type when you edit the wiki page where you want the poll chibaguy: ricks99, I don't recall, but anyway, I just tried this and it works: background-image:url('gradient2.png');background-repeat: repeat-x; background-position: 0 20px;
}
so the image starts 20px down from the top margin and repeats horizontally. -: changi|berlin damned BING ricks99: y. if you repeat-x, you can specify a y position. but want to repeat-y *and* specify a vertical position
want to repeat vertically, but have a margin at the top, say 20px whitespace before the tiling starts chibaguy: hmm, yeah, that may not be possible. ricks99: can tweak with a negative margin for the container, then pad everything else. but that seems... wrong :( chibaguy: Well, this works: background-image:url('gradient2.png');background-repeat: repeat-y; background-position: 0 20px;}
starts 20px down and repeats downward. ricks99: hm... what browser? chibaguy: opera -: ricks99 goes to fire up opera... 'cause ff doesnt seem to work it properly ricks99: hm.. looks like a browser-specific implementation chibaguy: well, maybe you'll need another solution if not all browsers support that. ricks99: k. tx for the help. jus wasnt sure if the spec said it was possible or not. i didnt see antytihg either way chibaguy: maybe a wide border on the top and then negative margin to pull the content up into it, or something. ricks99: yeah. thats what i'm going to have to do. chibaguy: css: part art, part science, part dart game ricks99: +1 jonnyb: ricks99 & chibaguy - check out http://www.w3schools.com/css/tryit.asp?filename=trycss_background-position_pixel ricks99: y. was there. in ff, adding repeat-y nulls the y position jonnyb: say: 'Note: For this to work in Firefox and Opera, the background-attachment property must be set to "fixed".' chibaguy: hee hee, jonnyb, that's where I was trying the backgrounds that I quoted the code for above ricks99: in my ff, adding repeat-y causes the smile to fill vertically (instead of a 100px margin)
think it is a browser-issue chibaguy: (or anyway another page at that site) jonnyb: did you try background-attachment:fixed? ricks99: y chibaguy: bbl ricks99: r u using ff?
both FF and IE ignore the 100px y margin when repeat-y (for me) -: ricks99 likes the Tiki Newsletter icon. Kudos to whomever created it. CIA-75: tikiwiki: 03sylvieg * r30661 10/trunk/lib/setup/prefs.php: notice ***: lphuberdeau has joined #tikiwiki
mikebeary has quit IRC (Remote host closed the connection) chibaguy: thanks, ricks99
(re newsletter icon) ricks99: y, very nice CIA-75: tikiwiki: 03sampaioprimo * r30662 10/branches/6.x/lang/pt-br/language.php: pt-br translation chibaguy: it's an open source image that I just adapted a bit with the tiki logo.
openclipart.org
g'night. ***: chibaguy has quit IRC (Quit: Find new themes for Tiki at http://themes.tikiwiki.org.)
yonixxx has quit IRC (Ping timeout: 276 seconds) changi|berlin: jonnyb: hi, does this mean something to you : flip_class('postit','hidden','hidden') jonnyb: hi changi|berlin how's the 'fest?
flip_class doesn't look familiar to me - it's in tiki?
brb changi|berlin: jonnyb: yes it's on themes.tiki.org, using for the top remarksbox diplaying that we are in beta
2 weeks ago, when you click the cross, this message was gone, but now stay
jonnyb: as it's javascript, i'm lost
jonnyb: tikifest is fine :), a little bit cold. jonnyb: oh yes, i saw that
i'm guessing it was some custom stuff luci did, he's been wanting that feature on remarksboxes for years :P
i'm seeing "Plugin jq cannot be executed" on themes.t.o - looks like something's broken ***: ricks99 has quit IRC (Remote host closed the connection) Tikiwiki|bot: New Forum Posts: remote install failure -- help please - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=39465 ***: JoernOtt has quit IRC (Ping timeout: 255 seconds) changi|berlin: jonnyb: any idea ? jonnyb: on what exactly changi|berlin ? (bit snowed under currently) changi|berlin: why plugin JQ cannot be executed ? jonnyb: i think it was the JS detection failing - can't get it again and it didn't happen in firefox
do you see it? ***: JoernOtt has joined #tikiwiki Tikiwiki|bot: New Forum Posts: Problem changing encoding during upgrade - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=39467 CIA-75: tikiwiki: 03lphuberdeau * r30664 10/trunk/tiki-jsplugin.php: [FIX] Forcing expires on plugin js changi|berlin: jonnyb: no, but don't know how to fix this unremovable remarksbox jonnyb: sorry - i didn't set it up - presumably it's some custom code in l&f prefs? Tikiwiki|bot: New Forum Posts: Let users create child pages but not edit structure - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=39468 changi|berlin: jonnyb: yes it is jonnyb: found it - can't find out who did it? i don't think flip_class is in tiki changi|berlin: jonnyb: ok, i think it's maybe ricks ? jonnyb: are we going to keep (at least some of) the *.t.o sites on 6.x up to date and continue the dogfooding? (i think we should) ***: chealer has quit IRC (Remote host closed the connection)
Jyhem has joined #tikiwiki jonnyb: changi|berlin: found flip_class - look like it should work... changi|berlin: jonnyb: i think it's a bug no ? jonnyb: i'm sure i've seen it working on one of the t.o sites ***: ricks99 has joined #tikiwiki jonnyb: hi ricks99 - is the dogfooding "postit" note on themes.t.o one of yours? ricks99: not pe se -- i simply moved it. it was floating in the left col. i moved it to center col
not sure who originally added it jonnyb: it seemed to be bothering changi|berlin ;)
the close icon doesn't work ricks99: well. considering that it is no longer running the beta, i guess we can remove it
i already removed the one on info.t.o jonnyb: ah, i thought it worked somewhere
i think we should run these sites on 6.x until 6.1 (even after maybe on proposals/6.x when it exists)
it's more exciting! :D ricks99: maybe... imho though, info (which is the primary public face) should b rock sold stable thraxisp: Hi. I ran into bug 2567 when upgrading from tw3.2 to 6.0. I have a patch based on the current SVN and commit access (from ages ago). What is the best process to commit? jonnyb: ricks99: as should 6.x (hopefully), but i know what you mean
hi thraxisp - commit in branches/6.x if you're happy with it - mail it to the devels list as a patch (or use pastebin here) if you'd like someone to have a look at it first thraxisp: Thanks. The patch is at http://pastebin.ca/1989269
Do I need to submit it to the trunk as well? jonnyb: no, we're "automatically" merging from 6.x to trunk until 6.1 is released (keeps the overheads down) thraxisp: ok jonnyb: was it you discussing this on the devels list recently? thraxisp: yes. I was here discussing it with nkoth yesterday as well. jonnyb: aha - thought so
i'm a bit nervous about these kind of changes - servers can be so picky :) but it looks good to me - happy committing! thraxisp: thx jonnyb: yay - changi|berlin i fixed the postit on themes.t.o i think (the div id what wrong)
hmm, maybe not - it comes back :( -: ricks99 thinks the text should be changed, too
jonnyb thinks there are probably more pressing issues for him - like the tikidate out of memory thing ***: CIA-75 has quit IRC (Ping timeout: 240 seconds)
SEWilco2 has joined #tikiwiki SEWilco2: Doc for "Group Watch" phrased as if notification is sent only when a Watch is defined. I suspect notifications are also sent when the watched object is modified. http://doc.tiki.org/Group+Watches changi|berlin: jonnyb: nice try :) jonnyb: :P changi|berlin: jonnyb: for me it's working now
jonnyb: you're the best jonnyb: coo, great! (wonder why it didn't for me?) changi|berlin: jonnyb: chrome 7 for me Trebly: <jonnyb> Did you receive my mail, I wish to meet the team in London, I need the informations changi|berlin: jonnyb: ff too jonnyb: hi Trebly - yes, i replied on tiki.org (the email version to you bounced)
not much help though i'm afraid
have no plans yet it as i thought it would just be 3 of us ***: rodrigo_sampaio1 has joined #tikiwiki
rodrigo_sampaio has quit IRC (Ping timeout: 265 seconds)
gillesM has joined #tikiwiki Trebly: <jonnyb> I just came back and look first at the chat. I just seen your answer. I look at the mailbox.I send to you an answer by mail into a short while. ***: CIA-79 has joined #tikiwiki jonnyb: Trebly: see pm ***: chealer has joined #tikiwiki chealer: wow, the Subscribe to Tiki Newsletters! module on tiki.org is cool :-) jonnyb: lphuberdeau: you about?
hi chealer - do you know anything about plugin approval? (just wondering about these "Unknown" ones - i think they should just be automatically removed) chealer: jonnyb: not much, except I wish it was automatical for admins
(and I noticed that seemed to work in 4 today) jonnyb: don't we all :P
curious chealer: jonnyb: what do you mean by "Unknown" ones? jonnyb: i get lots of them listed as Location: Unknown ricks99: unknown just means not from a wiki page chealer: jonnyb: regarding the JQ plugin, is there any reason to filter the body's content? would it be problematic to remove the filter? ricks99: could be in a module chealer: jonnyb: sorry, no idea
ah jonnyb: i think it's an upgrade bug - the fingerprint seems to have changed ricks99: or from a dynamic content block, for example jonnyb: doesn't look like it ricks99 - you not seen this?
might be a charset thing ricks99: ? thought u were talking about "unknown" items on tiki-plugins.php jonnyb: yes, i am ricks99: sorry. what was the question? -: ricks99 multitasking and coffee pot is empty :( jonnyb: each one has a fingerprint generated when edited which seems quite fragile
should i just get rid of the unknown ones automatically? ***: ricks99_ has joined #tikiwiki ricks99_: sorry about that
the fingerprint is necessary to know if the content of the plugin has changed, no?
of course, i'm not quite sure what good the finger print is to an end-user anyway
it is jut a meaningless hash
would rather see when it was added/last modififed (in addition to who added it) ***: ricks99 has quit IRC (Ping timeout: 265 seconds) ricks99_: cls changi|berlin: clear
oups wrong tab Trebly: <jonnyb> It's Ok for my mail. It had been a "lapsus scriptum", a miswritten because of my site teawik which uses abbreviation is for some names twk... jonnyb: Trebly: so did you email me? Trebly: <not yet> I am working on a computer restart, I need fiftteen minutes and the time to redact the answer. jonnyb: looks like plugin approval is broken in 6.x :( ricks99_: works for me in 6.0 jonnyb: i'm getting them all showing as "unknown" ricks99_: are they on wiki pages? jonnyb: yup - HomePage chealer: rodrigo_sampaio1: good job with the login/openid :-) jonnyb: might be a wysiwyg problem - looks like the preview views count as needing approval or something ricks99_: ah.. -: ricks99_ doesnt trust wysiwyg... yet jonnyb: i have lots of these on a 5.x site though - no wysiwyg
seems when a page is previewed it generates an unknown approval item... i'm digging ***: gillesM has quit IRC (Remote host closed the connection)
RavenC has quit IRC (Quit: ~ Trillian Astra - www.trillian.im ~)
TJSwan has joined #tikiwiki TJSwan: I have a problem with my uploaded pdfs, can someone help please? ricks99_: what is the problem TJSwan? ***: ricks99_ is now known as ricks99 TJSwan: after upload, the pdfs display blank.
local copies still work fine ricks99: if you download from tiki, the copy works? TJSwan: when the link is clicked, reader displays a blank page. the file appears to open fine.
but all pages are blank CIA-79: tikiwiki: 03changi67 * r30673 10/trim/ (10 files in 3 dirs): [MOD] From tikiwiki to tiki ricks99: if u download the file (not opening inside the browser) is the file ok? TJSwan: no, they are blank ricks99: what is your tiki version? TJSwan: 5.3 ricks99: could be the db encoding. are you using the file gallery to store the pdfs? TJSwan: yes i am ricks99: storing in the DB or directory? TJSwan: a directory
i,m sorry, i am using 5.2 ricks99: and you're storing in the file directory -- not the db? TJSwan: I created a file gallery. I am looking at the admin page and do not see the setting you are asking for. ricks99: on Admin: File gallery, there is an otpion to store files in the db or a file directory TJSwan: AH! it says database ricks99: k. this is known issue if your db uses the incorrect charset
see relnotes and docs for details
easiest workaround is to use file dirctory instead of db TJSwan: ok, will look again in notes and docs thanks and sorry to bother you! ricks99: no problem. CIA-79: tikiwiki: 03aproulx * r30674 10/branches/6.x/lang/fr/language.php: Correction ***: ricks99 has quit IRC (Remote host closed the connection) jonnyb: ok, bye all - more over the weekend ***: jonnyb has quit IRC (Quit: I am going outside... I may be some time...) rodrigo_sampaio1: chealer: thanks :) ***: mikebeary has joined #tikiwiki mikebeary: I have a question.... When assigning groups to modules, do I need to assign any groups higher than registered, or are do higher levels have all the authority and permissions conferred from the registered group? Tikiwiki|bot: Welcome to the official Tikiwiki English Irc channel, Please just ask your question, dont ask to ask, someone will reply if and when they know the answer. Welcome again and please stay awhile
Welcome to the official Tikiwiki English Irc channel, Please just ask your question, dont ask to ask, someone will reply if and when they know the answer. Welcome again and please stay awhile ***: GillesMM has joined #tikiwiki mikebeary: If I want every registered user to see the module, then i don't need to add subadmins and admins separately, right? chealer: changi|berlin: there is no need to tag commits [MOD] if they don't cause a modification of behavior ***: rodrigo_sampaio has joined #tikiwiki
rodrigo_sampaio1 has quit IRC (Read error: Connection reset by peer)
kiilo has quit IRC (Ping timeout: 265 seconds) Tikiwiki|bot: New Forum Posts: TikiWiki not inserting at cursor point - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=39472 ***: mikebeary has quit IRC (Remote host closed the connection)
mikebeary has joined #tikiwiki
pharvey has left
mikebeary has quit IRC (Ping timeout: 240 seconds)
pharvey has joined #tikiwiki
rick_ has joined #tikiwiki rick_: Does anyone know? Is there an easy way to test if the user belongs to a specific group, from within a TPL?
I can test if someone is logged in by using {if $user}...
and I can test if a page is in a specific category with {if in_array(2, $objectCategoryIds)}.... Tikiwiki|bot: New Forum Posts: script to change permissions - http://tiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=39474 rick_: but how to check if the current user in a specific category?
From within a Tiki Smarty TPL file, I need to show different content for different users, based on their Group.
anyone online? ***: rick_ has quit IRC (Quit: Page closed)
kiilo has joined #tikiwiki
chealer has quit IRC (Quit: Page closed) TJSwan: I am working with a new site, where the pdf files display as blank. I understand this is an issue with having the dtatbase store the files and I am attempting to change to a directory to staore uploaded files. I have made the change in gallery admin and save the change using the file directory of /files. when attempting to use the move files to directory button or when trying to upload files
i get an error stating unable to write file or unable to read file. I have looked on tiki for smarties and changed the directory properties in filezilla to read as shown in the help, but still no luck. am I using the wrong path? or have I done something else wrong? Tikiwiki|bot: New Forum Posts: Error Message - Either Staging or Approved Page Cannot be Found - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=39475 TJSwan: I am working with a new site, where the pdf files display as blank. I understand this is an issue with having the datatbase store the files and I am attempting to change to a directory to store uploaded files. I have made the change in gallery admin and saved the change using the file directory of /files. when attempting to use the move files to directory button or when trying to upload
files i get an error stating unable to write file or unable to read file. I have looked on tiki for smarties and changed the directory properties in filezilla to read as shown in the help, but still no luck. am I using the wrong path? or have I done something else wrong? sylvieg: the permissions of this directory must be read write by apache (or by all user) ***: kiilo has quit IRC (Ping timeout: 240 seconds) TJSwan: ok, does all user present a security problem? sylvieg: yes but some hosting does not let do otherwise
otherwise the diorectory must be outside the webaccessible urls TJSwan: ah, ok thanks. I will try to use cpanel to set the attributes. the only ones offered by filezilla are owner group and public ***: ttrimm has joined #tikiwiki TJSwan: quit ***: TJSwan has left CIA-79: tikiwiki: 03sylvieg * r30675 10/trunk/lib/setup/prefs.php: [FIX]passwordf: default password must be diff than username ***: mohrt has left
leagris has joined #tikiwiki
lphuberdeau has quit IRC (Ping timeout: 255 seconds)
mohrt has joined #tikiwiki
mohrt has left
mohrt has joined #tikiwiki
mohrt has left
Trebly has quit IRC (Ping timeout: 240 seconds)
thraxisp has quit IRC (Ping timeout: 240 seconds)
mohrt has joined #tikiwiki
CaseysMom has joined #tikiwiki CaseysMom: hello