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

WhoWhatWhen
CIA-59tikiwiki: 03rlpowell * r26715 10/trunk/templates/tiki-print_pages.tpl: GET is much better, because then the URL can be used. [00:29]
***franck has joined #tikiwiki [00:39]
Caarrie|away is now known as Caarrie
baisong has joined #tikiwiki
[00:47]
chealerDatabase Version Problem reported on profiles.tw.o
meh, Tiki version: Last update from SVN (5.0beta1):
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 3145728 bytes) in /home/profiles/public_html/lib/tikidate-php5.php on line 182
I'm trying to fix broken JavaScript
[00:53]
.... (idle for 16mn)
***rlpowell has joined #tikiwiki [01:13]
rlpowellJust did an svn up.
DB upgrade is failing with:
Fatal error: Call to a member function fetchRow() on a non-object in /var/www/lojban/tiki-svn/lib/core/lib/TikiDb.php on line 68
Which means I have *no* idea where the problem actually is.
Any ideas?
How do I even find out what upgrade file it's using?
[01:13]
***baisong has quit IRC (Read error: Connection reset by peer) [01:24]
chealerhi rlpowell [01:33]
rlpowellI found the problem.
Hi chealer
[01:33]
chealergood [01:34]
rlpowellinstaller/schema/20100118_image_plugins_kill_tiki.php is ... just wrong.
It's trying to use $tikilib functions.
It actually calls tiki-setup_base.php
This is *inside the installer*.
I don't know how (or if, I suppose) it ever worked.
[01:34]
chealerrlpowell: oh, there were problems with that one [01:35]
rlpowellYeah, like it doesn't fucking work. :)
I'm inclined to just svn rm it and post to the list.
Unless someone has a private address fro jonnybradley ?
[01:36]
chealerit's doing that on purpose.
rlpowell: you can use jonnybradley@users.sf.net
[01:37]
rlpowellThe problem is that it requires the user to be logged in, which ... doesn't make any sense.
Because if an admin is not, in fact, cookied in, there's no way to fix it from there.
[01:40]
chealerI don't understand what you mean
rlpowell: but jonny attempted a fix on February 16. I don't remember hearing about that problem since then.
[01:42]
rlpowellIt's failing in the part of tiki-setup_base.php that checks if the user is logged in.
To check this, it has to talk to the DB.
Which is what's failing.
I'm logged in, but not as admin, and since my Tiki is broken, I can't fix it.
THe actual failure is at 2573 in lib/userslib.php ; I'd love a second pair of eyes.
[01:43]
chealerrlpowell: but the script needs to talk to the DB anyway, to apply the profile
rlpowell: BTW, where do you live?
[01:46]
rlpowellERROR 1146 (42S02): Table 'tiki.tiki_user_login_cookies' doesn't exist
-- *that* is the actual problem.
Which was why I went to do the upgrade anyways.
San Francisco
[01:48]
chealeraahh... [01:49]
rlpowellSo it's an order of operations problem. [01:49]
chealerthere seems to be a problem with the upgrades since a while anyway. I was planning to look at it earlier. it seems all scripts are re-run every time you upgrade.
rlpowell: ah, too bad. we had 2 TikiFests on the east coast recently.
[01:49]
rlpowellAnd in an arbitrary order, perhaps. [01:50]
chealerrlpowell: so what made you think the problem was in image_plugins_kill_tiki? [01:51]
rlpowellBecause that's where it fails. [01:51]
chealerI doubt the order is very arbitrary [01:51]
rlpowellSpecifically, in the include_once('tiki-setup_base.php'); line of installer/schema/20100118_image_plugins_kill_tiki.php
Well, it may not be arbitrary, but it's clearly wrong. :)
[01:51]
chealerrlpowell: oh...so you had problems with missing tiki_user_login_cookies, so you went to run the upgrade and now you can't run the upgrade because you don't have that table? [01:52]
rlpowellIt does it by directory order.
chealer: Exactly.
And the error did not exactly make this clear. -_-
[01:53]
chealerrlpowell: right, so that should respect the dates [01:53]
rlpowellYeah, installer/schema/20100215_create_tiki_user_login_cookies_tiki.sql needs to come before installer/schema/20100118_image_plugins_kill_tiki.php
installer/schema/20100118_image_plugins_kill_tiki.php is the *only* script that uses tikilib; the rest make changes directly.
Which is why I wanted to just kick it back to the author.
[01:54]
chealerrlpowell: I can't see anything wrong with the order (although *ideally* we should use an id for each script so 2 scripts on the same day are ran in the order they were added. [01:55]
rlpowellBecause it uses tikilib, it *must* come last.
chealer: tikilib/tiki-setup-base *now* requires that table.
Since installer/schema/20100118_image_plugins_kill_tiki.php calles tiki-setup_base, now it does too.
Which is why all the other upgrade scripts don't use tikilib.
So either installer/schema/20100118_image_plugins_kill_tiki.php needs to run dead last, or it needs to be rewritten to hit the DB directly like all the other scripts.
Because this is going to keep happening.
[01:55]
chealerrlpowell: I understand what you mean. But you wouldn't have had this problem if you had ran scripts as they came (following branch 5). [01:56]
rlpowellHuh? [01:57]
chealerrlpowell: so I would say reordering the scripts is one way to workaround the issue. [01:57]
rlpowellYou mean if I updated once a week or something I wouldn't have this problem?
That's nice, but not going to happen.
[01:57]
***Cain` has joined #tikiwiki [01:57]
chealerrlpowell: right [01:57]
rlpowellI update only when I hit a problem. :)
(I only interact with Tiki at all when I hit a problem, these days, I'm afraid)
[01:57]
chealerrlpowell: I know. my point is that the problem is not simply that the order in which script run is wrong. [01:58]
rlpowell'k. [01:58]
chealerbut I think we both understand the problem [01:58]
***Cain has quit IRC (Ping timeout: 268 seconds)
Cain` is now known as Cain
[01:59]
chealerso yes, it's a difficult problem. reordering the scripts may solve the problem now but there could be a new problem later. [01:59]
rlpowellIf it's set so it always comes last, it'llbe OK. [01:59]
chealerrlpowell: that doesn't looks very scalable...but yeah [02:01]
rlpowellWell, like I said the right solution is to have it modify the database diroctly, like all the other scripts do.
Yay, Ihave my site back.
Booo ,it looks like crap.
[02:02]
***Caarrie is now known as Caarrie|sleeping [02:04]
chealerrlpowell: I would write to Jonny and to tikiwiki-devel. the script has been fairly problematic [02:08]
CIA-59tikiwiki: 03rlpowell * r26716 10/trunk/installer/schema/ (2 files): Needs to run last. [02:08]
chealerrlpowell: BTW, we're working on branch 5.x for the next release (Tiki 5)
rlpowell: commits on 5.x are merged to trunk
[02:09]
rlpowellOK.
http://www.lojban.org/tiki/Lojban -- wee, styles are gone. :(
[02:10]
***Cain has quit IRC (Ping timeout: 268 seconds) [02:15]
rlpowellDoesn't matter which style I pick, too.
Oh, shoudl clear the cache.
Nope.
Ah.
temp/public perms were wrong.
Wonder how that happened.
[02:16]
CIA-59tikiwiki: 03rlpowell * r26717 10/trunk/lib/ (3 files in 3 dirs): Just a JS function name change; avoids conflict with other systems. [02:20]
chealerI'm turning on Smarty templates debugging on profiles.tw.o, got to remember to turn back off. [02:22]
.... (idle for 16mn)
I fixed it. it was a custom code syntax issue again. I just don't understand why the site was so badly broken [02:38]
...... (idle for 25mn)
***Squillis has left [03:03]
....... (idle for 32mn)
Cain has joined #tikiwiki
Cain has quit IRC (Changing host)
Cain has joined #tikiwiki
[03:35]
.... (idle for 17mn)
Caarrie|sleeping has quit IRC (Read error: Connection reset by peer)
Caarrie|sleeping has joined #tikiwiki
[03:52]
CIA-59tikiwiki: 03chealer * r26718 10/trunk/lib/wiki-plugins/wikiplugin_attach.php:
tikiwiki: Return "Page "foo" does not exist" instead of "No such attachment on this page" if page specified does not exist.
tikiwiki: remove duplicate code from merge error
[03:56]
............. (idle for 1h2mn)
tikiwiki: 03chibaguy * r26719 10/branches/5.x/ (2 files in 2 dirs): [FIX] Allow for OpenID option in site header login popup. [04:58]
..... (idle for 20mn)
***franck has quit IRC (Quit: franck) [05:18]
............ (idle for 59mn)
Ma has joined #tikiwiki [06:17]
........... (idle for 52mn)
rlpowell has left [07:09]
kiilo has joined #tikiwiki [07:23]
MaHello [07:29]
Tikiwiki|botRecent Bug: Tracker item: #3135 - - Binding actions to user creation - http://dev.tikiwiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3135 [07:40]
MaI can't get my SEF URLs working!? [07:48]
..... (idle for 20mn)
Anyone here that could help me? [08:08]
***kiilo has quit IRC (Ping timeout: 246 seconds) [08:15]
.... (idle for 17mn)
timotiCK has joined #tikiwiki
timotiCK has left
kiilo has joined #tikiwiki
[08:32]
..... (idle for 21mn)
kiilo has quit IRC (Quit: Leaving.) [08:55]
xavi has joined #tikiwiki [09:04]
pkdille has joined #tikiwiki [09:11]
kiilo has joined #tikiwiki [09:20]
......... (idle for 42mn)
franck has joined #tikiwiki [10:02]
.... (idle for 18mn)
wintrymix has quit IRC (Quit: Page closed) [10:20]
..... (idle for 23mn)
xavi has left [10:43]
Tikiwiki|botNew Forum Posts: Difference in language - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=36951 [10:55]
***daniel__ has joined #tikiwiki
Caarrie|sleeping is now known as Caarrie
xavi has joined #tikiwiki
ricks99 has joined #tikiwiki
[11:00]
.... (idle for 15mn)
goj|ghost has joined #tikiwiki
goj has quit IRC (Ping timeout: 248 seconds)
goj|ghost is now known as goj
[11:20]
xavihi
is there anybody here which has ever used the {{page}} syntax in a wiki page?
in order to have the page name displayed dynamically?
I'd like to use the plugin TRACKER in 25 pages which all of them call to the same Plugin INCLUDE
...
[11:35]
ricks99sorry, no clue [11:38]
***Rockj has joined #tikiwiki [11:46]
RockjHey. I got a question. When I create a page called "Test", and after that try to make a page called "Test123", it redirects Test123 to Test and doesnt want/allow me to create that page
what kind of behaviour is this? :O
[11:46]
ricks99sounds like you have the "automatic redirection" option enabled [11:48]
Rockjhow do I turn of this? :) [11:48]
ricks99wiki admin page
pls see docs for details http://doc.tikiwiki.org/wiki+config
[11:48]
RockjThanks [11:54]
ricks99ur welcome [11:55]
...... (idle for 25mn)
***RavenC has joined #tikiwiki [12:20]
Masomeone that knows what RSS basic Authentication is? [12:22]
xaviMa, did you look at the docs? (no idea if this is explained there already) [12:24]
daniel__i've got a funny problem with inserting images in wiki pages, causing doubling of content, and anything below the image is not shown in page, even if it reamins in "edit".I run windows, TW4.2, same problem in 4.1. Only one reference to someone having similar problem in TW3 bug page on dev.tw, but no solution, any ideas? It's a intranet wiki with "use galleries" turned of, cuz i'm linking to local files. [12:35]
xavidaniel__: I had similar issue when using many times the !!- !!!- !!! etc. syntax (I think, even if not sure what causing the doubling the content issue)
in my case, not just doubling, but doubling each time I saved the page
[12:37]
daniel__xavi, same here, removing the {img...} turns everything ok, although the doubled content remains... [12:38]
xavievery time I see this type of weirdness, I clear the page of syntax,,,
of that syntax
[12:38]
daniel__I'll try that right away... [12:38]
xaviwhen using tiki 3.x, I had to roll back to a previous version, and then, add manually what I needed (with minimum potential confliction syntax)
hth
daniel__: , are you the daniel of the video work?
[12:39]
daniel__xavi -->nope, just a no one from Sweden... [12:45]
xaviok, then, hi from a no one from Catalonia :-) [12:45]
daniel__Adn i tried the cone on a page with no !!'s at all, same thing...
code
[12:45]
xavican I have a look?
maybe I can guess how to avoid it... (if the page is open to anons)
[12:46]
daniel__Nope, sry, it's all intranet, i have no way of letting you in :/ [12:46]
xaviah, ok, sorry.
good luck, and I hope you find what's causing it (I couldn't find it properly when it happened to me)
[12:46]
daniel__i'll istall in my home pc tonite, and see if it happens there too, and i'll guess i'll take the advice of so many and go linux....
they say Ubuntu is cheap these days :)
[12:47]
xavi:-)
and be ready to say bye bye to viruses and spybots, etc. when you move to GNU/Linux
[12:48]
daniel__i'll say goodbye to bf2 aswell.... [12:50]
MaWhat is all the settings for structures under wiki -> features?
I cannot find any documentation for it..
[13:03]
Jyhemhttp://commissioner.cws.coe.int is now officially online ! :-) [13:05]
xavi"all the settings"? [13:05]
Maxavi: Open page as structure Make structure from page Categorize structure pages together Create webhelp from structure A page can occur multiple times in a structure
xavi: oh.. hope you can read it
[13:05]
xaviMa: enable structures [13:05]
Maxavi: yes? [13:05]
xavino, I mena, enable structues, and as always, while you don't understand some options, use the default settings
another story is that this is not documetned
[13:06]
Maok :P
but that is why I wonder what these settings is
[13:06]
xaviOpen page as structure = in theory, this should allow opening the a page with the header of the structure it bvelongs to, even if the url just included the page name, and not the page_id from the structure
^does it make sense to you?
anyway, can you please improve the documentation with the answers you get in irc?
Ma ^?
Jyhem: congratulations!!!!! :-)
[13:07]
Maxavi: how do I improve it?
xavi: yes that is what I guessed
But the others :P
[13:09]
xaviJyhem: finally! (I always wondered whether the site would become public or not)
how to improve: go to doc.tw.o, to the corresponding page where you expected to find the answer, and add the missing documentation:
[13:09]
JyhemThis project first started .... let me check [13:10]
xaviparams that were not explained, etc. under the appropriate tiki version, etc. [13:10]
Jyhemnovember 2008. Then it died. Then it resurrected. I'm really glad it's finally public :-) [13:11]
xavicongrats! :-) [13:12]
Jyhemthanks [13:12]
xaviMa: I can provide some more answers... and I like users helping to improve the docs when they get answers... otherwise, doc.tw.o is not sustainable if contributor population to doc.tw.o doesn't grow with Tiki suer base
s/suer/user
[13:13]
Maxavi: ok [13:14]
ricks99ricks99 would love 2 have more doc contributors :-) [13:15]
xaviMake structure from page: it never worked for me, so no clue what the code does (if it's really doing something)
Categorize structure pages together: this makes (or should make) that new pages created within a structure inherit the same structures that the homepage of that structure
which is useful to keep permissions coherent at a structure level
[13:15]
Mathe same categories you mean? [13:18]
xaviCreate webhelp from structure: (deprecated feature; I wonder if it still works). In theory, this allows a structure editor to create a bunch of (static) html pages out of the structure at any given time. A kind of "snapshot" of the document tree at that structure, browsable in simple html pages. [13:18]
Manot structures..? [13:18]
xaviah, yes, sorry: the same categories
:-)
A page can occur multiple times in a structure: you can add "page A" several times in the same structure. Imagine that you have a special wiki page with a tracker plugin to get feedback. You would be able to add that same page several times in different positions at that structure. Otherwise, each page can be only once in a structure.
HTH
and thanks, Ma, for improving the pages related to Structures! (and improving doc.tw.o in general, it needs lots of care from all of us)
[13:18]
Mahth? [13:20]
xaviHTH: Hope this helps :-)
Ma, where are you from?
[13:21]
Maxavi: sweden [13:21]
xaviah, a few sweedish here toady :-) [13:22]
Maxavi: and you? [13:22]
xaviwell, welcome to Tikiwiki community!
Barcelona (Catalonia, Spain)
[13:22]
Manice
that is a nice place .D
[13:22]
xaviSweeden also :-) [13:22]
***Weisser has joined #tikiwiki [13:23]
Weisserhow do i add footnotes? like [1] [2] and so on? [13:23]
xaviWeisser: check documentation
that should be at: http://doc.tikiwiki.org/PluginFootnote
or similar
HTH
:-)
[13:23]
Maxavi: which group shall I choose during reg? [13:24]
xaviwhich ones do you have to choose from?
:-) Ma, I would suggest: Tikiwiki COmmunity Members :-)
mmm, html tags are scaped in current versions at the group description field
I'll remove them and make the url be a simple text string
[13:24]
Maxavi: yeah
xavi: it doesn't work to register.. :P
[13:27]
xavixavi doesn't know how to fix better
edited
any other admin online? anyone behind the BBB integration?
by chance I've seen that there were no permissions granted for registered to join a BBB meeting.... and I've granted them that perm, at least
[13:27]
MaI see [13:33]
xaviI wonder how would we test BBB today otherwise [13:33]
***JBenson has quit IRC (Ping timeout: 248 seconds) [13:33]
Weisserhmm
when i put several lines
like this:
a
b
c
but i encompass each with ::
there is additional break bewtween those lines
i did nt want that :f
[13:35]
xaviWeisser: sorry, no idea. Alternatively: you might try with {CENTER()}{CENTER} to see whether it helps? [13:37]
Weisserit helps, thank you :> [13:38]
***_LoneCrow has quit IRC () [13:38]
xaviyou are welcome [13:38]
ricks99ricks99 xavi is on a roll today :-) [13:39]
xavi:-) [13:39]
ricks99has anyone integrated tiki with eventbrite? [13:42]
xavino idea, sorry [13:42]
.... (idle for 19mn)
CIA-59tikiwiki: 03jonnybradley * r26720 10/branches/5.x/installer/schema/20091214_perspective_management_tiki.php: [FIX] Missing include check [14:01]
***_LoneCrow has joined #tikiwiki
kiilo has quit IRC (Ping timeout: 240 seconds)
kiilo has joined #tikiwiki
[14:02]
Caarrie has quit IRC (Read error: Connection reset by peer)
Caarrie has joined #tikiwiki
Caarrie has quit IRC (Changing host)
Caarrie has joined #tikiwiki
[14:11]
Weisser has quit IRC (Quit: ret we)
kiilo has quit IRC (Quit: Leaving.)
kiilo1 has joined #tikiwiki
kiilo1 has quit IRC (Client Quit)
[14:24]
Tikiwiki|botNew Forum Posts: Hard time with the menu feature... - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=36956 [14:41]
***Caarrie is now known as Caarrie|away [14:41]
redflo has joined #tikiwiki
Ma has left
[14:49]
.... (idle for 19mn)
marclaporte has joined #tikiwiki
ChanServ sets mode: +o marclaporte
[15:08]
marclaporteIf you guys want to try something fun: http://tikiwiki.org/live
come on BBB
[15:15]
xavihi marclaporte. I added some perms for BBB at tw.o (there were no perms given an hour ago or so)
for registered, etc.
[15:15]
***franck has quit IRC (Ping timeout: 248 seconds) [15:16]
marclaportegood stuff [15:17]
***franck has joined #tikiwiki [15:19]
xavias anonymous, I'm sent to a page where the browser freezes
:-/
same behavior on firefox 3.6.3 and epiphany-webkit on gnu/linux
the page is: http://live.tikiwiki.org/client/BigBlueButton.html
ok, Google chrome seems to work (so far)
user guest: test2 getting in
[15:20]
marclaporteawesome [15:22]
xaviwohooo, threee rooms! :-)
marclaporte: how do you create rooms?
[15:24]
marclaporteYou click on BBB plugin [15:26]
***franck has quit IRC (Ping timeout: 248 seconds) [15:26]
marclaporteassuming you have rights [15:26]
xavirooms test1 and test2 seem to have you as moderator, nobody else in, and no perms on them
ah, tht's why they are not seen by anonymous (wysiwyca, I guess)
click on where: the BBB icon?
to create a room, I mean, not to join one
I'm seing that page with a user with admin rights
http://tikiwiki.org/Live
[15:26]
***franck has joined #tikiwiki
kiilo has joined #tikiwiki
kiilo has quit IRC (Client Quit)
[15:32]
marclaportexavi : you figured it out? [15:46]
xavinope [15:46]
marclaporteso you put a BBB plugin in a wiki page [15:53]
xaviah, ok, sorry, obvious
(doing many things, and I didn't try to create new rooms, just wondered why I saw just one as anonymous, and three wehen logged in, etc.)
doc.tikiwiki.org seems to be down to me
is it working for anybody?
[15:53]
RavenCi'm in and logeed in
err... logged in that is...
[15:58]
xaviok, working again for me too [16:01]
Tikiwiki|botNew Forum Posts: Linking Existing URL with TikiWiki Menu Item... - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=36957 [16:03]
***mlaporte has joined #tikiwiki [16:12]
CIA-59tikiwiki: 03lphuberdeau * r26722 10/branches/5.x/lib/ (2 files in 2 dirs): [ENH] Now with more parameters for BigBlueButton. [16:12]
.... (idle for 17mn)
***Caarrie|away is now known as Caarrie [16:29]
mlaporteYou are hearby invited to test http://tikiwiki.org/live a test of an integration between TikiWiki CMS/Groupware and BigBlueButton (open source audio-video-chat-screensharing server). More info about BBB at http://bigbluebutton.org You need a browser with Flash. Ideally, you have webcam. For audio, you should have a headset. [16:35]
chealerpolom
oh, so you click on the b to join
[16:36]
CIA-59tikiwiki: 03lphuberdeau * r26723 10/branches/5.x/templates/wiki-plugins/wikiplugin_bigbluebutton.tpl: [ENH] Usability testing demonstrated that most people don't see the big blue button as clickable. Adding a separate join button. [16:41]
.... (idle for 17mn)
***xavi has quit IRC (Ping timeout: 260 seconds) [16:58]
....... (idle for 33mn)
inspirated has joined #tikiwiki
inspirated has quit IRC (Client Quit)
[17:31]
JBenson has joined #tikiwiki [17:38]
JBensonhey all, i'm tring to filter a tracker by a "User Selector" field my first guess on how to do this was exactvalue=#user but that didnt seem to work.
is #user the correct syntax as if it type in exactvalue="Jbenson" it does work
I want it to use the user name for who ever is logged in.
yesterday someone on this chat suggested trying another parameter that can be set to user which I did "view=user" this does seem to work.
[17:39]
CIA-59tikiwiki: 03ohertel * r26725 10/branches/5.x/templates/tiki.tpl: [fix] wrong variable used, enabling 'fixed' for left column made the right column fixed. [17:44]
JBensonthis page http://doc.tikiwiki.org/tiki-index.php?page=PluginTrackerList&bl=y&fullscreen=y seems to indicate that exactvalue can handel special param value "#user" if im understanding it correctly [17:46]
***ohertel has joined #tikiwiki [17:48]
ohertelHello! :) [17:48]
JBensonhello
maybe you know something about my question ohertel i'm tring to filter a tracker by a "User Selector" field it seems like exactvalue=#user should work but that didnt seem to work.
[17:48]
CIA-59tikiwiki: 03lphuberdeau * r26726 10/branches/5.x/templates/wiki-plugins/wikiplugin_bigbluebutton.tpl: [ENH] Improvement of the positionning of the attendee list, especially when in a module
tikiwiki: 03ohertel * r26727 10/branches/5.x/tiki-list_file_gallery.php: [fix] remove didn't work here, we have no $galleryId at this point
[17:50]
***ohertel has quit IRC (Changing host)
ohertel has joined #tikiwiki
ChanServ sets mode: +o ohertel
[17:52]
redflo has left
JBenson has quit IRC (Ping timeout: 248 seconds)
[18:02]
_LoneCrowdamnit I just gave tikiwiki another try after several attempts at installing on different machines all centos 5.4 - error invalid db object passed to tikidb constructor
yes I have php-pdo installed too
tried 4.2 and beta 5 .. now I'm tryiing on a spare pc I have instead of a virtual machine.. same deal
clean install centos 5.4 httpd mysql-server php 5.1.x php-gd php-pdo firewall is fine I can access the database right are granted.. wtf
[18:15]
CIA-59tikiwiki: 03nkoth * r26728 10/branches/5.x/lib/wiki-plugins/wikiplugin_googlemap.php: [FIX] Use default zoom level if not set for particular item (so that at least it shows) [18:21]
.... (idle for 16mn)
Tikiwiki|botNew Forum Posts: Creating Wiki Page and Linking with Menu Item... - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=36960 [18:37]
***timotiCK has joined #tikiwiki [18:38]
_LoneCrowI really want to get this installed and start trying it out but if I cant' even install it, that is pretty pathetic following the instructions given [18:43]
ricks99sorry. im running wamp -- no issues
as with hosted unix sites
nver used centos. sorry :(
[18:46]
Tikiwiki|botNew Forum Posts: Create Wiki Page and Link to Menu... - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=36960 [18:47]
***ohertel has quit IRC (Quit: ChatZilla 0.9.86 [Firefox 3.6.3/20100401080539])
Weisser has joined #tikiwiki
[18:54]
Weisserhi, when i try to view the page on wiki i only get a blank rectangle with small height
when i preview old version (or current, but with the preview old version feature) it's all ok
but when i just want to view current version, i dont even get the buttons to edit and watch it
i am doing it from admin account, and i was told everything is fine for other accounts
[18:57]
RavenC_LoneCrow: I've never used centos either. [19:01]
_LoneCrowUgh.. redhat/centos fedora probably the most used linux flavor out there well maybe not anymore since ubuntu etc
Tikiwiki looks like exactly what I need and is very slick.. I have some other web space I can use but it doesn't allow for me to execute the setup.sh
[19:02]
RavenCany chance of trying another OS package ? [19:04]
***kiilo has joined #tikiwiki [19:09]
_LoneCrowI guess I'll have to :( I wish they'd put down some sort of compatibility list.. I didnt see anything that said it wasn't working entirely perfect on centos .. oh well I'll need to get another VM going when I have time to try again maybe tomorrow. [19:13]
ricks99can us ftp if no sh access [19:13]
_LoneCrowI have shell access but its limited.. one of those hosted sites that does not grant root access to anyone [19:13]
ricks99root access not needed [19:14]
_LoneCrowI'll find something at least now I somewhat know my centos attempt is kinda fruitless right now
I think I tried to run the setup on that hosted solution and it didnt work
Doesnt the setup just chmod stuff?
[19:14]
ricks99you can simply use the web-based installer. no need for .sh [19:15]
_LoneCrowinstructions said to run it before you run the site..
maybe I'll try again
[19:15]
chealer_LoneCrow: it's sure that Tiki works under Red Hat Enterprise Linux. I didn't try, but there's just something you need to do. [19:16]
ricks99u can just run the installer. [19:16]
chealer_LoneCrow: which PHP version do you use? [19:16]
_LoneCrowI just can't figure out what it needs because there are no references to this error message on the web anywhere.. I know its trying to __construct db or something but I don't know what it needs to run that
its 5.1.6 I think
Whatever the latest version there is on centos I know its a little out of date
[19:17]
chealer_LoneCrow: hum, right, I didn't realize RHEL went so old.
5.1 is supported officially, but you may have more issues than with 5.2
[19:18]
_LoneCrowuploading it now back to that hosted place lets see [19:19]
chealer_LoneCrow: I know Tiki should work fine on Debian 5. installation currently fails on Debian testing due to PHP 5.3.2. that will be the same if you try other bleeding edge distros. [19:20]
_LoneCrowOk.. thanks for your help I'll see a bout adding the test repo and see if I can get a newer version but not too new hehe
One way or another I'll get it going just want to paly around and start learning it
[19:22]
***coaboa has joined #tikiwiki
coaboa_ has quit IRC (Read error: Connection reset by peer)
[19:34]
CIA-59tikiwiki: 03changi67 * r26729 10/branches/5.x/lib/setup/twversion.class.php: [REL] Preparing 5.0 Beta2 release
tikiwiki: 03changi67 * r26730 10/branches/5.x/README: [REL] Update README file for 5.0Beta2
[19:40]
marclaporteyay Beta2! [19:46]
CIA-59tikiwiki: 03rlpowell * r26731 10/trunk/ (2 files in 2 dirs): Make the icons work again. Make title optional. [19:47]
***MacLeod has joined #tikiwiki
MacLeod has quit IRC (Client Quit)
[19:47]
CIA-59tikiwiki: 03changi67 * r26732 10/branches/5.x/lang/ (44 files in 44 dirs): [REL] Update language.php files for 5.0Beta2 [19:52]
_LoneCrowWow its wo rking on the hosted solution!
Didnt need to run setup.sh
[19:53]
CIA-59tikiwiki: 03changi67 * r26733 10/branches/5.x/changelog.txt: [REL] Update changelog.txt for 5.0Beta2 [19:53]
ricks99told ya :-) [19:53]
_LoneCrowcool thanks! Much to play aruond with now :) [19:54]
CIA-59tikiwiki: 03changi67 * r26734 10/branches/5.x/copyright.txt: [REL] Update copyright.txt for 5.0Beta2 [20:00]
***rlpowell has joined #tikiwiki [20:07]
rlpowellDoes the tiki know how to do fuzzy timestamps at all? [20:07]
_LoneCrowHmm get an error when trying to apply a profile "Small Organization Web Presense - error Syntax Error: ref Publishing Permissions - so I think that might be what the setup.sh was supposed to do - setup the permissions?
further errors say "Needs a "type" and "data" field syntax error
[20:11]
CIA-59tikiwiki: 03changi67 * r26735 10/branches/5.x/db/tiki-secdb_5.0_mysql.sql: [REL] SecDB for 5.0Beta2 [20:13]
***ricks99 has quit IRC (Quit: Get more help: TikiWiki for Smarties http://twbasics.keycontent.org) [20:13]
CIA-59tikiwiki: 03changi67 * r26736 10/tags/5.0Beta2/: [REL] Tagging release [20:22]
***RavenC has left [20:27]
Tikiwiki|botRecent Bug: Tracker item: #3136 - - Color popup in Wiki editor is broken - http://dev.tikiwiki.org/tiki-view_tracker_item.php?trackerId=5&itemId=3136 [20:32]
***Gergely has joined #tikiwiki [20:33]
........ (idle for 38mn)
FrankP_german has joined #tikiwiki
FrankP_german has quit IRC (Client Quit)
[21:11]
Tikiwiki|botNew Forum Posts: WYSIWYG editor in tracker - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=36961 [21:13]
***franck has quit IRC (Quit: franck) [21:25]
franck has joined #tikiwiki [21:32]
marclaporte has quit IRC (Read error: Connection reset by peer) [21:46]
.......... (idle for 47mn)
Tikiwiki|botNew Forum Posts: Mod GMAP - File Corrections - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=36962 [22:33]
***Gergely has quit IRC (Quit: Page closed) [22:41]
.... (idle for 16mn)
ricks99 has joined #tikiwiki [22:57]
kiilo has quit IRC (Quit: Leaving.) [23:09]
zaufi has joined #tikiwiki [23:16]
.... (idle for 18mn)
Tikiwiki|botNew Forum Posts: /var/lib/php not found - http://tikiwiki.org/tiki-view_forum_thread.php?forumId=6&comments_parentId=36965 [23:34]
***dieufera has joined #tikiwiki
dieufera_ has joined #tikiwiki
dieufera_ has quit IRC (Client Quit)
[23:34]
dieufera!help : how do I get help installing tiki 3.5 if not provided here? [23:37]
Tikiwiki|botYou can get a more complete list of commands that work with this bot at http://tikiwiki.org/TikiBot . [23:37]
ricks99@dieufera: for installation help, see the docs: http://doc.tikiwiki.org/Installation [23:38]
***Weisser has quit IRC (Quit: ret we) [23:38]
dieuferaTiki documentation does not work for this, no info available [23:42]
ricks99no info for what? [23:42]
dieuferaTiki Installer cannot proceed The directory '/var/lib/php' does not exist or PHP is not allowed to access it (check open_basedir entry in php.ini)
error msg
[23:43]
ricks99open_basedir restriction means ur host is running php in "safe" mode...
see docs: http://tikiwiki.org/tiki-index.php?page=InstallTikiunderSafeMode
[23:43]
dieuferaTHANK YOU!!!!
will do
[23:44]
ricks99ur welcome.
answers are *usually* in the docs... just need to search :-)
[23:44]
dieuferaI know, Ive been trying but seemed to be hitting a wall. I appreciate it :) [23:45]
ricks99you may also appreciate: http://twbasics.keycontent.org/Troubleshooting
(beginner's guide)
[23:45]
dieuferagot to admit Ive been using it :) [23:46]
ricks99glad u find it useful [23:46]

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