Tiki-KGB: tikiwiki [FIX] Check if latest version is viewed, before opening the inline editor when a flagged revision is active. marclaporte1: joined #tikiwiki Tiki-KGB: tikiwiki 03arildb r46809 10branches/experimental/ckeditor4/lib/prefs/feature.php
tikiwiki [MOD] Warn that Wysiwyg inline editing is experimental Tiki|bot: New Forum Posts: Unified Search - MySQL Full Text Search engine - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=48183 marclaporte: joined #tikiwiki
joined #tikiwiki samu89: joined #tikiwiki
Hello guys
I need know in which tpl file a table/grid it is luciash: it is what ?
samu89: what is your question ? samu89: I have a problem
In file galleries, has a table to show the files, but i don`t know where in tpl files it is localized luciash: samu89: what is the URL ? samu89: tiki-list_file_gallery.php luciash: samu89: ok, if you enabled to indicate TPL in page source, you should see it when you do Ctrl+U
samu89: i can have a quick look
Tiki 9.x ? marclaporte: joined #tikiwiki samu89: No, thunk 12.x
*trunk luciash: samu89: should be in templates/list_file_gallery.tpl
samu89: or templates/list_file_gallery_content.tpl samu89: Can be in various places the table headers?
Exist documentation about these files? Tiki|bot: joined #tikiwiki fabricius: joined #tikiwiki Tiki|bot: New Forum Posts: RSS feed - editing? - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=48185 chibaguy: joined #tikiwiki refizul: Tiki forum outgoing mail adds the header 'Reply-To', which is not yet optional.
Workaround with MTA postfix: header checks with pcre, match the forum's outgoing address and IGNORE -> header is stripped marclaporte1: joined #tikiwiki marclaporte: joined #tikiwiki goj_killedByISP: joined #tikiwiki lphuberdeau: joined #tikiwiki marclaporte: joined #tikiwiki
joined #tikiwiki marclaporte1: joined #tikiwiki Tiki|bot: joined #tikiwiki Anzhe: joined #tikiwiki marclaporte: joined #tikiwiki armanm89: Hi, I need a help with sending html messages in tikiwiki. Is this feauture available? Or how can it be done using .tpl files?
tracker_changed_notofication.tpl redflo: joined #tikiwiki Anzhe: joined #tikiwiki -: Anzhe clears his throat Anzhe: Is anyone in here going to Wikimania 2013 in Hong Kong next month? Tiki|bot: Recent Bug: - Modules, Page filter are applied on the Admin modules panel - http://dev.tiki.org/item4606 chibaguy: joined #tikiwiki arildb: joined #tikiwiki xavi_: joined #tikiwiki
hi all! arildb: Hi xavi_ xavi_: is it appropiate to ask technical issues here? (of course, I haven't found out somewhere else) arildb_: joined #tikiwiki Tiki|bot: New Forum Posts: softaculous's control panel - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=48191 arildb: xavi_: technical issues...this seems to be a good place xavi_: thank you! I've just made a migration where I had tikiwiki installed. I've correctly configured the database parameters and so on... but
when opening the home page an error occurs:
"Header already sent in where-my-tiki-wiki-is/lang/es/language.php at line 1"
regarding //index.php, php says that HTTP headers are already sent: https://github.com/railfuture/tiki-website/blob/master/index.php arildb: the cahce is cleared and the database is up-to-date, I assume Anzhe: have you looked through your log files? in PHP that error often occurs when a page spits out an error message (ex: invalid variable) and then tries to redirect via a header() call arildb: which Tiki version btw.?
I have to head out now. Sorry I can't help more. bbl xavi_: :( Anzhe: xavi_: which Tiki version are you running? do your server logs have any errors? xavi_: temp/cache folder is empty
what do you mean by up-to-date databases, they were cloned from the original server
tikiwiki Version: 10.3
what do you mean by up-to-date databases? they were cloned from the original server Anzhe: your server logs? xavi_: my apache logs show no PHP error Anzhe: well you clearly have one, what logging setting is your PHP using? xavi_: the error I am getting is not a PHP error, it is echoed by tiki wiki, as you can see in the code here: https://github.com/railfuture/tiki-website/blob/master/index.php
I get this "tikiwiki warning" because header is already sent in /home/bookuno/public_html/wiki/lang/es/language.php at line 1
wooops I posted the whole path, is this IRC permanentaly logged? Anzhe: headers are already sent just means something has already outputted data to the browser, this is almost always because of an error message
so you should dive into tiki-setup.php and see what's choking
if you want to brute force your way to a solution, stick a die(); at line 473 of tiki-setup.php and reload your index
then walk it back code section by code section until you find whatever include or function is failing
because something is prematurely sending data to the browser, and that's preventing the index.php header() call from working xavi_: I'll check that, but I'm not fluent in PHP :S Anzhe: you needn't be too fluent, you just need to get ahold of a real error message, then we can better diagnose the problem. Right now you've got an error message about an error message ;-) xavi_: thanks! I'm on it!
why line 473? I'm placing an echo there and seems that the interpreter does'nt get there Anzhe: because that's the second to last action, I would use an echo followed by a die() to be certain you're halting the program
then keep moving it upwards one code block at a time
until you find the info you need
alternately you could work down from the top
it makes no difference, really
echo "so far so good"; die(); chibaguy: joined #tikiwiki xavi_: it looks like it doesn't enter the conditional in line number 217 (https://github.com/railfuture/tiki-website/blob/master/tiki-setup.php)
as an echo just befor, at line 216, echo $prefs['javascript_enabled'];, returns "n"
but the interpreter reads all the tiki-setup.php file Anzhe: it reads the entire file because there is no header() function in that file
so it just outputs the error and continues on
without knowing your programming background it's hard to give good advice on next steps
did you previously have javascript enabled on the old installation?
could there be something wrong with your lib/setup/user_prefs.php file? xavi_: I'm OK with Java and C, but you should'n assume I'm used to built-in PHP functions, til know you've showed me the way Anzhe: joined #tikiwiki
ok, I'm back xavi_: could you read the previous lines? Anzhe: didn't receive anything after I quit to go mobile xavi_: after "but the interpreter reads all the tiki-setup.php file" I said "I'm OK with Java and C, but you should'n assume I'm used to built-in PHP functions, til now you've showed me the way"
what could be wrong with lib/setup/user_prefs.php file? I've never modified core libraries in tikiwiki Anzhe: I have no idea what might be wrong. How exactly did you migrate your installation? Could you have forgotten any config files? Is it the same server or different? Perhaps the PHP.ini is not identical? xavi_: joined #tikiwiki
sorry i got disconnected just after 12:23 arildb: joined #tikiwiki xavi_: after server migration, apache config and modules installed were modified, but I can't copy the exact config file as it was before
I am trying to identify which modules/config does tikiwiki need so I can set them up one by one Anzhe: are you doing a fresh install or cloning all the old data and trying to resume operations?
I suggest you try a fresh install of the same version in an alternate path.
TW's selfdiagnostics during install will let you know immediately if there are any core php settings that need to be adjusted. xavi_: it is a cloning Anzhe: If the fresh install has no issues, then we must consider some special configuration of the old server or perhaps missing files. xavi_: the wonder is if I could restore everyting, data and config Anzhe: Assuming the MySQL database is undamaged and has the same username and password
please try a fresh install of the same version, it will only take a few minutes xavi_: thanks! i will try and tell you. Will you be gone in some minutes? Anzhe: I'll be online for the next 3 hours at least, but I may not reply immediately.
joined #tikiwiki Anzhe_m: joined #tikiwiki Tiki|bot: joined #tikiwiki
New Forum Posts: Articles Topic Field - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=48192 ricks99: joined #tikiwiki
polom y'all
left #tikiwiki
joined #tikiwiki jonnyb: joined #tikiwiki Tiki-KGB: tikiwiki 03jonnybradley r46810 10branches/ 10(14 files in 6 dirs)
tikiwiki [MRG] Automatic merge, trunk 46796 to 46807 fabricius: joined #tikiwiki luciash: polom jonnyb: moloq Tiki-KGB: tikiwiki 03arildb r46811 10trunk/tiki-calendar_setup.php
tikiwiki [SEC] Validate calendar date input. Prevent XSS attack xavi_: Anzhe, it's working now! thanks for your help
I don't learn too much by doing fresh installs, but at least i's working :P Anzhe: xavi_: I'm happy to hear you're up and running again amette: polom Tiki-KGB: tikiwiki 03jyhem r46812 10trunk/tiki-searchresults.php
tikiwiki [FIX] Cleaner input handling jonnyb: hi amette Tiki-KGB: tikiwiki 03jyhem r46813 10branches/11.x/tiki-searchresults.php
tikiwiki [FIX][bp/r46812] Cleaner input handling
tikiwiki 03jyhem r46814 10branches/10.x/tiki-searchresults.php
tikiwiki [FIX][bp/r46812] Cleaner input handling Jyhem_: polom -: Jyhem_ hates nano editor jonnyb: polom Jyhem_ Tiki-KGB: tikiwiki 03jyhem r46815 10branches/9.x/tiki-searchresults.php
tikiwiki [FIX][bp/r46812] Cleaner input handling Anzhe: polom? amette: hi jonnyb, Jyhem_ Tiki-KGB: tikiwiki 03jyhem r46816 10branches/6.x/tiki-searchresults.php
tikiwiki [FIX][bp/r46812] Cleaner input handling chibaguy: joined #tikiwiki marclaporte: joined #tikiwiki dhazel: joined #tikiwiki rodrigoprimo: joined #tikiwiki
joined #tikiwiki chibaguy: joined #tikiwiki marclaporte: joined #tikiwiki Tiki|bot: New Forum Posts: tracker item import UTF-8 initials issues - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=48194
New Forum Posts: Newby question -- how to permit anonymous users to see tracker items? - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=48195 panamaus: Any ideas on how to reindex the file backlinks in my file galleries? They seem to gradually collect "garbage" and redundant links over time. Rebuilding the search index doesn't help. aalex_: joined #tikiwiki ricks99: panamaus: clear tiki caches? panamaus: nope, caches have no effect either ricks99: hm... what tiki version? panamaus: 9.3 ricks99: maybe a bug. current version is 9.6. panamaus: maybe. It's been like this since I first build my wiki back at version 7. The oldest files in my gallery claim to have around 125 backlinks, but they're almost all nulls
more common is a file that will list, for instance, 18 backlinks, but all to the same document that only references the file once
I have scheduled an upgrade to 9.6 next week. Would be nice if this problem goes away then, but I'm not expecting it to ricks99: are you able to duplicate the problem on the tiki demo site: http://demo.tiki.org panamaus: dunno. I'll give it a try I guess ricks99: pls do and report back. Tiki|bot: New Forum Posts: BigBlueButton Translations - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=48199
New Forum Posts: New to tiki-devel, Introducing myself to the community - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=48201 Emenems: joined #tikiwiki leagris: Please, @marclaporte would you allow me a commit right (aoccount leagris)? I have a patch proposal for tiki_cdn and smarty_security incompatibility.. panamaus: ricks99: of course, I find that manually cleaning up the tiki_file_backlinks table in mySQL works too. leagris: Just introduced myself to Tiki-devel: Feel free to ask me more information/details. marclaporte: leagris: coming right up!
leagris: Tiki newsletters could use some click-through tracking :-)
Merci Léa: https://sourceforge.net/u/leagris/profile/ Tiki|bot: New Forum Posts: Admin Categories - http://tiki.org/tiki-view_forum_thread.php?forumId=4&comments_parentId=48208 Tiki-KGB: tikiwiki 03amette r46817 10branches/9.x/lib/categories/categlib.php
tikiwiki [FIX] Allow displaying blog posts in category listings jonnyb: Hi leagris - just saw your email, bienvenue! Looking forward to seeing some commits soon one day :) leagris: :)
@marclaporte just committed successfully, thanks Tiki-KGB: tikiwiki 03leagris r46818 10branches/11.x/lib/init/smarty.php
tikiwiki [FIX] smarty_security and tiki_cdn marclaporte: leagris and jonnyb: that was fast :-) jonnyb: :D Jyhem_: Welcome leagris :-) Caarrie: joined #tikiwiki Tiki-KGB: tikiwiki 03marclaporte r46819 10trunk/composer.lock
tikiwiki Update composer.lock following recent update of composer.json for Smarty 3.1.13 to 3.1.14 luciash: leagris: welcome to Tiki ! :) Tiki-KGB: tikiwiki 03amette r46820 10branches/11.x/lib/categories/categlib.php
tikiwiki [MRG][FIX] Allow displaying blog posts in category listings luciash: leagris: can we agree to use quoted-printable instead of the 8bit ?
leagris: regarding https://dev.tiki.org/tiki-view_tracker_item.php?itemId=4596&threadId=2942&comzone=show#threadId2942 Tiki-KGB: tikiwiki 03marclaporte r46821 10trunk/doc/devtools/satis.json
tikiwiki We now need to give access to Smarty 3.1.13 and 3.1.14 leagris: luciash yes
Quoted-printable is the most versatile. 8bitis the most space saving but may have issue with older Mail User Agent / Webmails
s/8bitis/8bit/ Tiki-KGB: tikiwiki 03marclaporte r46822 10trunk/doc/devtools/satis.json
tikiwiki Indicate latest Smarty version to Satis leagris: What is the process of validating a patch and closing an issue. (about https://dev.tiki.org/item4604) ? samu89: joined #tikiwiki
Hello guys jonnyb: joined #tikiwiki samu89: What is the better way to make a tiki plugin? ricks99: did you see the "how to create a new plugin" page on Hello World?
http://dev.tiki.org/Hello+World samu89: Thanks panamaus: ricks99: "good" news, I can duplicate the problem in the tiki demo site
every time I save a page referencing files in the file gallery, the backlink count for those files increases
if I remove those references from the wiki page and save it, the backlink count does not decrease as expected ricks99: great... i guess.. :) does the bug also appear in the current version 11? panamaus: haven't tried that, but I guess that's the next test jonnyb: need food, more tomorrow... Tiki-KGB: tikiwiki 03jonnybradley r46823 10trunk/lib/categories/categlib.php 10trunk/lib/init/smarty.php 10trunk
tikiwiki [MRG] Automatic merge, branches/11.x 46793 to 46820 ricks99: left #tikiwiki marclaporte: joined #tikiwiki Telesight: joined #tikiwiki marclaporte: joined #tikiwiki samu89_: joined #tikiwiki Tiki-KGB: tikiwiki 03jonnybradley r46824 10branches/ 10(6 files in 5 dirs)
tikiwiki [MRG] Automatic merge, trunk 46807 to 46823 Tiki|bot: New Forum Posts: Can't install trunk (composer) - http://tiki.org/tiki-view_forum_thread.php?forumId=26&comments_parentId=48217 aalex_: joined #tikiwiki GillesMM: joined #tikiwiki Caarrie: joined #tikiwiki