<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="Tiki CMS/Groupware via FeedCreator 1.7.2.1" -->
<?xml-stylesheet href="http://tikiexpert.com/lib/rss/rss-style.css" type="text/css"?>
<?xml-stylesheet href="http://tikiexpert.com/lib/rss/rss20.xsl" type="text/xsl"?>
<rss version="2.0">
    <channel>
        <title>Tiki RSS feed for weblogs</title>
        <description></description>
        <link>http://tikiexpert.com/tiki-blogs_rss.php?ver=2</link>
        <lastBuildDate>Sun, 05 Sep 2010 08:20:12 +0100</lastBuildDate>
        <generator>Tiki CMS/Groupware via FeedCreator 1.7.2.1</generator>
        <image>
            <url>http://tikiexpert.com/img/tiki/tikilogo.png</url>
            <title>TikiExpert</title>
            <link>http://tikiexpert.com/tiki-index.php</link>
            <description><![CDATA[Feed provided by TikiExpert. Click to visit.]]></description>
        </image>
        <language>en-us</language>
        <item>
            <title>Terms and conditions in a tracker</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=31</link>
            <description><![CDATA[You could need to show up a terms and conditiona page for a regidtration tracker.<br />
There is 2 ways to display the terms and conditions by using a static text field with a wiki parse description<br />
You can add in the description<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">[http://mysite.com/tiki-print.php?page=Terms+and+Conditions|See our terms and conditions|shadowbox;title=Terms and Conditions;]</pre><br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">{IFRAME(src="tiki-print.php?page=Terms+and+Conditions" width="600px" height="300px") /}</pre><br />
]]></description>
            <pubDate>Mon, 22 Jun 2009 17:49:27 +0100</pubDate>
        </item>
        <item>
            <title>How to know which objects have a special permission for a group</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=30</link>
            <description><![CDATA[If you want to know on which wiki page or which file gallery an Anonymous has special perm<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">SELECT pageName FROM tiki_pages
WHERE md5( concat( 'wiki page', pageName ) ) in (select objectid from users_objectpermissions where groupName='Anonymous' and objectType='wiki page');
SELECT name, galleryId FROM tiki_file_galleries
WHERE md5( concat( 'file gallery', galleryId ) ) in (select objectid from users_objectpermissions where groupName='Anonymous' and objectType='file gallery');</pre><br />
<br />
]]></description>
            <pubDate>Thu, 21 May 2009 11:10:08 +0100</pubDate>
        </item>
        <item>
            <title>Lite css with width fixed size</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=29</link>
            <description><![CDATA[Just put a margin-left and margin-right top auto and a width ok x px on the #main or #main-shadow description<br />
]]></description>
            <pubDate>Mon, 11 May 2009 11:51:49 +0100</pubDate>
        </item>
        <item>
            <title>Use 3 minicalendars in a calendar view</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=28</link>
            <description><![CDATA[The new module CALENDAR_NEW can be used like this<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">{wiki}{literal}
   {MODULE(module=calendar_new, viewmode=month, notitle=y) /}
   {MODULE(module=calendar_new, viewmode=month, month_delta=+1, notitle=y) /}
   {MODULE(module=calendar_new, viewmode=month, month_delta=+2, notitle=y) /}
{/literal}{/wiki}</pre><br />
Be carefull to put this at the end of tiki-calendar.tpl and to move this div up with absolute positionning (because otherwise your centtral calendar will be the last month not the first<br />
<br />
A live example<br />
<a target="_blank" class="wiki"  href="http://fhsj.cgcom.com/tiki-calendar.php?viewmode=month&amp;viewlist=list">http://fhsj.cgcom.com/tiki-calendar.php?viewmode=month&amp;viewlist=list</a><br />
]]></description>
            <pubDate>Fri, 08 May 2009 20:05:12 +0100</pubDate>
        </item>
        <item>
            <title>Search failed on tw.org</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=27</link>
            <description><![CDATA[I do not know why, but today the search fails on tikiwiki.org with an sql error.<br />
The problem was that the fulltext index was split into to; ft with pageName and data and description with description. In order to be able to do a fullsearch on the 3 columns, you ned to have a fulltext index on these 3 columns.<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">drop index ft on tiki_pages;drop index description on tiki_pages;create fulltext index ft on tiki_pages (pageName,description,data);</pre><br />
]]></description>
            <pubDate>Fri, 08 May 2009 19:57:23 +0100</pubDate>
        </item>
        <item>
            <title>Change the diaporama delay in tiki_browse_image.php</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=26</link>
            <description><![CDATA[Use an url with delay=1000, the default is 3000<br />
Or do to templates/tiki-browse_image.tpl and change the 3000 to your delay<br />
]]></description>
            <pubDate>Tue, 24 Mar 2009 13:58:32 +0100</pubDate>
        </item>
        <item>
            <title>Search for tikwiki</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=25</link>
            <description><![CDATA[Search in tikiwiki are not the best<br />
I found an article about lucene<br />
<a target="_blank" class="wiki"  href="http://www.phpriot.com/articles/zend-search-lucene">http://www.phpriot.com/articles/zend-search-lucene</a><br />
<a target="_blank" class="wiki"  href="http://framework.zend.com/manual/en/zend.search.lucene.html">http://framework.zend.com/manual/en/zend.search.lucene.html</a><br />
I will give a try<br />
]]></description>
            <pubDate>Tue, 21 Oct 2008 20:39:44 +0100</pubDate>
        </item>
        <item>
            <title>A pdf file is download in the window and displays strange characters</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=24</link>
            <description><![CDATA[Sometimes, the mime type of a file is not well set. For instance a pdf file that can be application/pdf (but also application/download or application/force-download or application/x-download or...) has been recognized by the server as text/html. Sorry I do not know yet why - but it happens. Such file will open directly in the browser. Change the mime type in the database and it will popup again<br />
]]></description>
            <pubDate>Thu, 16 Oct 2008 11:54:56 +0100</pubDate>
        </item>
        <item>
            <title>Tikiwiki script outside tikiwiki root</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=23</link>
            <description><![CDATA[If you want to write a php script using tikiwiki<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">define('TIKI_PATH', '/var/www/localhost/htdocs/tiki');
chdir(TIKI_PATH);
include('tiki-setup.php');</pre><br />
]]></description>
            <pubDate>Wed, 08 Oct 2008 18:10:25 +0100</pubDate>
        </item>
        <item>
            <title>Why wikiplugin must return the string with np</title>
            <link>http://tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=22</link>
            <description><![CDATA[If for instance you have a wikiplugin that returns a string <a class="wiki"  href="11:48PM" rel="">11:48PM</a>, this will be interpreted as a link. So it is important to return the plugin data surrounded with    ~np~ ....  ~/np~ . This wiki tags tells tikiwiki not to do further parsing on the string.<br />
]]></description>
            <pubDate>Sun, 28 Sep 2008 21:21:42 +0100</pubDate>
        </item>
    </channel>
</rss>
