<!-- Some styling for better description lists --><style type='text/css'>dt { font-weight: bold;float: left;display:inline;margin-right: 1em} dd { display:block; margin-left: 2em}</style>

   ***: Tiki|bot has quit IRC (Ping timeout: 255 seconds)
   <br> lphuberdeau has quit IRC (Ping timeout: 240 seconds)
   <br> Tiki|bot has joined #tikiwiki
   <br> NetworkMan has joined #tikiwiki
   NetworkMan: Can someone help me with ver.7 to create an external link on a menu to open in a new window?
   ***: Spark has joined #tikiwiki
   Spark: hi, is there a way to configure tiki for splitting between cgi-bin and content dirs?
   <br> i need it to get css from / even though the php files are in cgi-bin/
   <br> otherwise i'll need rewrite rules
   <br> and that ends up flakey
   nkoth: <u>NetworkMan</u>: do you know jquery?
   <br> ^ http://css-tricks.com/snippets/jquery/open-external-links-in-new-window/
   NetworkMan: jquery...nope.
   nkoth: <u>Spark</u>: I think the css needs to be "within" the tikiroot in the usual relative way, otherwise the css won't load
   Spark: <u>nkoth</u>: the css has to be in a different root
   <br> because of hte apache configuration
   <br> css, images, js, etc
   <br> if tiki doesn't support that i have to hack it
   nkoth: why are the php files in cgi-bin anyway?
   Spark: becaus they're cgi scripts
   nkoth: I always thought that was for perl scripts or something
   Spark: all scripts that are executed by the webserver to generate the page go in cgi-bin
   <br> reading doc.tiki.org, it looks like support for this used to exist
   <br> Server name (for absolute URIs):" -&gt; http://yourserver.com/yoursite/
   <br> [Is this obsolete for 2.1? I cannot find any slot on the Admin &gt; General page with a label similar to this, although I see the following two. If someone in the know could update this it would help relative newcomers like me.]
   <br> that's what i need
   <br> but it's not there
   nkoth: Spark, sorry I don't know and don't have a server config like this to test with
   <br> I vaguely remember this was an issue/there was a way back in the old days...(meaning years ago)
   NetworkMan: Can someone help me with ver.7 to create an external link on a menu to open in a new window? Please!!!!!!!!
   nkoth: NetworkMan, one sec
   <br> creating wiki page
   ***: Caarrie|away is now known as Caarrie|sleeping
   <br> rodrigo_sampaio has quit IRC (Quit: Leaving.)
   nkoth: <u>NetworkMan</u>:  http://doc.tiki.org/How+to+make+menu+items+open+in+a+new+window
   <br> actually have you tried http://foo.bar" target="_blank ?
   NetworkMan: yes...i tried this already....
   nkoth: <u>NetworkMan</u>: I tried it it works... https://doc.tiki.org/Menu#External_Links_in_Menus
   NetworkMan: Here is the link I'm using:  https://campusship.ups.com/login/mawesup" target="_blank
   nkoth: ok, so far so good
   NetworkMan: It is setup as a menu item.  It opens on the current web tab.
   nkoth: did you turn on the allow html feature in admin...general (navigation tav)
   NetworkMan: That's it ....Thanks....
   ***: goj_killedByISP has joined #tikiwiki
   <br> goj has quit IRC (Disconnected by services)
   <br> goj_killedByISP is now known as goj
   <br> goj_killedByISP has joined #tikiwiki
   <br> goj has quit IRC (Disconnected by services)
   <br> goj_killedByISP is now known as goj
   Spark: got most of it working
   <br> http://gritengine.woaf.net/cgi-bin/game-engine-wiki/tiki-index.php
   <br> the menus are missing those little triangle arrow things
   <br> perhaps a bug in the javascript?
   <br> it's simply not emitting the span tag for it
   ***: NetworkMan has quit IRC (Quit: Leaving)
   Spark: can't figure it out
   <br> probably a bug
   <br> it ruins the usability of hte page though so needs fixking
   <br> comapre:
   <br> http://gritengine.woaf.net/cgi-bin/game-engine-wiki/tiki-index.php?page=Shadows
   <br> http://gritengine.woaf.net/game-engine-wiki/tiki-index.php?page=Shadows
   nkoth: your images are also not showing, the img/wiki_up folder not mapping or allowed to see
   Spark: there are no uploaded images yet
   <br> mediawikki does not export them in its xml format
   <br> i'll have to create them manually
   <br> the images will go into the database anyway
   <br> i recall telling it to do that
   <br> it is actually only the admin part that is broken
   <br> so not a big deal really
   <br> the rest of the site doesn't link to cgi-bin/ for some reason
   ***: nkoth has quit IRC (Quit: nkoth)
   <br> DarkCalf has quit IRC (Read error: Connection reset by peer)
   <br> DarkCalf has joined #tikiwiki
   <br> GillesMM has quit IRC (Remote host closed the connection)
   <br> redflo has joined #tikiwiki
   <br> Merbster has joined #tikiwiki
   <br> xavi has joined #tikiwiki
   Spark: self_link is the problem
   <br> it inserts cgi-bin into the link
   <br> it uses PHP_SELF
   <br> which will include the cgi-bin
   <br> maybe it should use REQUEST_URI or something
   <br> i'll just hack it
   <br> $php_self = str_replace("cgi-bin/", "", $php_self);
   ***: GillesMM has joined #tikiwiki
   Merbster: Spark, I separated my hack into a file and includeded it the appropiate place, it easies upgrades
   Spark: yeah
   ***: Wilkins has joined #tikiwiki
   Spark: an upgrade will just trash your include line though
   Merbster: Spark, yes, but it's easier to identify where the hack ahs been included
   <br> because you open your file and do a search for include("yourfile.php");
   <br> instead of writing the hack directly
   <br> it also clearly defines where the hack starts and stops, so when you need to disable it or whatever, you're not in doubt where it started etc.
   <br> also easier for other people if you have collegues etc. ^^
   Spark: true
   <br> it seems PHP_SELF is used all over the palce
   <br> is this meant to look like this?  http://gritengine.woaf.net/game-engine-wiki/tiki-list_file_gallery.php?galleryId=4
   <br> maybe what i should do is change PHP_SELF
   <br> the problem is, sometimes you do need the actual filename
   <br> but sometimes you want the URL that serves the file
   <br> and at the moment they are both implmeneted with PHP_SELF so impossible to distinguish
   <br> what i need to do is locate places where PHP_SELF ends up in a href=, action= or src=
   <br> what would be awesome is if i could get apache to fix all the links in the page
   <br> like mod rewrite, but processing the result of a php script execution
   ***: Wilkins is now known as Wilk
   <br> Wilk is now known as Wilk_
   <br> Wilk_ is now known as Wilkins__
   Merbster: Spark, if this is standard code that is messing up on your server it seems like something is misconfigured
   <br> I have had no reason to configure tikiwiki in any special way regarding the php_self
   Spark: the server setup is standard -- executable stuff in /cgi-bin and content in /
   <br> wordpress works fine
   <br> tiki is just buggy
   <br> i am not looking forward to setting up phpbb
   ***: jonnyb has joined #tikiwiki
   Merbster: Spark, are you using Apache or IIS?
   <br> Isn't CGI-Bin a bit old-school? :P
   <br> Even on the IIS server we use, we use FastCGI for php, yet there is no CGI-bin
   Spark: apache
   Merbster: and when I had TikiWiki running on apache I did not use the cgi-bin at all
   Spark: so you executed the scripts as http-user?
   <br> this is a multi-user system, that would be completely unacceptable from a security pov
   Merbster: Spark, I am no expert in server setups. But doesn't apache support multiple domain configuration withouh being dependant on cgi-bins?
   <br> I mean, what differentiates the cgi-bin from the user's own homedir?
   <br> and isn't all files in tikiwiki scripts? - besides ofc. pictures, text etc.
   <br> to my knowledge there are no "pure" html files in tikiwiki so all files would end up in cgi bin?
   Spark: css, js, and images are outside of cgi-bin
   <br> you don't have to call it cgi-bin, but you need one area that contains scripts that are executed setuid, and another area that contains files that are copied to the client, as http-user
   <br> so they have to manifest as 2 different url prefixes, typically / and /cgi-bin/
   <br> i don't have root on this server anyway
   <br> the most common thing to do is not have multi-user systems these days
   <br> then the config can be as insecure as you like
   <br> so how do you do things like searching for orphaned pages
   <br> or broken links
   ***: coaboa has joined #tikiwiki
   coaboa: good morning tikiverse
   ***: jonnyb_ has joined #tikiwiki
   jonnyb_: hi coaboa
   ***: jonnyb has quit IRC (Ping timeout: 264 seconds)
   <br> jonnyb_ is now known as jonnyb
   <br> SJ-Jay-away is now known as SJ-Jay
   CIA-88: tikiwiki: 03changi67 * r35702 10/trunk/tiki-xmlrpc_services.php: [MOD] Modify Path to be clear
   ***: luciash has joined #tikiwiki
   luciash: good morning
   jonnyb: hi luciash
   Merbster: Spark, Sounds like you're better at setting up servers than me. I'm just a measly developer :P
   CIA-88: tikiwiki: 03changi67 * r35703 10/trunk/tiki-socialnetworks.php: Check feature
   luciash: hiya jonnyb
   <br> <u>jonnyb</u>: still travelling ?
   jonnyb: yup
   luciash: <u>jonnyb</u>: touring europe with your tent ? :)
   jonnyb: yes, but working today - staying at a friends near Lyon
   -: luciash was hitch-hiking near lyon when being "young"
   CIA-88: tikiwiki: 03changi67 * r35704 10/trunk/tiki-slideshow.php: Check feature
   luciash: <u>jonnyb</u>: come to visit us then ! ;)
   CIA-88: tikiwiki: 03changi67 * r35705 10/trunk/ (categorize_list.php contribution.php): Check script
   jonnyb: next time maybe - going to meet up with my sister &amp; family next week, then home
   luciash: <u>jonnyb</u>: our garden has plenty of space for a tent ;)
   jonnyb: :D
   luciash: <u>jonnyb</u>: and couple of nice pubs in the near by
   CIA-88: tikiwiki: 03changi67 * r35706 10/trunk/categorize.php: Check script
   luciash: <u>jonnyb</u>: ok, next time then :D
   <br> <u>jonnyb</u>: i was hoping for organizing tikifest this year at our place but it looks like more probably next year
   Merbster: Any ideas about where the next tikifest will be?
   luciash: <u>Merbster</u>: Montréal Canada iirc
   Merbster: hmmm.
   <br> is the date specified yet?
   luciash: <u>Merbster</u>: check out http://tiki.org/TikiFest
   Merbster: luciash, thank you :)
   <br> SJ-Jay and me have been talking abuot maybe attending one of the tikifests, we need to clear it with our boss htough
   luciash: <u>Merbster</u>: u r welcome
   Merbster: I hope so, I'd hate to be beaten by a horde of mad tiki devs :P
   luciash: lol
   ***: coaboa has quit IRC (Remote host closed the connection)
   CIA-88: tikiwiki: 03jonnybradley * r35707 10/branches/7.x/lib/setup/absolute_urls.php: [FIX] html base tag: Use REQUEST_URI if other server vars not set, and don't use it at all if not found as using $base_url instead produces incorrect results on in-page anchors (thanks Sylvie)
   ***: coaboa has joined #tikiwiki
   xavi: polom
   <br> jonnyb, about the webdav issue with finder... I don't have a mc handy here at work, but I can offer you to try with our server...
   <br> with a test trunk...
   <br> so that you can know for sure whether it's some sort of issue mac-specific and not server-side issue (missing sopme weird package or whatever)
   ***: SJ-Jay has quit IRC (Read error: Connection reset by peer)
   sylvieg: <u>jonnyb</u>: thx for the fix - I was sure something could be done but did not have time
   jonnyb: hi sylvieg and xavi
   <br> <u>xavi</u>: thanks, but don't worry too much
   xavi: ok
   jonnyb: hopefully we'll get it all fixed up for 8
   xavi: ok
   <br> does it mean "green light" for releasing 7.1, then?
   ***: SJ-Jay has joined #tikiwiki
   luciash: hi xavi
   xavi: hi luciash
   CIA-88: tikiwiki: 03jonnybradley * r35708 10/branches/7.x/templates/modules/mod-search.tpl: [FIX] search module: More recovery from unified search changes (titles and edit buttons)
   jonnyb: xavi, no - i think we should wait for the fixes Stéphane has done in trunk for webdav to be backported, then release 7.1
   xavi: <u>jonnyb</u>: well, sorry, yes you are right. I meant once those webdav fixes in trunk are backported to 7.x. I mean, no more blockers or issues delaying 7.1 release?
   jonnyb: not as far as i'm concerned - the parsing thing is ongoing (i.e. i'm not fixing it ;) )
   xavi: :-)
   -: xavi smelling 7.1-release sometime in the nearfuture...
   ***: Caarrie|sleeping is now known as Caarrie|away
   Merbster: Does any of you guys know about the webservice plugin's internal workings?
   <br> I'm currently running it through a debugger and when I test the service from where you register webservices in tikiwiki the parameters sent to the webservice plugin are read.
   <br> but when I try to send parameters from where I include the webservice plugin (with the registered service) the webservice plugin filters out the values because the parameter is not named service or template.
   xavi: <u>Merbster</u>: no idea myself. You'll have to ask "lph" here (when he is back) or at devel list
   Merbster: http://pastebin.com/Zvrpt8cH &lt;- this is the function that sets the parameters to " " if it's not defined in that array that contains "service" and "template" ?
   CIA-88: tikiwiki: 03jonnybradley * r35709 10/trunk/ (14 files in 10 dirs): [MRG] Automatic merge, branches/7.x 35623 to 35708
   Merbster: If I find out this is a bug do I really have to setup acess to tiki's svn and everything? or is there an easier way to submit bug fixes?
   ***: jonnyb has quit IRC (Quit: jonnyb)
   Merbster: any regexp ninjas here?
   CIA-88: tikiwiki: 03sept_7 * r35710 10/trunk/lib/ (TikiWebdav/Backend/File.php filegals/filegallib.php): [FIX] WebDAV really use filename for files...
   ***: Bernard1 has joined #tikiwiki
   Bernard1: I'm trying to connect in TikiW using LDAP (AD). I have activated "Write LDAP debug Information in Tiki Logs:" and i have set in LDAP.php $this-&gt;options['debug']       = true;
   <br> i try to connect, i have an error invalid username and there is strictly nothing in tiki-syslog.php.
   <br> hu !
   Merbster: http://pastebin.com/Zvrpt8cH &lt;- Is this code supposed to remove "service" and "template" if they are set as  parameters in the plugin ? (it's only 7 lines)
   <br> Bernard1, Which tiki version?
   Bernard1: 6.4
   Merbster: If your LDAP query string is longer than 200 chars TikiWiki fails
   ***: luciash has quit IRC (Ping timeout: 252 seconds)
   Merbster: the database that saves the query string is limited, and the php code will just chomp off whatever is longer than 200 chars
   <br> so if your AD description is something like "My very long company name" plus all the other user details, it's quite easy to pass this limitation
   <br> Bernard1, I made a workaround. But it's based on tiki 6.1 ldap module
   Bernard1: ok but this will explain why i don;t see a single information on the log (not even a failed to) ?
   Merbster: Bernard1, setting up ldap for loggin can be a bit tricky and currently I don't remember what we did to make it work.
   Bernard1: concentrate, let's flow you anger ! :D
   Merbster: But I'd check my settings again. Remember if you have installed a transalation package the settings won't be found if you use the english words for it (because some settings are translated and others are not)
   Bernard1: OH !
   <br> that's interesting about language… let me check
   Merbster: Bernard1, if you like I can send you the ldap module I modified, but it's from 6.1 (currently running in 6.3)
   Bernard1: be happy bsfez@shocksite.com
   <br> this tw was multilinguale pages in hebrew
   <br> i changed to en only… still nothing (but my feature change) in the logs…
   <br> it is like tw is not even looking the "invalid username" appear right away
   ***: jonnyb has joined #tikiwiki
   Tiki|bot: New Forum Posts: Custom Home Page - http://tiki.org/tiki-view_forum_thread.php?forumId=4&amp;comments_parentId=41873
   Merbster: Bernard1, you got mail
   Bernard1: <u>Merbster</u>: tks
   Merbster: Bernard1, I cannot say if this will fix your problem. but the symptons seems like it. In any case, do a backup! :P
   Bernard1: sure, i'll let you know
   ***: jonnyb has quit IRC (Quit: jonnyb)
   <br> jonnyb has joined #tikiwiki
   <br> rodrigo_sampaio has joined #tikiwiki
   Merbster: How well are the different modules maintained?
   <br> I can see that the webservices module is from tiki 3.x has it ever been possible to just throw parameters at a plugin and it will take them without question?
   <br> I've spent the last 3 hours running this through a debugger and I can find no code path that manages to pass the parameters correctly.
   <br> except in the registering part under admin. but I define the parameters' values in a form there (whicH I expect are calling the webservice directly, thus going around the standard plugin parameter handling)
   jonnyb: <u>Merbster</u>: that's a LPH thing as xavi said, best to mail him via the dev list
   Merbster: jonnyb, excuse my ignorance, but dev list ?
   jonnyb: http://sourceforge.net/mailarchive/forum.php?forum_name=tikiwiki-devel
   <br> it's where most of the discussion about development issues take place
   Merbster: I was under the impression it was hanled through the development areas of tikiwiki.org
   <br> it's the first time I see this sourceforge link :P
   jonnyb: you might want to check out this page too: http://dev.tiki.org/TikiDevNewbie
   Merbster: I am ashamed to say so but I have never used a mailing list before, I see it as something old fashined. but I guess there's a first for everything :)
   jonnyb: some stuff happens on dev.t.o - and here, but the list is best for questions to people who aren't around
   Bernard1: <u>Merbster</u>: ok at last i have a "Bind succesful" but still no login
   jonnyb: more old fashioned than IRC? :P
   Merbster: Bernard1, are you getting entries in the log now?
   Bernard1: y
   Merbster: Bernard1, I did not configure the AD end of it. So i can't help you with the setup, but when SJ-Jay is back again he might be able to give you some pointers.
   Bernard1: from the log with one user i got a bind successful, with another i have invalid credential…. but for both tw say : Invalid username.
   <br> k tks
   Merbster: jonnyb, dev.t.o is shorthand for what?
   <br> dev.tiki.org ?
   jonnyb: yup! :)
   ***: lphuberdeau has joined #tikiwiki
   Merbster: oh this is nice. :)
   ***: luciash has joined #tikiwiki
   Merbster: hello lphuberdeau :)
   <br> lphuberdeau, can you tell me how the webservice plugin takes the "user defined" parameters? - the docs says that there's a "param" parameter where you can specify the parameters for the webservice, but I can find no such parameter in the webservice plugin defintion, besides the standard $params var that is in all plugin definitions.
   <br> I dropped the plugin alias way of going about this and I have defined a webservice template in the webservice registration UI. (which works)
   sylvieg: <u>Bernard1</u>: the AD user is created in tiki - so the user name must satisfy tiki username rukles
   ***: rodrigo_sampaio has quit IRC (Ping timeout: 276 seconds)
   luciash: hi again
   <br> i haven't received any e-mail from the dev list second day already... is it just me ?
   Bernard1: Hi Sylvie, this should be ok (firstname lastname en). What i don't get is that i see on the log "Bind successful" but on the second browser TW say invalid username or password.
   Merbster: Bernard1, have you tried to switch out the ldap.php file in /lib/auth with the 6.1 version?
   <br> It was the only way we worked around that problem.
   Bernard1: "underway" :)
   Merbster: Allthough it's an ugly solution.
   Bernard1: got to go
   ***: rodrigo_sampaio has joined #tikiwiki
   <br> Bernard1 has quit IRC (Ping timeout: 258 seconds)
   lphuberdeau: Merbster, plugin aliases are too complex, I'll need to revisit them at some point, I know, as for the webservice plugin, I think it's a parameter that contains one long string with bunch of arguments... has not always been that way, not too sure
   ***: ricks99 has joined #tikiwiki
   Merbster: lphuberdeau, wikiplugin_webservicelib.php defines only: url, service, template and bodyname
   <br> lphuberdeau, url will disable the registered webservice and it's defined template (if I understood the docs correctly) and I saw if it was bodyname but it seems it only defines the body as a parameter
   <br> lphuberdeau, I guess it all boils down to: am I using the plugin incorrectly or should I write a bugfix and submit it?
   lphuberdeau: well, if there is a bug, fixing it seems like the right course
   Merbster: The only way I can see to fix it is to define wikiplugin_webservice to accept a new parameter that defines the webservice's url parameters and then inserts it' the correct place where it does the webservice query?
   <br> lphuberdeau, I just wanted to make sure it was a bug and I did not misunderstand something. Yet the documentation defines a "params" parameter that should reiceve the webservice's url parameters in this format: parm1=val&amp;parm2=val&amp;parm3=val etc.
   lphuberdeau: looking at the plugin, there is a params parameter
   <br> which is url-encoded
   <br> and it gets merged back into the main params value
   ***: rodrigo_sampaio has quit IRC (Read error: Connection reset by peer)
   lphuberdeau: and those are parameters that are in the webservice URL as far as I can see
   ***: rodrigo_sampaio has joined #tikiwiki
   Merbster: lphuberdeau, hwo can it recieve that parameter if it's not defined in wikiplugin_webservice? I can only see the standard parameters array. I assumed I did not have the ability to write to it.
   lphuberdeau: testing...
   Merbster: I can't help but feel that I'm annoying with all these stupid questions.
   ***: rodrigo_sampaio has quit IRC (Ping timeout: 260 seconds)
   lphuberdeau: just stuff I have not played with in a long time
   Merbster: I am thinking about the sheer amount of questions I have been loading off here the last month or so.
   ricks99: @Merbster: That's standard Tiki newbie process. :-) Just search the forums to see the 100s of Qs *I* asked when I started.
   Merbster: ricks99, thanks, you made me feel alot better ;)
   ***: rodrigo_sampaio has joined #tikiwiki
   lphuberdeau: Merbster, we're just counting on you to hang around and take care of the next guy ;)
   -: ricks99 thinks the Tiki dev community is about as open and inviting as I've ever seen in opensource
   Merbster: ofcourse I will help as much as I can.
   <br> I agree ricks99
   <br> I hung around the linux community once... now THAT's a aggressive bunch :P
   -: lphuberdeau changes some code to be able to test
   lphuberdeau: I just think it would be a good thing that our webservices work with the webservice API
   Merbster: lphuberdeau, Do you mean the standard webservice API in PHP ?
   lphuberdeau: in tiki
   ***: rodrigo_sampaio1 has joined #tikiwiki
   <br> rodrigo_sampaio has quit IRC (Read error: Connection reset by peer)
   Merbster: oh.
   CIA-88: tikiwiki: 03lphuberdeau * r35711 10/trunk/lib/ointegratelib.php: [MOD] Get the webservices to go through Zend_Http_Client to benefit from all the authentication magic
   luciash: re-polom
   <br> why is it advised not to use space in Tiki Profiles names ?
   lphuberdeau: the profile parser can't cope with them
   Merbster: lphuberdeau, So should I write a bug fix or am I using the module in an incorrect way?
   luciash: <u>lphuberdeau</u>: ah, so should i presume the profile "Countries By Region" is not working even marked as "release" status ?
   lphuberdeau: it sure needs to be renamed to work
   <br> well, it's mostly if you want to reference to it
   <br> it might work alone
   luciash: <u>lphuberdeau</u>: ah, that gives sense now
   <br> <u>lphuberdeau</u>: the developer probably tested it only alone
   <br> i will rename it while on it
   lphuberdeau: <u>Merbster</u>: this worked for me
   <br> {WEBSERVICE(service=listitems params="trackerId=15")}
   <br> {{$response.trackerId}}
   <br> {WEBSERVICE}
   <br> trackerId  being in the response
   Merbster: lphuberdeau, I have registered the webservice here: tiki-admin.php?page=webservices
   <br> and then I define a template there. because I need HTML to present the data
   <br> I don't know if that makes a difference?
   lphuberdeau: you can define the plugin in the registered service too I believe
   Merbster: yes that is what I am doing
   <br> lphuberdeau, I have several input parameters though: here is how I call the webservice plugin: {WEBSERVICE(template=medarbejdsagsoverbliktpl,service=medarbejdsagsoverblik, params="brugerId=A&amp;startDato=01-01-1900 00:00:00&amp;planPerioder=4&amp;medarbejderId=A")/}
   <br> Do I have to define which template I want to use or can it figure that out by itself I have I defined a template where I registered the webservice?
   lphuberdeau: the template name should do
   ***: radek82 has joined #tikiwiki
   Merbster: I don't see the params' value anywhere in the code that handles the parameters.
   <br> like wikiplugin_webservice.php doesn't pass it to the rest of the plugin.
   lphuberdeau: I can confirm it does, because the issue I have now is with rendering, result comes back as expected
   <br> at least, in trunk
   Merbster: This is tiki 6.3 though.
   <br> i have looked at the wishlist/buglist for webservices plugin and I found no reported bugs.
   lphuberdeau: I can't help you with 6.3, too far back for me to worry about
   Merbster: So if I upgrade to 6.4 you will help me?
   ***: GillesMM has quit IRC (Remote host closed the connection)
   lphuberdeau: I don't handle 6.x
   Merbster: lphuberdeau, ok. well thanks for your help so far.
   ***: thraxisp has quit IRC (Quit: thraxisp)
   lphuberdeau: I confirm everything works as expected in trunk
   <br> only detail I hung on was that when you register a template, it uses the normal {$smarty} delimiters instead of the {{$double}} ones used from the plugin
   Merbster: I get a result from the webservice
   <br> but the parameters I try to send to the webservice doesn't go trhough
   <br> So I get a result from the webservice telling me I supplied invalid parameters for it
   lphuberdeau: try taking the webservice plugin from trunk
   Merbster: I will look at the different versions and see if I can backport the changes.
   lphuberdeau: it does not look like it changed so much, but it's likely that some parameter handling changed
   Merbster: ok.
   ***: nkoth has joined #tikiwiki
   luciash: what is the quickest way to check which rev number is the released Tiki version ? i want to svn up exactly to the revision Tiki 6.4 was released with
   lphuberdeau: switch to tags/6.4
   luciash: svn switch ?
   lphuberdeau: yes
   luciash: okie, thx
   lphuberdeau: you get tags for all releases, betas, release candidates, ... everything that gets packaged, because packaging is done from the tag
   luciash: cool
   <br> looks like it is r35711 :)
   lphuberdeau: no, that's the latest rev ;)
   ***: chibaguy has joined #tikiwiki
   <br> ChanServ sets mode: +o chibaguy
   chibaguy: polom
   jonnyb: hi chibaguy
   luciash: <u>lphuberdeau</u>: ah, anyway, thanks for the tip with switch to tags
   <br> hi chibaguy
   Merbster: lphuberdeau, Just to inform you, the params parameter is only existant in tiki 7 and forward. both tiki 6.3 and 6.4 did not have them in wikiplugin_webservices.php
   lphuberdeau: I think it used to be normal parameters
   chibaguy: hi jonnyb and luciash
   <br> and everyone
   SJ-Jay: hey chibaguy
   <br> :)
   jonnyb: polom
   chibaguy: hi SJ-Jay
   CIA-88: tikiwiki: 03sept_7 * r35712 10/branches/7.x/ (5 files in 5 dirs): (log message trimmed)
   <br> tikiwiki: [FIX] Fix WebDAV in Tiki7 backport of fixes from trunk
   <br> tikiwiki: [FIX/bp r35619 ] fix permission checking in Tikilib::get_perm_object(), it seems that the line :
   <br> tikiwiki:  $perms-&gt;setGroups($userlib-&gt;list_all_groups());
   <br> tikiwiki: is needed, it should be in the method Perms::get() I suppose but isn't for some reason...
   <br> tikiwiki: [FIX/bp r35619] Clean up the call to get_files() in WebDAV...
   <br> tikiwiki: [FIX/bp r35620] Fix WebDAV after revamp of some function in filegallib.php
   luciash: huh ? i tried to go to tiki-install.php to update my db and all i get is this → ADONewConnection: Unable to load database driver '' Invalid db object passed to TikiDB constructor
   <br> Tiki 6.4
   <br> but in db/local.php i have it commented out: #$api_tiki='adodb';
   ***: rodrigo_sampaio has joined #tikiwiki
   <br> rodrigo_sampaio1 has quit IRC (Ping timeout: 258 seconds)
   luciash: even when i delete that line it still cries about ADONewConnection ... isn't it used for ADOdb only ?
   <br> weird, it would mean nobody could install the release, nope ?
   <br> if there was a bug like this
   <br> eh, actually it works when i add the line back and uncomment
   CIA-88: tikiwiki: 03jonnybradley * r35714 10/trunk/lib/wiki-plugins/wikiplugin_dialog.php: [NEW] dialog plugin: Create a jQuery UI dialog on a page, with definable buttons and actions, and ability to use a wiki page as the dialog body. Fine tuning and more params to come.
   jonnyb: sounds odd (and bad) luciash
   luciash: i didn't know PDO uses the ADONewConnection function as well
   jonnyb: you say 6.4 only works on adodb?
   luciash: seems i am missing the pdo driver on my localhost php install
   jonnyb: oh, ok - yes, the handling for that's never been very pretty
   luciash: but the message confused me
   <br> <u>jonnyb</u>: sounds odd that i don't have pdo driver on my localhost too ;)
   jonnyb: indeed
   luciash: gosh, another one: Missing file: /home/luci/...../tiki6/lib/adodb/drivers/adodb-mysql improved (mysqli).inc.php
   jonnyb: off out - mbbl
   luciash: :-o !
   jonnyb: hmm, sounds like svn switch has messed up?
   luciash: c u jonnyb
   jonnyb: happens sometimes
   luciash: the file name sounds weird
   jonnyb: make sure you have the directory specified ./  and try adding --force
   <br> true - like something old out of the installer
   luciash: yep yep :-/
   jonnyb: caches all flushed presumably?
   luciash: ah, nope, will try
   jonnyb: try and svn st to see what's going on with that
   <br> :P
   <br> ok, off now really (wine to buy - it's France!)
   ***: jonnyb has quit IRC (Quit: jonnyb)
   luciash: sure
   <br> eh, it seems it needs when using adodb driver explicitly specified in local.php another line: $db_tiki='mysqli';
   lphuberdeau: that has always been the case
   sylvieg: I have a doubt .. in the new tracker suntax (tracker trackerId=1} without closing tracker tag, is it correct?
   -: sylvieg still using the old syntax
   lphuberdeau: {tracker trackerId=1}
   <br> yes
   sylvieg: I do not need {tracker trackerId=1}{tracker}?
   lphuberdeau: it's really like the old {img src=...}, but for all plugins
   <br> that short syntax can't have a body
   sylvieg: ok thanks
   <br> will update the doc
   ***: ricks99 has quit IRC (Remote host closed the connection)
   <br> rodrigo_sampaio1 has joined #tikiwiki
   <br> rodrigo_sampaio has quit IRC (Ping timeout: 240 seconds)
   <br> lphuberdeau has quit IRC (Ping timeout: 252 seconds)
   luciash: <u>sylvieg</u>: {tracker trackerId=1}{tracker} wouldn't work anyway. you'd need {TRACKER(trackerId=1)}{TRACKER} instead
   <br> otherwise the parsing would presume you want two tracker plugins next to each other
   ***: chibaguy has quit IRC (Quit: Find new themes for Tiki at http://themes.tikiwiki.org.)
   <br> Wilkins__ has quit IRC (Ping timeout: 260 seconds)
   <br> lphuberdeau has joined #tikiwiki
   <br> xavi has left
   <br> luciash has quit IRC (Ping timeout: 252 seconds)
   <br> lphuberdeau has quit IRC (Ping timeout: 250 seconds)
   <br> lphuberdeau has joined #tikiwiki
   <br> GillesMM has joined #tikiwiki
   <br> ricks99 has joined #tikiwiki
   ricks99: need help with a 6.x site.... Tiki is "loosing" user login status when accessing some pages via SEFULs.
   <br> for example: accessing foo.bar/tiki-index.php?page=foo works fine, but foo.bar/foo indicates "not logged in"
   <br> any ideas/suggestions?
   chealer: polom
   ***: redflo has quit IRC (Ping timeout: 264 seconds)
   CIA-88: tikiwiki: 03jean-lucnavarro * r35716 10/trunk/lang/fr/language.php: [TRA] more French translations
   chealer: <u>ricks99</u>: only some pages accessed via SEFURLs? do you have examples?
   ricks99: getting numerous, random reports from end-users. the (1) log in (2) go to a members-only page (3) click a link to another members-only page, and are no longer logged in -- prompted to login.
   <br> sometimes wiki pages from menus (when using SEFURL) also get folks "logged out"
   <br> i've temporarily disabled SEFURL, but we have lots links from external sources that use the sefurl name.
   <br> could there b an issue in my htaccess? I don't even know what to look for :(
   sylvieg: <u>ricks99</u>: can it be a www/ no www access?
   ricks99: I have the "Domain prefix handling" set to "Leave as-is". I'm starting to think it is something with htaccess or mod_rewrite. adding (or removing) the tiki-index.php?page= from the url will work
   <br> usually
   ***: lphuberdeau has quit IRC (Ping timeout: 264 seconds)
   <br> j0n3 has joined #tikiwiki
   chealer: <u>ricks99</u>: so you don't know any URL that (sometimes) causes the problem?
   ricks99: not url-specific. that i can discover. a user will log in, be clicking among pages a links. and *poof* suddently they're no longer logged in, can't access member-only content (pages, file galleris, etc.)
   <br> have even experienced myself (as admin). suddenly after a few clicks, im no longer logged in!
   chealer: <u>ricks99</u>: I understand, but you don't have an *example* URL that [sometimes] causes the problem?
   ricks99: Yes. I am logged in as admin. When I go to http://www.stc-techedit.org/tiki-index.php?page=Volunteer+Agendas+and+Minutes I see the page, as expected. However, if i change the URL to http://www.stc-techedit.org/Volunteer+Agendas+and+Minutes i am no longer logged in and Tiki displays the login box
   <br> am on the site right now
   chealer: <u>ricks99</u>: then when you hit back, you're logged in again, right?
   ricks99: yes. or if i manually change the url and reload. correct
   chealer: <u>ricks99</u>: are there pages for which that does not happen?
   ricks99: no issue for pages that are visible to anonymous
   chealer: <u>ricks99</u>: what is an example page visible to anonymous?
   ricks99: pages that are visible to anonymous dont have an issue.
   -: ricks99 hoping chealer has an idea....
   ***: redflo has joined #tikiwiki
   <br> lphuberdeau has joined #tikiwiki
   CIA-88: tikiwiki: 03lphuberdeau * r35717 10/trunk/lib/core/ (5 files in 2 dirs): [MOD] Limit synchronized fields to those that specify the required interface
   chealer: <u>ricks99</u>: but what is an example of such a page?
   ricks99: HomePage
   chealer: <u>ricks99</u>: so if you go from http://www.stc-techedit.org/tiki-index.php?page=HomePage to http://www.stc-techedit.org/HomePage you stay logged in?
   ricks99: checking...
   <br> hm... i stand corrected. I'm still logged out (just never noticed, because the page is still visible)
   <br> very strange, right?
   chealer: <u>ricks99</u>: OK. so, is there any SEFURL that keeps you logged in that you know?
   ricks99: apparently not
   Warkster: How are category permissions combined? If Category1 grants only Group1 access, and Category2 grants only Group2 access, when I apply both categories to a single object, how do those permission read?
   ricks99: @Warkster: theres another category option to specify if users need perm for *all* or only *one* Look on admin: category page (I think)
   chealer: <u>ricks99</u>: if you log in from a SEFURL, do you stay logged in when you go back to a SEFURL?
   ricks99: will check...
   Warkster: <u>ricks99</u>: Would that be in 6.3? I can't find it.
   ricks99: went to http://www.stc-techedit.org/login to log in....
   <br> .... stayed logged in for http://www.stc-techedit.org/tiki-index.php?page=Volunteer+Agendas+and+Minutes but logged out for http://www.stc-techedit.org/Volunteer+Agendas+and+Minutes
   <br> highly frustrating :(
   <br> @Warkster: believe so, but can't recall 100%
   lphuberdeau: ricks99, that option is pre-4.0
   ricks99: oh.
   sylvieg: and ricks99 if you go back to  http://www.stc-techedit.org/tiki-index.php?page=Volunteer+Agendas+and+Minutes  are you log in or out?
   Warkster: So that means that users must always qualify for all category permissions?
   chealer: <u>Warkster</u>: category permissions are additive - the union of permissions is used
   lphuberdeau: permissions between multiple categories apply as a OR
   Warkster: Roger, thanks.
   chealer: <u>ricks99</u>: do you know Firecookie or Web Developer? these allow you to see cookie information
   ricks99: using IE. but i have the dev toolbar and can view cookies
   <br> what should i be looking for?
   chealer: <u>ricks99</u>: is the problem browser-specific?
   ricks99: nope. happens in ff, too
   <br> (can't blame *everything* on MS) ;-)
   chealer: <u>ricks99</u>: you use IE as your main browser?!
   ricks99: and windows as my main OS ;-)
   <br> what can i tell you ;-P
   Jyhem: It's OK: someone has to test Tiki on IE. I, for one, appreciate your dedication :-)
   ricks99: like it or not, IE still represents a (large) portion of the market. :-)
   chealer: Marc is really a bad influence on this community
   Warkster: Is there a way to apply categories to file galleries and their children?
   -: ricks99 but then rick also likes NASCAR, so there's no telling with him ;)
   Jyhem: which is why I appreciate that someone (else than myself) uses it on Tiki :-)
   chealer: <u>ricks99</u>: I would tell you to check cookie paths, but I don't have IE on this OS. I'm more used to Web Developer
   -: Jyhem googles nascar
   ricks99: they look fine (from what I can see). domain is correct. path is /
   <br> @Jyhem: OMG!
   chealer: <u>ricks99</u>: well, could you verify that the cookies are being transmitted in the request?
   Jyhem: @ricks99 : not sure, but it does not look obviously evil
   ricks99: @chealer: hmm... i see *some* with domain www.stc-techedit.org, and *others* simply as *stc-techedit.org*
   <br> what is the cookie name tiki uses to track login session?
   Jyhem: what are the cookie paths ?
   ricks99: path is simply: /
   -: ricks99 wondering if it is server setting issue... i haven't seen this on any other sites
   Jyhem: so it matches both  http://www.stc-techedit.org/tiki-index.php?page=HomePage and http://www.stc-techedit.org/HomePage - Not an interesting investigation path
   chealer: <u>ricks99</u>: tiki-user-tikiwiki
   ***: lphuberdeau has quit IRC (Ping timeout: 252 seconds)
   sylvieg: <u>ricks99</u>: sone servers have other applications that kills the tiki sessions
   ricks99: gotta step out for a bit. if you can think of somehting for me to try/investigate, pls post
   <br> tx all
   ***: ricks99 has quit IRC (Quit: Get the best-selling Tiki books (paperback and ebook) at http://www.lulu.com/spotlight/ricks99)
   <br> Bernard1 has joined #tikiwiki
   CIA-88: tikiwiki: 03mlustenberg * r35718 10/trunk/lib/wiki-plugins/wikiplugin_wysiwyg.php: [FIX] plugin WYSIWYG: raw HTML when using wiki editor
   ***: lphuberdeau has joined #tikiwiki
   <br> Bernard1 has quit IRC (Quit: Leaving.)
   CIA-88: tikiwiki: 03lphuberdeau * r35719 10/trunk/lib/core/Tracker/Field/Rating.php: [FIX] Mix indent, trailing spaces
   <br> tikiwiki: 03lphuberdeau * r35720 10/trunk/lib/core/Tracker/Field/ (11 files): [MOD] Adding Synchronizable to all fields where the value is context-independent
   ***: thraxisp has joined #tikiwiki
   Warkster: Is there a way to modify the category on multiple objects at once?
   ***: radek82 has quit IRC (Quit: Leaving)
   CIA-88: tikiwiki: 03lphuberdeau * r35721 10/trunk/ (3 files in 3 dirs): [ENH] UI enhancements to better explain what is going on and hide controls when they cannot be used
   lphuberdeau: in Tiki7, check out tiki-edit_categories.php
   Warkster: <u>lphuberdeau</u>: Thanks, we have 6.3 right now, might upgrade just for that.
   ***: coaboa has quit IRC (Ping timeout: 255 seconds)
   CIA-88: tikiwiki: 03robertplummer * r35722 10/trunk/ (10 files in 8 dirs): (log message trimmed)
   <br> tikiwiki: [MOD] Renamed flexibleCodeMirror to flexibleSyntaxHighlighter
   <br> tikiwiki: [NEW] Created new object for codemirror calls: "syntaxHighlighter" since new coders may not know what codemirror is and since it fulfills a purpose
   <br> tikiwiki: [NEW] Moved anything to do with codemirror into syntaxHighlighter fo easy api replacement and modification
   <br> tikiwiki: [FIX] A bunch of code cleanup in codemirror_tiki.js
   <br> tikiwiki: [MOD] Renamed the tiki highlighter to tikiwiki
   <br> tikiwiki: [FIX] Fixed a few UI issues with codemirror integration, font is still acting funning
   Tiki|bot: New Forum Posts: Repair Tikiwiki - http://tiki.org/tiki-view_forum_thread.php?forumId=4&amp;comments_parentId=41882
   Warkster: <u>lphuberdeau</u>: hmm, it seems that the "Organize Categories" doesn't work
   <br> "Select All/Unselect All" doesn't seem to work, nor do the documented "+/-" display after selecting sub pages
   <br> *specific categories
   ***: nkoth has quit IRC (Quit: nkoth)
   <br> lphuberdeau has quit IRC (Ping timeout: 240 seconds)
   CIA-88: tikiwiki: 03chealer * r35724 10/trunk/lib/init/tra.php: tra_impl(): remove unused argument no_interactive
   ***: ybbob4269 has joined #tikiwiki
   ybbob4269: hey guys
   <br> Im new to tiki and am a little lost, didn't know if anyone could help with somthing that im sure is a simple task
   ***: Tiki|bot has quit IRC (Ping timeout: 258 seconds)
   <br> Tiki|bot has joined #tikiwiki
   <br> nkoth has joined #tikiwiki
   Spark: is there a way to search for dead links to pages or images?
   ***: j0n3 has quit IRC (Quit: j0n3)