[00:10] *** SEWilco2 has joined #tikiwiki
[00:41] *** gricha2380 has joined #tikiwiki
[00:43] <gricha2380> I have an easy troubleshooting question for whoever is inclined to answer
[00:45] <gricha2380> blank) menu and got this message: "You can only use optionId = 0 to create a new option or optionId equal an id that already belongs to the menu to update it."
[00:46] <gricha2380> *I deleted all the options out of the default Applications menu and got that error when trying to upload a CSV of the defaults
[01:15] *** navster-mobile has joined #tikiwiki
[01:29] *** navster-mobile has quit IRC (Client Quit)
[01:40] *** Lucymoz has joined #tikiwiki
[01:44] *** gricha2380 has quit IRC ("CGI:IRC (Ping timeout)")
[02:03] *** navster has joined #tikiwiki
[02:29] *** navster has quit IRC ("shit! they found me")
[03:09] *** Caarrie is now known as Caarrie|sleeping
[03:27] *** Lezard has quit IRC (Read error: 113 (No route to host))
[03:46] *** nkoth3 has quit IRC ()
[03:56] *** niclone has quit IRC (lindbohm.freenode.net irc.freenode.net)
[03:56] *** aardvarc has quit IRC (lindbohm.freenode.net irc.freenode.net)
[03:56] *** jerkface03 has quit IRC (lindbohm.freenode.net irc.freenode.net)
[03:56] *** Sug4r has quit IRC (lindbohm.freenode.net irc.freenode.net)
[03:56] *** obnox has quit IRC (lindbohm.freenode.net irc.freenode.net)
[03:57] *** Sug4r has joined #tikiwiki
[03:57] *** aardvarc has joined #tikiwiki
[03:57] *** jerkface03 has joined #tikiwiki
[03:57] *** obnox has joined #tikiwiki
[03:57] *** niclone has joined #tikiwiki
[04:10] *** JonMarkGo has joined #tikiwiki
[04:10] <JonMarkGo> So I am trying to set up a pretty tracker, and have gotten all of the templates, etc. working, but can't figure out how to have each tracker entry on a separate dynamic page.
[04:12] <JonMarkGo> I guess my question is..is there any way to have like &view=Title display the entry from my tracker where the title is Title?
[04:14] *** nkoth3 has joined #tikiwiki
[04:15] *** nkoth3 has quit IRC (Client Quit)
[04:16] <JonMarkGo> Anyone around?
[04:25] <SEWilco2> JonMarkGo: Sounds like a .htaccess redirection rule is needed.
[04:26] <JonMarkGo> I'm not really worried about the dynamics of it, but how do I use the trackerlist or similar plugin to parse any type of input like that to display a single item?
[04:26] <SEWilco2> JonMarkGo: If there is a URL which will display what you want, you can convert a URL in one format to a different one.
[04:27] <JonMarkGo> But how do I use that value in one of the tracker plugins to display an item?
[04:27] <SEWilco2> JonMarkGo: Is there a URL which shows the data which you want, and contains the title in the URL?
[04:27] <JonMarkGo> I just need to know how to make the item that is displayed on a page dynamic from some form of user input
[04:28] <SEWilco2> JonMarkGo: Oh, you're asking about accessing the tracker data.  I thought you had found how to access the data and wanted a different way to get to the page.
[04:28] <JonMarkGo> No, sorry.
[04:29] <SEWilco2> Have you found a tracker plugin which can get the data, but you need a way to tell the page to access a different item?
[04:30] <JonMarkGo> Yes, I'm using TrackerItemList
[04:30] <JonMarkGo> I just need to tell it which item to access
[04:30] * SEWilco2 thinks
[04:36] <SEWilco2> JonMarkGo: I'm not finding a way without writing a little code.
[04:37] <JonMarkGo> Hrm.
[04:37] <JonMarkGo> Have you heard of the v3 page selector?
[04:38] <SEWilco2> JonMarkGo: If you know PHP, it should be a matter of taking a copy of TrackerItemList plugin and replacing how it fetches by Title ...
[04:38] <SEWilco2> ... so instead of fetching from $title (or whatever variable it uses) to fetch using what is in something like $_REQUEST["title"]
[04:39] <JonMarkGo> I don't now if it uses anything to fetch title
[04:39] <JonMarkGo> I think it just prints the whole list
[04:39] <JonMarkGo> I guess that's doable
[04:39] <SEWilco2> Oh, I thought you said that plugin was fetching the title which you wanted.
[04:40] <JonMarkGo> No, sorry.
[04:40] <JonMarkGo> http://doc.tikiwiki.org/tiki-index.php?page=PluginTrackerList
[04:42] <SEWilco2> Maybe parameters such as filterfield and exactvalue would let you tell it you want field Title and value whatever.
[04:42] <JonMarkGo> Not sure what you mean
[04:43] <SEWilco2> You say it lists all items but you want a single item.  So you want to filter the results so only what you want is shown.
[04:44] <JonMarkGo> Yes
[04:44] <SEWilco2> To filter the results you tell it which field to filter on.  It says filterfield is numeric, so apparently you have to tell it the numeric ID of your Title field.
[04:44] <JonMarkGo> But how do I get that from the address or some dynamic input?
[04:44] <SEWilco2> Then you define exactvalue with the value of the desired title.
[04:45] <JonMarkGo> But the value of the desired title is dynamic
[04:45] <SEWilco2> That's the problem.  How to get the title from the URL into the exactvalue setting.
[04:45] <JonMarkGo> Yeah
[04:46] <SEWilco2> You could take a copy of the plugin (preferably renamed so you an update won't lose your change) and ...
[04:47] <SEWilco2> ... find where the 'exactvalue' parameter is passed into the plugin and replace it with something like $_REQUEST["title"] ...
[04:47] <SEWilco2> ... because that incantation would use the value of &title="something or other" from the URL.
[04:48] <JonMarkGo> Right
[04:48] <SEWilco2> But that requires a little PHP programming.
[04:48] <JonMarkGo> I know PHP
[04:48] <JonMarkGo> I'd just need to get myself FTP access to the wiki
[04:49] <SEWilco2> Yup, you need access to your wiki's code.  Or to modify the package before it is installed on your site.
[04:49] <JonMarkGo> Yup
[04:50] <SEWilco2> And I don't know how you intend to generate the URL; I assume you don't intend for users to type that complex thing.
[04:51] <JonMarkGo> Nah
[04:51] <SEWilco2> Got to go.  Good luck.
[04:51] <JonMarkGo> I'd likely make one page with a list
[04:51] <SEWilco2> If the list won't change often, there is another way.
[04:51] <JonMarkGo> Oh?
[04:51] <JonMarkGo> Well
[04:51] <JonMarkGo> Actually
[04:51] <JonMarkGo> It would be easy to dynamically generate
[04:51] <JonMarkGo> Just make a trackerlist template that generates the links
[04:52] <SEWilco2> Just create one Wiki page for each desired value, and each page has a different exactvalue.
[04:52] <JonMarkGo> Yeah, I know
[04:52] <JonMarkGo> I'd rather not do it that way
[04:53] *** SEWilco2 has quit IRC (Remote closed the connection)
[04:56] *** chibaguy has joined #tikiwiki
[04:59] <chibaguy> Module shading is semi-broken in IE7 in Strasa theme, left column. Last module completely loses its title when modules above are shaded closed.
[04:59] <chibaguy> Doesn't happen in other themes.
[05:01] <chibaguy> (jquery on)
[05:02] <chibaguy> (...or jquery off, doesn't matter)
[05:03] <chibaguy> Theme-specific folder icons apparently still being cached for unwanted reuse in other themes.
[05:03] <chibaguy> otoh, the shoutjax to shoutbox update is smooth as silk. :-)
[05:09] <chibaguy> otoh again, side-column visibility isn't surviving page changes. This is a regression.
[05:10] <chibaguy> Hidden side columns should stay hidden until clicked visible again, even when you navigate to other pages or click buttons.
[05:10] <chibaguy> (like edit)
[05:37] *** JonMarkGo has quit IRC ("http://www.mibbit.com ajax IRC Client")
[06:11] *** tanjir has joined #tikiwiki
[06:41] <luciash> polom
[06:42] <luciash> chibaguy: konichiwa
[06:42] <luciash> chibaguy: cookie setting problem
[06:43] <chibaguy> hi luciash
[06:44] <chibaguy> i figured something like that
[06:45] <chibaguy> Looking ahead a little, I wonder what would be needed to apply http://jqueryui.com/themeroller/ to Tiki...
[06:47] <chibaguy> http://jqueryui.com/docs/Getting_Started
[06:50] <chibaguy> I mean to be able to select and use jquery ui to get the look and behavior shown in those demos.
[06:51] <chibaguy> I noticed branch 3 has the jquery ui files already...
[06:52] <luciash> i wonder too :)
[06:53] <luciash> but themeroller is somewhat limited imho
[07:12] *** Beestje has quit IRC ("ChatZilla 0.9.84 [Firefox 3.0.8/2009032609]")
[07:12] *** rlopez_ has joined #tikiwiki
[07:16] *** Wilkins has joined #tikiwiki
[07:24] *** Beestje has joined #tikiwiki
[07:24] <chibaguy> Yeah, I wasn't thinking about using to create themes, but being able to apply themes using jquery-ui, such as shown in the demo.
[07:27] *** Yoni has joined #tikiwiki
[07:45] <luciash> chibaguy: i think we often forget to test tiki should be usable with js off
[07:46] <luciash> chibaguy: although opera mini on mobiles already supports js to some extent
[07:46] <chibaguy> true
[07:51] <chibaguy> well, jquery, etc. should just improve how the site looks/works, but the site should still work without it....
[08:05] <luciash> yup, that$s also my "philosophy" ;)
[08:05] <luciash> imho all collapsable stuff should be expanded with js off
[08:06] <chibaguy> Also the jquery philosophy, from what I read.
[08:06] <luciash> that's good
[08:22] *** R|SK has joined #tikiwiki
[08:34] *** R|SK has quit IRC (Remote closed the connection)
[08:36] <luciash> chibaguy: pm
[08:49] *** Lucymoz has quit IRC (Read error: 110 (Connection timed out))
[08:52] *** tanjir has quit IRC (Read error: 110 (Connection timed out))
[09:00] <chibaguy> "Introducing Joopal" http://community.joomla.org/blogs/leadership/780-introducing-joopal.html
[09:02] <chibaguy> "Joopal is based on Joomla! 1.5 and features Drupal 6 the way PHP5 meant it to be done: with objects instead of globals and incredibly long function names."
[09:02] <chibaguy> Heh, was April Fools joke, apparently.
[09:05] <luciash> heh, don't believe anything released yesterday in the news ;)
[09:05] <CIA-24> tikiwiki: 03pkdille * r17759 10/branches/3.0/styles/coelesce.css: [MOD] coelesce : some left margin in the pagetitle icons and aligning in the middle the text in cbox-title
[09:07] <Yoni> konishuwa, ahoj, yom tov
[09:07] <luciash> yo yo
[09:08] <chibaguy> hi Yoni
[09:09] <Yoni> ... la laa la... end of the week here ! :D
[09:09] <Yoni> and 64 millions shekels on loto... i will play this time !
[09:10] <luciash> bah :)
[09:26] *** R|SK has joined #tikiwiki
[09:27] <R|SK> Polom. Does anybody has an idea on how to manage an image that is bound into a wiki page but was not a part of an image gallery?
[09:27] <R|SK> For example, how do I delete obsolete ones?
[09:30] <chibaguy> R|SK, there's a "Remove unused pictures" link on the wiki admin page
[09:31] <chibaguy> in the past this seemed to have some problems, removing too many images maybe (?) but maybe ok now.
[09:31] <chibaguy> (I'd back up the directory first.)
[09:32] <R|SK> Well, I expectedt sth. Like the attachment manager in admin:wiki...
[09:34] <R|SK> But ok, that will work for now, though this isn't this comfortable.
[09:35] <chibaguy> Yes, trusting it to find and remove is kinda scary. That's why a backup is good.
[09:35] *** rlopez_ has quit IRC ("Leaving")
[09:35] <R|SK> As always...
[09:35] <R|SK> ^
[09:35] <R|SK> ^
[09:36] <chibaguy> Of course this directory should be backed up anyway, right? ;-)
[09:36] <R|SK> Well, we store our attachments in the wiki database, not in a directory.
[09:37] <R|SK> So backuping is a pain in the a...
[09:38] <chibaguy> I thought you meant the img/wiki_up/ directory.
[09:39] <R|SK> Well, where are images stored as default? I set files attachments should be stored in database and alwys thought this setting would affect images as well.
[09:41] <chibaguy> hmm, I'd check that directory; I assume that was always used.
[09:41] <R|SK> Ok, found it on the server. The images are stored in the directory you mentioned.
[09:41] <chibaguy> That simplifies the backup and restore, if needed.
[09:42] <R|SK> Well ok, but this should be somehow documented somewhere.
[09:42] <R|SK> I searched the hole doc and never found a hint for that.
[09:47] *** Yoni_ has joined #tikiwiki
[09:53] <Beestje> @R|SK : perhaps it's not in the docs, but it's defined in the admin page for image galeries.
[09:55] <chibaguy> It's on http://doc.tikiwiki.org/tiki-index.php?page=Wiki+Config
[09:56] <chibaguy> "If enabled users can quickly add images (pictures) to a Wiki page by simply uploading the picture when editing a page. The picture will be stored in img/wiki_up using the name of the picture as an ID."
[09:57] <chibaguy> (I'm not trying to show you up; it's just that I sometimes question how effect the docs are, so wanted to check...)
[09:58] <chibaguy> I usually do a "site:doc.tikiwiki.org ..." search to find something in the docs via google...
[09:59] <chibaguy> to save loading the index page just to do a site search
[09:59] <R|SK> Great, taht you trust so much on the tiki search :D
[09:59] <chibaguy> not that I don't trust it, I'm just saving a step.
[10:00] <R|SK> And regarding your advice: I would have found it, if I had looked for it.
[10:00] <R|SK> I was just looking for how to manage the images, not wherer they are stored.
[10:00] <chibaguy> This time I was confirming that the directory wiki_up was used by default, so that was the search term. Searching with the Tiki search got the same result.
[10:01] <R|SK> ;)
[10:02] <chibaguy> In general, there are sometimes problems finding info, but a huge amount of work has gone into the docs, so if there are problems, I think they're specific and can be fixed.
[10:03] *** Yoni has quit IRC (Read error: 110 (Connection timed out))
[10:04] <R|SK> I know, and indeed tw is documented *very* well in comparisson to other open source projects, but the best doc is uselees, if the user doesn't know for what he should look for.
[10:06] <chibaguy> Well, I'd think "Wiki config" might be a good starting place...;-)
[10:07] <R|SK> Probably. ^^
[10:08] <chibaguy> But, true, it's an art devising paths to info, anticipating user perceptions, etc.
[10:09] <R|SK> That's alway the problem when it comes to documenting things.
[10:09] <chibaguy> like, I don't know how results would differ if the search was for "picture" instead of "image"
[10:09] <R|SK> +1
[10:11] <chibaguy> it isn't called data mining for nothing :-)
[10:25] *** keka has joined #tikiwiki
[10:58] *** Caarrie|sleeping is now known as Caarrie
[10:59] *** marclaporte has joined #tikiwiki
[11:01] *** otrotabi has quit IRC (Read error: 104 (Connection reset by peer))
[11:01] *** spoonypjk has joined #tikiwiki
[11:01] <spoonypjk> Hi guys.
[11:02] <spoonypjk> Question: How well does tikiwiki handle simultaneous edits on the same page? what's it's behaviour?
[11:05] <R|SK> Tiki will not warn you until you will save the page.
[11:05] <R|SK> So the user first to store the page won't have a problem. The second one will have to use a conflict handler.
[11:05] <R|SK> Or a merge tool....whatever you would like to call it.
[11:06] <R|SK> Afaik.
[11:08] <spoonypjk> Ah. but they atleast get notified of the conflict?
[11:08] <R|SK> yes.
[11:08] <spoonypjk> excellent. Thats the main thing.
[11:08] <spoonypjk> Some wikis I've seen just save it as a new version or a conflicting version but not alert the user straight away.
[11:09] <spoonypjk> Just trying to choose a wiki at the moment for a project.. we're in extremely early stages and having problems with the current tool.
[11:09] <spoonypjk> Liked the extra features in tikiwiki.
[11:10] <marclaporte> spoonypjk : & R|SK: my understanding of the feature is a little different
[11:10] <spoonypjk> Thanks for the answer on that too.. I'll have to load up a couple browsers to test it out on a demo.
[11:10] <spoonypjk> marc: oh?.
[11:10] <R|SK> Tell us.
[11:10] <marclaporte> in admin wiki, there is an option to activate conflict detection
[11:10] <marclaporte> it is on by default
[11:11] <R|SK> My bad, I hade accidentially disaled the feature.
[11:11] <marclaporte> when someone starts editing a page, all others will see that this page is being edited
[11:11] <marclaporte> if someone still tries, they get a warning
[11:11] <spoonypjk> ahhh.. even better.
[11:11] <marclaporte> which they may override
[11:12] <marclaporte> if they do override, they can go ahead and save
[11:12] <spoonypjk> override is good..
[11:12] <marclaporte> all versions will be saved
[11:12] <marclaporte> last one to save wins
[11:12] <marclaporte> but there is no smart merging
[11:12] <marclaporte> a human needs to sort out any conflicts
[11:13] <spoonypjk> have you had many occasions of someone just opening and forgetting/browser crashing/whatever and it staying in edit mode for hours and hours until someone overrides?
[11:13] <spoonypjk> does it show you a diff?
[11:13] <R|SK> Tere is a timeout for editing
[11:13] <R|SK> +h
[11:13] <marclaporte> I have seen another wiki which does something more advanced. But in reality, I have never seen a real world case where it's necessary
[11:13] <marclaporte> in admin wiki, you can set timeout
[11:14] <spoonypjk> the tool we've been using at the moment .. will just save another version if you have two people editing.. but it doesnt warn you that someone else is editing.. before during or after.
[11:14] <spoonypjk> so it gets quite confusing
[11:14] <spoonypjk> we've had lots of occasions where multiple people are hitting the same page. updating lists of ideas etc.
[11:15] <spoonypjk> Thanks for the info and help with that guys.
[11:15] <luciash> chibaguy: ping
[11:16] <marclaporte> The thing TikiWiki could do better is when person #2 saves, to indicate that the source document has changed since they started editing. And that a human should review two last versions and merge.
[11:17] <chibaguy> hello again luciash
[11:17] <luciash> chibaguy: i svn upped and found some weirdness
[11:18] <luciash> chibaguy: ah, sorry, forget it :)
[11:18] * chibaguy dodges a bullet...
[11:18] * luciash used tikilite.sh script and it removed lite ;)
[11:19] <chibaguy> Probably I created some weirdness, but nothing that major, I hope. ;-)
[11:20] <spoonypjk> marc: are you talking about if you have the conflict detection turned off just then?
[11:20] <luciash> chibaguy: nope, np, everything is all right :)
[11:21] <R|SK> I gues he meant If users overrides conflict warning, spoonypjk
[11:21] <chibaguy> :-)
[11:21] <spoonypjk> ahh.
[11:21] <spoonypjk> Ahh I get it..
[11:22] <spoonypjk> You're talking about if the user overrides.. but user 1 wasn't idle.. he actually was doing a real edit.. 
[11:22] <R|SK> For example
[11:27] *** Beestje has quit IRC (Read error: 104 (Connection reset by peer))
[11:27] *** Beestje_ has joined #tikiwiki
[11:27] *** Beestje_ is now known as Beestje
[11:33] <marclaporte> yup
[11:52] *** otrotabi has joined #tikiwiki
[11:53] *** navster has joined #tikiwiki
[11:54] <otrotabi> hi, I´m trying to setup dbreport working with tiki 3.0 and all I get are blanck pages, anyone can lend a hand ?
[11:56] <luciash> >whatis memory_limit
[11:56] <Sug4r> 'memory_limit' could be the most frequently asked question about trouble getting blank pages. The PHP memory_limit should be >= 16M (see your php.ini). You can check it with <?php echo ini_get('memory_limit'); ?> and read more at http://doc.tikiwiki.org/tiki-index.php?page=Requirements+and+Setup&bl#PHP
[11:56] *** marclaporte has quit IRC (Read error: 110 (Connection timed out))
[11:57] <otrotabi> memory_limit is 64 mb
[11:58] <luciash> check the logs ?
[11:59] <otrotabi> actually,no, I´ve tried using the "debug" option but still no output, where should I check ?
[12:00] <luciash> linux ? /var/logs and then apache or httpd or something like that
[12:01] <luciash> and mysql logs
[12:01] <luciash> in php.ini you should have also set where php errors go
[12:01] <otrotabi> you mean apache logs, I will check
[12:09] *** keka has quit IRC (Remote closed the connection)
[12:19] <otrotabi> well, no output to either access or my newly created php error log
[12:21] <otrotabi> Also, I notice that 3.0 is less forgiving of plugin errors than 2.2, which used to at least display the PHP errors and warnings at the top of the page. 3.0 just gives a totally blank page if there is so much as a missing semicolon. 
[12:21] <otrotabi> this is what the developer says regarding 3.0 
[12:22] <otrotabi> but I can´t find where my mistake is, so I was wondering if someone else could give it a simple try
[12:22] *** andrey23 has joined #tikiwiki
[12:26] <luciash> otrotabi: do you have php reporting on ? it should display php errors at the end of the page
[12:28] *** otrotabi has quit IRC ("CGI:IRC (EOF)")
[12:28] *** otrotabi has joined #tikiwiki
[12:29] <otrotabi> lucia: actually I did not have a php error file, but I think I have just enabled it
[12:31] <otrotabi> there should be some kid of output, right ?
[12:36] *** andrey23 has quit IRC (Remote closed the connection)
[12:36] *** andrey23 has joined #tikiwiki
[12:48] *** marclaporte has joined #tikiwiki
[12:49] *** keka has joined #tikiwiki
[12:59] *** nkoth3 has joined #tikiwiki
[13:08] *** rodrigo_sampaio has joined #tikiwiki
[13:18] *** marclaporte has quit IRC ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org")
[13:34] <luminoso> where can i find the script on doc/devtools that makes a tarball of current svn?
[13:36] *** FrankP_german has joined #tikiwiki
[13:37] *** rlopez_ has joined #tikiwiki
[13:39] *** otrotabi has quit IRC ("CGI:IRC (EOF)")
[13:44] *** MangaPower has joined #tikiwiki
[14:37] <keka> hello 
[14:42] *** navster has quit IRC ("shit! they found me")
[15:13] <CIA-24> tikiwiki: 03sylvieg * r17760 10/branches/3.0/lib/tikilib.php: [FIX]wiki: an INCLUDE of a page beginning with a ! must be interpreted (do not consider the edit plugin button)
[15:14] <CIA-24> tikiwiki: 03sylvieg * r17761 10/branches/3.0/lib/tikilib.php: oops trace
[15:17] *** Amorphous has quit IRC (Connection reset by peer)
[15:18] *** SEWilco2 has joined #tikiwiki
[15:23] <CIA-24> tikiwiki: 03pkdille * r17762 10/branches/3.0/ (4 files in 2 dirs): [MOD][BP-17758][BP-17747] newsletters : some small enhancements
[15:27] <spoonypjk> hmm Ive been playing a little with the demo online .. everytime I go to "edit" something in the wiki.. I lose a lot of the formatting /carriage returns / whitespace of the page that im editing. any ideas?
[15:28] <spoonypjk> ie. i click to edit a page.. and the box that the page loads in has no whitespace.. erver think wraps after each other and no carriage turns.
[15:29] <luciash> hmmm hrm
[15:29] <spoonypjk> im using firefox 3.07 under ubuntu.
[15:29] <luciash> any idea how to export mysqldump to have saved articles back after import ?
[15:30] <luciash> and wth do i have to set to have utf8 back ? :-p
[15:30] <luciash> spoonypjk: what demo ?
[15:30] *** Beestje has quit IRC ("ChatZilla 0.9.84 [Firefox 3.0.8/2009032609]")
[15:31] <spoonypjk> on opensourcecms.. 
[15:31] *** R|SK has quit IRC (Remote closed the connection)
[15:31] <spoonypjk> perhaps its just an issue specific to opensourcecms.
[15:33] <luciash> spoonypjk: maybe, i had no problems on my test sites
[15:33] *** marclaporte has joined #tikiwiki
[15:35] *** Amorphous has joined #tikiwiki
[15:35] <spoonypjk> I'll have to set something up on my own server in the morning.. I should get to sleep now. 
[15:36] <spoonypjk> luciash I'll see how I go on an install. hopefully it wont have the same behaviour :)
[15:36] <spoonypjk> nite.
[15:43] <SEWilco2> spoonypjk: There are options in Admin>Wiki section which affect whether adjacent lines are in a single paragraph or not.
[15:44] <SEWilco2> spoonypjk: Many sites prefer for all the text in a paragraph to be emitted without <BR> at the end of lines, so the browser can fit the text to the browser's window.
[15:44] *** Yoni_ has quit IRC ()
[15:46] <marclaporte> luciash: : ping
[15:52] <luciash> marclaporte: pong
[15:52] <marclaporte> luciash: : how are you?
[15:53] <luciash> hey marc, fine, better than at the beginning of the week, i got ill (cold, grippe) but now it's better
[15:54] <luciash> i'm fighting with mysql currently :-p
[15:54] <luciash> with phpmyadmin actually
[16:03] <CIA-24> tikiwiki: 03sylvieg * r17763 10/branches/3.0/templates/ (tiki-calendar.tpl tiki-object_watches.tpl): [MOD]calendar: group watch
[16:05] *** MangaPower has quit IRC (Read error: 110 (Connection timed out))
[16:14] *** Darkbee has joined #tikiwiki
[16:14] <Darkbee> Hey all
[16:15] *** MangaPower has joined #tikiwiki
[16:16] <Darkbee> Could installing TikiWiki on one domain and then moving it to another cause POST values not to work correctly?  In particular, I do not get specific login error messages like "incorrect password", I just get the error saying I'm not logged in.
[16:17] <Darkbee> I'm wondering if the paths from the old domain are stuck in the system somewhere causing it not to POST form values correctly.  Everything else seems to work fine.  I'm using v2.3
[16:17] *** franck_ has quit IRC ()
[16:17] <marclaporte> luciash: : what did you have in mind to improve the wiki help (red question mark) ?
[16:18] <luciash> marclaporte: collapse all plugins by default to make it more readable, make it optional, make it draggable to another place
[16:18] <Darkbee> The site is www.weemorewar.com, try to log in with a bogus username and/or password and you will see what I mean (I hope).
[16:22] <marclaporte> luciash: : what do you need to make this happen?
[16:22] <luciash> marclaporte: time :)
[16:23] <Darkbee> lol
[16:23] <marclaporte> do plugins and regular wiki help need to be two boxes?
[16:23] <marclaporte> luciash: : hehe, ok
[16:36] *** snarlydwarf has joined #tikiwiki
[16:37] *** franck has joined #tikiwiki
[16:38] <keka> how to add friends in tikiwiki
[16:39] <chibaguy> Milkyway, Joomla's default theme: http://zukakakina.com/tw3/tiki-index.php - coming soon in its 6 color variations.
[16:40] <Darkbee> Click on their username somewhere like a forum post or online users to get to their "User information" page, and then choose "Request friendship from this user".
[16:41] <Darkbee> Nice Chibaguy.
[16:42] <keka> how to register as a new user ?
[16:43] <SEWilco2> Darkbee: Another complication with login could be if server wants www.example.com but you're accessing through example.com.
[16:44] <Darkbee> @Keka: If you go to the page "tiki-login_scr.php" there should be a link called "register".  It's possible registration is disabled.  You'd need to the login admin options.
[16:45] <Darkbee> @SEWilco2, thanks but it makes no difference, still no specific login errors.  I just tried.
[16:47] <Darkbee> I'm completely stumped, only thing I can think is some kind of domain issue (since that's the only thing that is different) or a corrupt file/s, other than that, I have no clue, but I've done several re-installs and the result is the same very time.
[16:47] <Darkbee> I've even exported the new database back to the old domain and the old domain still works fine.
[16:47] <Darkbee> so it can't be a database issue, or at least I think not.
[16:48] *** aardvarc is now known as aardvarq
[16:48] <Darkbee> It's not a huge problem, I'm just one of these people that likes to know why things aren't working the way they are supposed to.
[16:49] *** Wilkins has quit IRC (Read error: 104 (Connection reset by peer))
[16:51] *** chibaguy has quit IRC ("http://www.mibbit.com ajax IRC Client")
[16:58] *** chibaguy has joined #tikiwiki
[17:04] *** marclaporte has quit IRC (Read error: 110 (Connection timed out))
[17:42] *** chibaguy has quit IRC ("http://www.mibbit.com ajax IRC Client")
[17:42] *** keka has quit IRC (Read error: 113 (No route to host))
[17:52] *** ricks99 has joined #tikiwiki
[17:56] *** keka has joined #tikiwiki
[17:59] *** Lucymoz has joined #tikiwiki
[18:13] *** jonas_ah has joined #tikiwiki
[18:13] *** Caarrie is now known as Caarrie|away
[18:14] *** rlopez_ has quit IRC ("Leaving")
[18:16] *** keka has quit IRC (Remote closed the connection)
[18:38] *** nkoth3_ has joined #tikiwiki
[18:40] <CIA-24> tikiwiki: 03axold * r17764 10/branches/experimental/workspaces/ (427 files in 94 dirs): [FIX] Resolved a conflict merging with the branch
[18:44] *** keka has joined #tikiwiki
[18:54] *** nkoth3 has quit IRC (Read error: 110 (Connection timed out))
[18:55] *** fantoms has joined #tikiwiki
[18:55] *** TvD has joined #tikiwiki
[18:56] *** TvD has quit IRC (Client Quit)
[19:09] *** MangaPower has quit IRC (Read error: 110 (Connection timed out))
[19:11] *** keka has quit IRC (Read error: 110 (Connection timed out))
[19:19] *** keka has joined #tikiwiki
[19:31] *** FrankP_german has quit IRC ("Nettalk6 - www.ntalk.de")
[19:34] *** nevali has joined #tikiwiki
[19:34] <nevali> hello
[19:37] <luciash> hi
[19:38] <luciash> anyone left debugging JS alerts in recent 3.0 SVN ?
[19:38] <luciash> such as on tiki-admin_system.php ?
[19:41] <luciash> i get weird dialogs on one of my sites popping up with "Built headers:, 10ms" and "[object Object]" followed by "column:0 parser:text\ncolumn:1 parser:text..." etc.
[19:45] *** keka has quit IRC (Read error: 110 (Connection timed out))
[19:48] *** jonas_ah has quit IRC ()
[19:50] *** danopia has quit IRC (Remote closed the connection)
[19:50] *** danopia has joined #tikiwiki
[20:17] <sylvieg> are forum watches working properly in 3.0? seems post_watching is good - but thread watching is not working
[20:25] <nevali> how to send a friend request to the user from a user
[20:28] <Darkbee> @Nevali: Click on their username somewhere like a forum post or online users to get to their "User information" page, and then choose "Request friendship from this user".
[20:33] *** philback_ has joined #tikiwiki
[20:33] *** philback_ is now known as philback
[20:33] <philback> anyone using filegalleries with categories and groups with 2.2 ?
[20:34] <philback> I've got galleries and files that do stay hidden...
[20:37] <nevali> I can see the users but Iam not able click on the username
[20:40] <Darkbee> @Nevail, then they have set their information as "private"
[20:40] <Darkbee> Nevali sorry.
[20:42] *** luminoso has quit IRC (Read error: 60 (Operation timed out))
[20:44] *** Darkbee has quit IRC ("Miranda IM! Smaller, Faster, Easier. http://miranda-im.org")
[20:45] <nevali> @Darkbee they changed to public but it didn't work
[20:49] <sylvieg> philback: check you have tiki_view_categorized if it is categorized ...
[20:58] <philback> the permission is not there on my install, that's weird
[20:58] <philback> not show in the list of perms
[20:59] <philback> it's a 2.0
[20:59] <philback> not 2.2
[20:59] <sylvieg> clear temp/cache
[21:00] <philback> k
[21:00] <philback> mmm
[21:01] <philback> how comes ? what is in there ?
[21:01] <sylvieg> still not having the perm tiki_p_view_categorized?
[21:02] *** Hansi has quit IRC ()
[21:03] *** Hansi has joined #tikiwiki
[21:03] *** rodrigo_sampaio has quit IRC ("Leaving.")
[21:05] <philback> no, not in there.
[21:05] <philback> cache helped
[21:05] <philback> I've installs with customizations here and there. This one is a 2.0
[21:06] <philback> but it's ok, I've found a way to get what I want to do without categories.
[21:06] <philback> just put the rights for a given group on a file gallery. it's fine.
[21:07] <philback> I had a look in the code but it's a bit too complicated to understand it all now.
[21:17] <CIA-24> tikiwiki: 03sylvieg * r17765 10/branches/3.0/lib/commentslib.php: [FIX]forum: delete watches when deleting topic
[21:32] <luciash> 3.0 after saving article: Fatal error: Call to a member function capture_images() on a non-object in /.../tiki-edit_article.php on line 382
[21:32] <sylvieg> it was a long time i was not in the forums .. there a rebroken
[21:34] <sylvieg> luciash - do you have a module using images...
[21:34] * luciash just discovered after enabling report all errors on Admin > General :-p
[21:34] <luciash> it's not module, it's article (CMS) save
[21:35] *** Lucymoz has quit IRC (Read error: 110 (Connection timed out))
[21:35] <luciash> when i disable php error reporting it passes without no errors of course
[21:35] <sylvieg> yes but it is because problable imagegallib was used in a m,odule without a global
[21:36] <luciash> no module, simple article
[21:36] <sylvieg> usually I debug thsi by puttin a debug_print_backtrace(); in the imagelib.php
[21:36] <luciash> okay, thanks for hint
[21:39] <luciash> goddamnit, looks something is missing on the hosting... doesn't save the article even when php error reporting is off
[21:40] *** nevali has quit IRC (Read error: 110 (Connection timed out))
[21:40] *** nevali has joined #tikiwiki
[21:40] <luciash> sylvieg: where was the gdlib/imagick setting check ?
[21:43] <philback> byebye people =-)
[21:43] *** philback has quit IRC ("Friends help you move. Real friends help you move bodies.")
[21:51] <luciash> it's FreeBSD server
[21:51] <luciash> i fear it's again related to some php functions which are not compiled in by default :-/
[21:51] <luciash> (like ctype)
[21:52] * luciash wonders where the capture_images() function belongs, goes to check php.net
[21:52] <sylvieg> ./lib/imagegals/imagegallib.php:	function capture_images($data) 
[21:53] <luciash> ah, thx, it's custom tiki function, right ?
[21:53] <luciash> uploading image to filegallery works with no problme
[21:53] <sylvieg> yeh.. so it is why I think it is a global $imagelib; missing somewhere
[21:53] <sylvieg> but o fcourse I am sure...
[21:54] <luciash> :)
[21:54] <luciash> must be somewhere in between saving article ;)
[22:07] *** luciash has quit IRC (Read error: 60 (Operation timed out))
[22:19] *** SEWilco2 has quit IRC (Remote closed the connection)
[22:20] *** Sug4r has quit IRC (Read error: 113 (No route to host))
[22:22] *** fantoms has quit IRC (Read error: 104 (Connection reset by peer))
[23:11] *** Lezard has joined #tikiwiki
[23:16] *** nkoth3_ has quit IRC ()
[23:25] *** luciash has joined #tikiwiki
[23:30] *** Sug4r has joined #tikiwiki
[23:32] *** snarlydwarf has quit IRC ("Ex-Chat")