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

WhoWhatWhen
***wookienz has joined #tikiwiki [00:02]
luminoso has quit IRC (Connection timed out) [00:08]
............. (idle for 1h1mn)
marclaporte has joined #tikiwiki
Kissaki is now known as Kissaki^0ff
[01:09]
luciashpolom polom from late night Barcelona :) [01:13]
***rux__ has joined #tikiwiki [01:13]
rux__hi everybody
any italian here ?
i'm looking for an adjurned language file
[01:13]
marclaporteup to date? [01:15]
rux__yes
the official one is of 2004
http://tikiwiki.org/LanguageItalian For Tikiwiki (version): 1.9 rc3 (CVS)
i suppose others have my same problem
[01:15]
rux_then i have also another question about drop down menu
http://www.reteviva.org
[01:18]
luciashrux_: it's easy to update the language.php file and contribute back ;) [01:19]
rux_unless i removed some functions they still appear in the upper menu and i wonder how to remove them... [01:19]
***SEWilco2 has quit IRC ("Leaving.") [01:19]
rux_I know is easy but if someone has already done it is unesefulll ;) [01:20]
luciashyep, i don't know any italian user actually [01:20]
rux_: disable top menu on Admin > Look and Feel ? [01:30]
rux_yes it was
thank's
[01:33]
***franck has quit IRC ()
Caarrie|away is now known as Caarrie
[01:43]
marclaporterux_: latest language file is the one in source (not on wiki page) [01:53]
***SEWilco2 has joined #tikiwiki [01:56]
CIA-57tikiwiki: 03sylvieg * r20434 10/trunk/ (4 files in 4 dirs): [MOD]newsletter: new perm tiki_p_list_newsletters [02:09]
***franck has joined #tikiwiki [02:10]
CIA-57tikiwiki: 03sylvieg * r20435 10/trunk/db/ (6 files): sync [02:11]
tikiwiki: 03sylvieg * r20436 10/trunk/installer/schema/20090730_p_list_newsletters_tiki.sql: typo [02:23]
***franck_ has joined #tikiwiki
franck_ has quit IRC (Remote closed the connection)
franck_ has joined #tikiwiki
franck has quit IRC (Read error: 104 (Connection reset by peer))
[02:26]
.... (idle for 15mn)
luminoso has joined #tikiwiki [02:42]
.......... (idle for 47mn)
Tikiwiki|botInfo: Follow @TikiWiki_org on Twitter - http://info.tikiwiki.org/tiki-read_article.php?articleId=69 [03:29]
....... (idle for 31mn)
***eric91 has joined #tikiwiki [04:00]
eric91 has quit IRC ("Page closed") [04:10]
Caarrie is now known as Caarrie|sleeping [04:23]
...... (idle for 25mn)
marclaporte has quit IRC (Read error: 110 (Connection timed out)) [04:48]
......... (idle for 43mn)
MartinCleaver has joined #tikiwiki
franck_ has quit IRC ()
[05:31]
franck has joined #tikiwiki [05:42]
...... (idle for 26mn)
MartinCleaver has quit IRC () [06:08]
...... (idle for 27mn)
wookienzcan someone with more knowledge than me advise on this. It would appear this ismy bug - http://dev.tikiwiki.org/tiki-view_tracker_item.php?itemId=2467&trackerId=5&show=view
which says there is a patch to userslib.php adn is documented here: http://tikiwiki.svn.sourceforge.net/viewvc/tikiwiki/branches/proposed/lib/userslib.php?r1=19222&r2=19413
can i go and change this by itself or is a whoe new downlaod required/
[06:35]
.... (idle for 18mn)
ANYONE ON LINE THAT CAN DO SOME MYSQL cli TROUBLESHOOTIGN FOR ME
?
opps sorry about that
[06:54]
...... (idle for 29mn)
must be sleeping! [07:23]
................... (idle for 1h34mn)
***rlopez_ has joined #tikiwiki
rlopez_ has quit IRC (Client Quit)
[08:57]
..... (idle for 23mn)
Natrhon has joined #tikiwiki
luminoso has quit IRC ("Leaving")
[09:20]
NatrhonGreetings everyone. I'm very new to twiki and I'm trying my first steps into it. I have figured out how to do an SQl query, all working, except the simpliest one...
how can I do a "SELECT *" query?
I need all the fields of all the rows on a table...
[09:23]
***Wilkins has joined #tikiwiki [09:25]
wookienzyou logged into the CLI?
SELECT * FROM tablename
[09:33]
Natrhon$query = "SELECT * FROM `gains_facilities` ORDER BY `facilityID` DESC";
$result = $this->query($query);
this will give an error
[09:37]
"SELECT * FROM `gains_facilities` WHERE `owner` = ?"
$values[] = "someone"
$result = $this->query($query,$values);
this work perfectly...
[09:45]
....... (idle for 34mn)
***floh1111 has joined #tikiwiki
Wilkins has quit IRC (farmer.freenode.net irc.freenode.net)
[10:20]
Wilkins has joined #tikiwiki [10:28]
..... (idle for 21mn)
Natrhonis there someone who can answer my question ? :D [10:49]
....... (idle for 32mn)
wookienzthere is a question in there?
-? +!
[11:21]
NatrhonI am able to invoke the query function with
"SELECT * FROM `gains_facilities` WHERE `owner` = ?"
[11:23]
***marclaporte has joined #tikiwiki [11:23]
Natrhon$values[] = "someone";
$result = $this->query($query,$values);
this works
why this cannot work? :
$query = "SELECT * FROM `gains_facilities` ORDER BY `facilityID` DESC";
?
I need to select all the rows of a table
[11:23]
***Lucymoz has quit IRC (Read error: 110 (Connection timed out))
Floh1111_ has joined #tikiwiki
[11:25]
CIA-57tikiwiki: 03lphuberdeau * r20437 10/branches/experimental/perms-take2/ (61 files in 28 dirs): [MRG] Automatic merge, trunk 20387 to 20436 [11:36]
.... (idle for 15mn)
***lphuberdeau has joined #tikiwiki [11:51]
wookienzSELECT * FROM tablename will give you all row
s
but you want it ordered/
?
[11:55]
Natrhonno at the moment, but if I make $query="SELECT * FROM tablename" and then $result=$this->query($query);
it gives me an error message
I've tried many combinations, and the ordered oone above was one of them...
[12:02]
wookienzhmm well beats me should work. [12:05]
Natrhonwell, I don't really know where I was mistaking... now it works... a typo by me probably... sorry for bothering... :) my fault [12:12]
another totally different problem. The javascript popup on my tiki is showing almost on the bottom of the page... where can I set the Y offset? thanks [12:19]
....... (idle for 31mn)
***rlopez_ has joined #tikiwiki
rlopez_ has quit IRC (Client Quit)
[12:50]
luciashpolom polom [12:57]
***Caarrie|sleeping is now known as Caarrie [12:57]
.......... (idle for 48mn)
marclaporte has quit IRC (Read error: 110 (Connection timed out)) [13:45]
.... (idle for 17mn)
MartinCleaver has joined #tikiwiki [14:02]
lphuberdeau has quit IRC (Read error: 110 (Connection timed out))
rux_ has quit IRC (Ping timeout: 180 seconds)
rux__ has quit IRC (Ping timeout: 180 seconds)
[14:13]
Floh1111_Where can I find some documentation about trees (filegallerie tree)? I have link_var and link_id, but now I neet to define a link ahead link_var and link_id [14:21]
***Natrhon has left [14:25]
MacLeod has joined #tikiwiki
lphuberdeau1 has joined #tikiwiki
chealer has joined #tikiwiki
MartinCleaver has quit IRC ()
franck has quit IRC (Read error: 113 (No route to host))
ricks99 has joined #tikiwiki
[14:32]
nkoth3 has joined #tikiwiki
chealer_ has joined #tikiwiki
[14:50]
CIA-57tikiwiki: 03floh1111 * r20438 10/trunk/ (3 files in 3 dirs): removed code duplication on file_galleries module and fixed issues with prefs [14:57]
***lphuberdeau1 has quit IRC (Read error: 110 (Connection timed out))
chealer has quit IRC (Read error: 110 (Connection timed out))
chealer_ is now known as chealer
Caarrie is now known as Caarrie|away
[15:01]
ricks99anyone know... when including one wiki page inside another (with INCLUDE plugin, will tiki combine the categories together when displaying catpath? [15:16]
***lphuberdeau has joined #tikiwiki [15:16]
ricks99hm... i guess not [15:17]
sylviegno
but the perm will be checked
[15:29]
CIA-57tikiwiki: 03sylvieg * r20439 10/trunk/templates/tiki-admin-include-wysiwyg.tpl: [FIX]layout: enlarge the textarea [15:30]
ricks99right but tiki will only show the "main"page's cateogory in the catpath [15:41]
***pascalstjean has joined #tikiwiki [15:50]
wookienzricks99: still around? [15:57]
ricks99yup [15:58]
wookienzhiya, i see you name throughout variouis places on tikiwiki project so i assume yo uare in the know!
i am getting a db error whn i try amd make per page "perms" similar to this - http://dev.tikiwiki.org/tiki-view_tracker_item.php?itemId=2467&trackerId=5&show=view
and there is a patch here: http://tikiwiki.svn.sourceforge.net/viewvc/tikiwiki/branches/proposed/lib/userslib.php?r1=19222&r2=19413
can i just apply the code changes by editing it by hand that particular file? I read from other places that it might be a function of mysql mode being "strict". Got any insight into this?
[15:59]
ricks99sorry, i don't. what is ur mysql version?
fwiw, i haven't had issues creating groups in my 3.x tikis
[16:01]
wookienz5.2.8 [16:02]
***Caarrie|away is now known as Caarrie [16:02]
ricks99not sure. bug says fixed in 3.1? [16:02]
wookienzi dont have root access, im relying on some other turkeys setting it up right. so they might have screwed up install.
yeah similar bug - ie there is an error but it iwhen i use the "perms" function
[16:02]
ricks99is this a new install? or upgrade from 2.x? [16:03]
wookienzi think an upgrade from 2.x - here is the error
http://pastey.net/119283
[16:04]
ricks99and there were no errors during the upgrade sql, right? [16:05]
wookienzwell thats what i dont know. [16:05]
ricks99i'm not much help on this, sorry [16:06]
wookienzsomeone else upgraded it... can i do a db update or the like? [16:06]
ricks99rerun the tiki-install.php and re-update the db, if needed [16:06]
sylviegif you have a phpMyadmin - we can know more about the error [16:07]
ricks99sylvieg can probably help more than i can [16:07]
sylviegit can be eitheir your table need to be repear .. or the perm exists already [16:07]
wookienzwill an
update" wipe the databse?
[16:08]
sylviegsylvieg needs to fix why the error message does not show up anymore [16:08]
wookienzphpmyadmin isnt installed so i can run it manually [16:08]
sylviegyeh run the same query manually to see the error [16:09]
wookienzi wish icould...but cant.
does running install.php jut re run and correct db options or does it start again, ie wipe DB?
[16:09]
ricks99running the upgrade shouldn't mess with your data -- only table structure [16:10]
wookienzok [16:10]
ricks99make sure you select UPGRADE and not INSTALL (which *will* wipe your data) [16:11]
wookienzok great...
got to run!
[16:11]
***wookienz has quit IRC ("ChatZilla 0.9.85 [Firefox 3.5.1/20090715094852]") [16:14]
CIA-57tikiwiki: 03sylvieg * r20440 10/trunk/ (2 files in 2 dirs): [MOD]newsletter: can use the wysiwyg editor [16:18]
***ricks99 has quit IRC (Read error: 104 (Connection reset by peer))
rlopez_ has joined #tikiwiki
[16:18]
MacLeodWhat tools do y'all use to probe and edit the MySQL database directly? [16:29]
Landoni use Mysql Administrator and Mysql Query Browser [16:31]
***pascalstjean has quit IRC (Read error: 104 (Connection reset by peer)) [14:28]
MacLeodLandon: thx [14:29]
***rlopez_ has quit IRC ("Leaving")
Floh1111_ has quit IRC (Remote closed the connection)
[14:31]
SEWilco2 has quit IRC ("Leaving.")
Kissaki^0ff is now known as Kissaki
[14:40]
xavi1 has joined #tikiwiki [14:52]
xavi1toctoc... [14:53]
Kissakitoc [14:54]
xavi1trying the last minute (hour, in fact) things for the kick off meeting at the http://tikiwiki.org/TikiFestBarcelona
video streaming is on, already, even if not good audio yet :-/
[14:55]
Kissakiohoo [15:00]
xavi1kissaki marc here are you coming
bring a mattress
[15:04]
Kissaki^^ no
pretty far away here, in Germany...
[15:05]
***marclaporte has joined #tikiwiki
MacLeod has quit IRC (Ping timeout: 180 seconds)
Wilkins has quit IRC (Remote closed the connection)
[15:06]
marclaportepolom
marclaporte is no longer squatting xavi1's computer
Kissaki: Europeans don't know what "far" means!
ask Russians or Canadians :-)
[15:07]
idle-marclaporte: yes driving 6 hours for going out to lunch isn't that possible with 1,40 euros per liter gas. [15:09]
Kissaki^^
true
esp. me
(doesn't know what far is)
*means
[15:09]
sylviegsound good for me [15:10]
***pascalstjean has joined #tikiwiki [15:12]
Caarrie is now known as Caarrie|away [15:17]
matwho has joined #tikiwiki [15:29]
matwhohi from Portugal [15:29]
***MatWho_ has joined #tikiwiki
matwho has left
MatWho_ has quit IRC (Client Quit)
SEWilco2 has joined #tikiwiki
xavi1 has quit IRC (Read error: 104 (Connection reset by peer))
chealer has quit IRC (Read error: 104 (Connection reset by peer))
lphuberdeau has quit IRC (Read error: 104 (Connection reset by peer))
marclaporte has quit IRC (Read error: 104 (Connection reset by peer))
chealer has joined #tikiwiki
marclaporte has joined #tikiwiki
[15:31]
shawn-ffbh has joined #tikiwiki
marclaporte has quit IRC (Read error: 104 (Connection reset by peer))
shawn-ffbh has quit IRC (Client Quit)
shawn-ffbh has joined #tikiwiki
lphuberdeau has joined #tikiwiki
xavi has joined #tikiwiki
[15:53]
tobi_hpolom :)
could it be that the video is stuck?
[15:58]
***Caarrie|away is now known as Caarrie [15:59]
tobi_hsound works - good horn outside... ;) [15:59]
nkoth3same observation - sound good, video stuck [16:00]
***rodrigo_sampaio has joined #tikiwiki [16:00]
nkoth3I need food, back soon :) [16:01]
tobi_h;)
xavi: assuming you are at the place of the meeting - can you do anything about the video?
oh well - bbl...
[16:01]
***tobi_h is now known as tobi_h|away
rlopez_ has joined #tikiwiki
[16:04]
chealertobi_h|away: it's stuck, indeed
tobi_h|away: we're still working on streaming. there are a few issues.
[16:15]
***rlopez_ has quit IRC ("Leaving") [16:24]
.... (idle for 17mn)
xavimmmm, still fighting with the audio and video, but things seem to improve...
soon, we should have somme stream on, live...
let's cross fingers :-)
stay tuned :-)
[16:41]
nkoth3k [16:42]
CIA-57tikiwiki: 03chealer * r20441 10/trunk/lib/modules/modlib.php: [FIX] array_fill_keys typo [16:42]
***pascalstjean has quit IRC (Read error: 104 (Connection reset by peer)) [16:53]
lphuberdeau has quit IRC (Read error: 104 (Connection reset by peer))
xavi has quit IRC (Read error: 104 (Connection reset by peer))
lphuberdeau1 has joined #tikiwiki
rodrigo_sampaio1 has joined #tikiwiki
cheal has joined #tikiwiki
[17:00]
rodrigo_sampaio has quit IRC (Read error: 104 (Connection reset by peer))
chealer has quit IRC (Read error: 104 (Connection reset by peer))
[17:08]
xavi has joined #tikiwiki [17:17]
xavihello again
we are starting now, with or without streaming
[17:17]
nkoth3k [17:18]
***Redhatter has quit IRC (Read error: 113 (No route to host)) [17:18]
nkoth3streaming works for me [17:18]
xaviand audio, nkoth?
nkoth3: ^
[17:19]
nkoth3seems ok, say somethig
i hear a lot of background talking (can't make out the words)
yes
[17:20]
xaviyes, that's the problem
but we start anyway
[17:20]
***MacLeod has joined #tikiwiki [17:21]
xaviwe couldn't plug the good mattbic mic on a powerful computer in time
so we start without it
[17:21]
nkoth3ah, i see [17:21]
xavithe sound is bad (my own old webcam) on my old laptop, but at least we can have some video out
and if nobody is able to have the audio from mattbic working, fine. else we have some video at least
[17:21]
chealSEWilco2: it was indeed a comments bug (2611) [17:22]
xaviand some off line good video and audio recording also [17:22]
***jonnyb has joined #tikiwiki [17:28]
jonnyb has quit IRC () [17:40]
..... (idle for 23mn)
sylviegI do not see how perspectives can work only on prefs and not on categ and groups too...
ok if it is freedom
[18:03]
nkoth3if you stand in front of the camera (whoever is it), it blocks LP and also messes up the auto-aperture light detection of the webcam :) [18:04]
sylviegxavi move a little bit [18:05]
nkoth3why not put the white board at the other end of the room, xavi? [18:05]
SEWilco2cheal: Bug not found. http://dev.tikiwiki.org/tiki-searchresults.php?highlight=2611&search=Go [18:10]
Where is the link to streaming? TW.o directs one to a nonexistent anchor in the URL http://tikiwiki.org/TikiFest+Workspaces+and+Social+Networking#Video_streaming_chat_twitter_about_the_event
Oh, there it is. Streaming is above the table of contents, in a section which has to be expanded to be visible.
Inaudible. Stream is only useful for images of a white shirt and action shots of a fan.
[18:23]
sylvieg+1 for xavi move [18:30]
xavi:-)
it took a while to able to come to my computer (out of the room), and read the irc messages
[18:34]
nkoth3SEWilco2: mic quality is a known issue (matbic's high quality mic not working with this pc) Bu I can make out the audio when I tuen it up [18:35]
xavianyway, you can't read the whiteboard
I wish that somebody else was able to have better video and audioi in time in the room, but it was not the case...
[18:35]
SEWilco2nkothen3: You have a more powerful audio amp than I do. Inaudible with my laptop at full volume. In a few hours I can plug it into two amps and headphones. Maybe it will work when I turn it up to 20. [18:37]
xaviyou'll probably have to wait for the videos uploaded (from separated and better camera) to get better audio and image quality [18:37]
SEWilco2Separated cameras? 3D TikiFest? :-) [18:38]
xaviand without my the back of my t-shirt in front [18:38]
***Caarrie is now known as Caarrie|away [18:38]
xaviIt was not planed to be done like this... [18:38]
SEWilco2Yes, I see there is no plane. [18:38]
xavibut the palns didn't work as expexcted, unluckily [18:38]
SEWilco2Wait, I can sketch a plane on the shirt.
My sketching skills are good enough to make a plane with a Samantha Carter in it.
[18:38]
***MacLeod has quit IRC (Ping timeout: 180 seconds)
RLJII has quit IRC ("Page closed")
[18:49]
Kissakimömömömöp [18:56]
.... (idle for 16mn)
sylviegI made a test on my local trunk versus perms-take2
list pages : trunK [ Temps d'exécution: 1.00 secs ]   [ Mémoire utilisée: 27.73MB ]   [ 736 requête à la base de données utilisés dans 0.3 secs ]   [ Charge du serveur: 0.65 ]
perms [ Execution time: 1.18 secs ]   [ Memory usage: 22.27MB ]   [ 749 database queries used in 0.2 secs ]   [ Server load: 0.37 ]
[19:12]
Tikiwiki|botNew Forum Posts: How do I? Remove the "Homepage" title from my homepage? - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=&comments_parentId=34172
New Forum Posts: How do I? Change the Upper Banner - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=&comments_parentId=34171
[19:13]
***Bandari has joined #tikiwiki [19:14]
Bandarihello guys
I have a problem with tikiwiki installations - I would appreciate your help
Here is my problem:
Profiles are not showing right after the DB configuration
I have finished installation with defult profile installation.
[19:14]
***rodrigo_sampaio1 has quit IRC ("Leaving.") [19:16]
sylvieg1/ do you have a connection with internet 2/in you have fedora - you nee to reboot the server in you have some DNS config... [19:17]
BandariUsing Admin (tikiwiki's) console - I tried creating profiles. - no success. [19:17]
sylviegloui philippe? in whick list something did you imopletement your fetchall I think... the global perms check? [19:17]
BandariYes - I do have internet
my system got connected to internet -
I am on windows environment.
Please do suggest me - where I went wrong?
[19:17]
sylviegsorry windows no idea..... [19:19]
nkoth3what do you mean "not showing"? [19:19]
sylviegin my acse it is a system bug - it took me months to find it out.. [19:19]
Bandarilist of profiles are not showing [19:19]
sylviegyou need to have the getsocket function working [19:19]
nkoth3firewall? (wild guess) [19:20]
Bandarigetsocket function - means?
no firewalls
I can browse internet from the same system
[19:20]
sylviegit does not prove anything - a browser is not like a server [19:21]
chealsylvieg: lph doesn't understaned your question [19:21]
sylvieghe did some query - where all the perms are checked on all the objects of a list
right?
[19:22]
Bandari(Total 2 system - I have installed - one with proxy setup and other one no proxy) in another system - I have a proxy setup - tikiwiki admin console (enabled the proxy setup too) but no success.
yes
[19:22]
chealsylvieg: he says yes [19:22]
sylviegin which list did he implement that?
list_pages?
[19:22]
Bandariprofiles [19:23]
chealgrep for Perms::filter [19:23]
sylviegthx cheal [19:23]
chealsylvieg: yeah, that was all from lph [19:23]
BandariKindly suggest me [19:24]
sylviegBandari: did you get to admin->profiles ... is it working there? [19:25]
BandariAdmin -> Profiles - page came [19:25]
***MartinCleaver has joined #tikiwiki [19:25]
sylviegso it is only a problem in the installer? [19:25]
Bandariand trying to install profile...it is not showing the profiles listed
repository = http://profiles.tikiwiki.org/profiles
My tikiwiki installation is unable to pick the profiles from the repository
I have another clarification - LDAP integration with tikiwiki - I have explored every link in admin console of tikiwiki - I haven't find - Please do suggest me.
[19:26]
sylviegtiki-admin.php?page=login [19:29]
***FrankP_german has joined #tikiwiki [19:29]
BandariPlease help me on profiles [19:38]
xavifinished for today
at the tikifest
people went for food
we'll upload some pictures from today, and go also
[19:38]
BandariRepository URLs:http://profiles.tikiwiki.org/profiles [19:38]
xaviwe hope that during the weekend we can solve the issues with the audio and video [19:39]
sylviegBandari: I am pretty sure it is a problem with your system [19:40]
***floh1111 has quit IRC (Remote closed the connection) [19:42]
BandariPlease do suggest me - which areas I have to look / check [19:42]
sylviegBandari: is a simple progrm like $url = 'http://profiles.tikiwiki.org/profiles';var_dump(file_get_contents( $url )); [19:44]
Bandarido you want me to check this url? [19:47]
sylviegcan you do a php program that checks this?
need to check also if in your php.ini there is allow_url_fopen on too (if I remember well the var name)
[19:47]
Bandarilet me try [19:49]
***xavi has left [19:55]
BandariWarning: file_get_contents(http://profiles.tikiwiki.org/profiles): failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:websitestikiwikitest-connection.php on line 3 bool(false)
Hello <sylvieg> : here is the error
Warning: file_get_contents(http://profiles.tikiwiki.org/profiles): failed to open stream: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. in C:websitestikiwikitest-connection.php on line 3 bool(false)
allow_url_fopen = On -- in my php.in file
do we require any configurations with php for proxy authentication?
[19:58]
sylviegSo you have to fix this problem to have tikiwiki working ... for me it is reboot my server for your windows ... no idea... [20:03]
BandariThank you so much 'sylvieg' - Please let me know if you have any suggestions...here is my email address - bandari.kumar@gmail.com [20:09]
***Lucymoz has joined #tikiwiki
MatWho has joined #tikiwiki
[20:21]
MatWhoHow is Barcelona? [20:26]
***Bandari has quit IRC ("Page closed") [20:32]
CIA-57tikiwiki: 03kissaki * r20442 10/trunk/db/tiki.sql: add `s to CREATE TABLE and DROP TABLE statements [20:40]
Kissakiwth [20:45]
***FrankP_german has quit IRC ("Nettalk6 - www.ntalk.de") [20:48]
Kissakisvn is so damn fucking slow...
hahaha
sylvieg?
uh, he's in this chan, nice!
sylvieg: are you familiar with primary keys in dbs and it was just an oversight?
[20:48]
***arrowsama has joined #tikiwiki
arrowsama has quit IRC (Client Quit)
[20:56]
CIA-57tikiwiki: 03kissaki * r20443 10/trunk/db/tiki.sql: [FIX] rev 20434 did specify a primary key twice in a table [21:00]
***cheal has quit IRC (Read error: 110 (Connection timed out)) [21:02]
MartinCleaver_ has joined #tikiwiki [21:10]
MartinCleaver_ has quit IRC () [21:16]
CIA-57tikiwiki: 03kissaki * r20444 10/trunk/db/tiki.sql: quote table names in PRIMARY KEY definitions with ` [21:27]
***MartinCleaver has quit IRC (Read error: 110 (Connection timed out))
Redhatter has joined #tikiwiki
nkoth3 has quit IRC ()
danopia` has joined #tikiwiki
MatWho has quit IRC ()
[21:27]
danopia has quit IRC (Network is unreachable)
danopia has joined #tikiwiki
[21:39]
sylviegeuh.. primary key is for unicity [21:43]
SEWilco2uniqueness? [21:44]
sylviegKissaki: not to put the `` was a choice at thebeginning as everybody was forgetting... [21:44]
***idle- has quit IRC (Remote closed the connection) [21:44]
Kissakiis there a reason for that? [21:45]
sylviegSEWilco2: perhaps.. my ENglish is bad [21:45]
***idle- has joined #tikiwiki [21:45]
SEWilco2Actually, it is English that is bad. :-) [21:45]
Kissakisylvieg: in your last commit you used an already in use pk, I changed it [21:45]
sylviegthx Kissaki (I am always bad in commit db because I test by copy . paste ) [21:46]
Kissaki:)
I just tested my changed sql script and became an error... so I wondered
and found there was another commit :P
[21:46]
sylviegso primary key ... I suppose it is to be sure thatn unique row that should have been test in php is really unique [21:47]
Kissakiprimary key = unique + index (key in mysql terms as well)
well, using a unique key you don't even have to check for uniqieness in php... that's one of the good things. But normally you INSERT without specifying a primary key anyway, and let the db handle it...
[21:47]
***danopia` has quit IRC (Connection timed out) [21:48]
Kissakisomehow my local phpmyadmin is fucked up now...
shit
[21:49]
***danopia` has joined #tikiwiki [21:50]
sylviegKissaki: but we do not want to see a db error - because not friendly + security [21:51]
Kissakiyeah, that's why you don't insert with pk anyway... and probably you/tiki doesn't even now :)
(outside that sql script)
[21:51]
sylviegbut is primary key more efficient than other index? [21:53]
***danopia has quit IRC (Network is unreachable) [21:58]
sylviegfor me it makes sense to use primary key for id ... and to use index for others - but I am not an expert [22:01]
CIA-57tikiwiki: 03lphuberdeau * r20445 10/branches/experimental/perms-take2/ (33 files in 20 dirs): [MRG] Automatic merge, trunk 20436 to 20444 [22:10]
***cheal has joined #tikiwiki [22:12]
sylvieglph: can you activate the php error - I have the notice lib/core/Perms.php lien 157 undefined index permName .... very often
I have also a list_pages as anonymous Input Array does not match ?: SELECT categId, itemId FROM tiki_category_objects INNER JOIN tiki_objects ON catObjectId = objectId WHERE type = 'wiki page' AND itemId IN( ':/
[22:19]
lphuberdeau1hum... permName is not anywhere in that file [22:23]
sylviegit is 2 notice for each page
sylvieg goes in the trace (since I have xdebug :-))
[22:25]
luciashpolom :)
sylvieg: congrats ! :)
[22:27]
CIA-57tikiwiki: 03lphuberdeau * r20446 10/branches/experimental/perms-take2/lib/tikilib.php: [FIX] Typo [22:27]
sylviegsylvieg still has to setup the debugger but trace and profiling are great [22:27]
lphuberdeau1should be fixed [22:27]
sylviegsylvieg looking for this since 20mn and lph arrives .. 2 secs ... thx
working thx lphuberdeau1 :-)
[22:28]
Kissakisylvieg: there's no difference between primary key and index, index-wise [22:31]
sylviegbut speed in a search? [22:31]
Kissakino
pk = index + unique
[22:31]
sylviegsearching only for one can be faster than searching for n of the same kind.. no? [22:32]
lphuberdeau1the theory says the primary key is the physical ordering [22:32]
Kissakithat may depend on database engine, but shouldn't really make a difference [22:32]
lphuberdeau1also impacts the default ordering [22:33]
sylviegyour point Kissaki - was to change primary key to index? [22:34]
Kissakino ^^
that would really make no sense
[22:34]
sylviegit was only because I ... 3 letter one of my commit - and you wanted to tease me ? :-)
sylvieg needs to refresh database theory
[22:35]
Kissaki^^
well, I just wanted to check if you did not know what to do or just oversaw it
and all that came after that... was some talking...
[22:38]
sylvieg:-) [22:39]
lphuberdeau1: I understood the problem I have a pagename with a ' and it is not somewehre in buulk [22:44]
***SEWilco2 has quit IRC ("Leaving.") [22:44]
KissakiI destroyed my local mysql :( [22:44]
sylvieglph soory [22:44]
lphuberdeau1hmm... escaping should have been done
' in page name should not cause problems
[22:44]
sylviegno I was wrong
yes I was wrong
this is the messy query http://pastey.net/119316
[22:44]
CIA-57tikiwiki: 03kissaki * r20448 10/trunk/db/tiki.sql: column-quotes on keys [22:54]
***Lucymoz has quit IRC (Read error: 110 (Connection timed out)) [22:56]
CIA-57tikiwiki: 03kissaki * r20449 10/trunk/db/ (4 files): converted scripts [22:57]
sylviegalmost got it lphuberdeau1 I have a pagename with a ? and the $db->in does not escape ?
it is why we have bindvars...
[23:00]
lphuberdeau1ultimately, ? is not part of sql [23:01]
sylviegthe query in bulkLoadCategories
one page name with ? and ...
[23:01]
lphuberdeau1little too late to fix this, but send me a reminder email [23:02]
sylviegok [23:02]
lphuberdeau1(late as in 1 AM) [23:02]
sylvieggood night - thx for the help
sylvieg thinks we should have a video - would like to see all the beds in a small plce and hot weather...
[23:02]
***marclaporte has joined #tikiwiki [23:10]
marclaportepolom [23:12]
luciashgood night all [23:18]
CIA-57tikiwiki: 03kissaki * r20450 10/trunk/db/ (6 files in 2 dirs): updated pgsql convert script [23:24]
***MartinCleaver has joined #tikiwiki [23:26]
marclaporteKissaki: : ping
Kissaki: you seem to be progressing really well on tiki.sql did you have any thought yet on the upgrade scripts?
[23:28]
Kissakiyo
yes
I'm doing that on tiki.sql especially to ease conversion :)
seems good right now, I'm currently on indices
[23:29]
marclaporteI am ready to test on http://demo.tikiwiki.org/postgresql/tiki-install.php as soon as you say so [23:30]
chealKissaki: marclaporte is one of the dev.tw.o admins [23:34]
***cheal is now known as chealer [23:34]
Kissaki:)
how did you know I wanted to ask him?
(in qry)
[23:36]
marclaporteso....
Registered users can't edit tracker items on dev.tw.o
[23:39]
Kissaki:)
not all
[23:40]
marclaporteIs this a feature or a bug? [23:40]
Kissakias I said, those having ppl associated by "submitted by", I can't edit [23:40]
marclaportebut you can comment? [23:40]
Kissakiyes
wrote about that some days ago here... hmm
wait, I'll get you 2 items
[23:41]
chealerKissaki: I saw your public query in logs [23:41]
Kissakimy what? [23:41]
chealerKissaki: when you asked in public [23:42]
Kissakiwhat? when?
you mean about that?
now my ff crashed...
[23:42]
chealerKissaki: yes [23:42]
Kissakiare you admin as well? [23:42]
chealerKissaki: no [23:43]
KissakioO
http://dev.tikiwiki.org/tiki-view_tracker.php?trackerId=5&status=o&sort_mode=f_41_desc&filterfield=54&&&&&&filtervalue[56]=Accepted&&offset=1300
[23:44]
marclaportemarclaporte just made chealer Admin on tikiwiki.org and dev.tw.o [23:44]
Kissakihaha
oO
so he lied to me!
this I can't edit: http://dev.tikiwiki.org/tiki-view_tracker_item.php?itemId=2559
[23:44]
chealermarclaporte: I guess it's a bad idea to grant everyone the permission to edit trackers as there's no history. in theory anyway, for security.
Kissaki: sorry about that, I can't control marclaporte
[23:45]
marclaportechealer: : perhaps kissaki can be added to dev group? [23:45]
Kissakitracker definitely needs a rework... [23:46]
***SEWilco2 has joined #tikiwiki [23:48]
Kissakihe doesn't want me :) [23:53]
chealerKissaki: you're now in the Developers group [23:53]
Kissakioh, thank you :)
what changes for me?
is that on dev.tw.o?
[23:53]
chealerKissaki: you should be able to edit trackers [23:53]
Kissakik [23:53]
chealerKissaki: it applies on dev.tw.o, yes [23:53]
Kissakiso, do we use open/pending/closed?
or just resolution status?
[23:57]
chealerKissaki: both [23:58]
Kissakihm
why not hide status then? ^^
and just use resolution status
[23:59]

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