<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="Tiki CMS/Groupware via FeedCreator 1.7.2.1" -->
<?xml-stylesheet href="http://www.tikiexpert.com/lib/rss/rss-style.css" type="text/css"?>
<?xml-stylesheet href="http://www.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://www.tikiexpert.com/tiki-blogs_rss.php?ver=2</link>
        <lastBuildDate>Sun, 20 May 2012 05:46:59 +0100</lastBuildDate>
        <generator>Tiki CMS/Groupware via FeedCreator 1.7.2.1</generator>
        <image>
            <url>http://www.tikiexpert.com/img/tiki/tikilogo.png</url>
            <title>TikiExpert</title>
            <link>http://www.tikiexpert.com/tiki-index.php</link>
            <description><![CDATA[Feed provided by TikiExpert. Click to visit.]]></description>
        </image>
        <language>en-us</language>
        <item>
            <title>Sync the date on a linux system</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=39</link>
            <description><![CDATA[One way.. there are plenty<br />
su<br />
cat 'ntpdate ntp.ubuntu.com' > /etc/cron.daily/ntpdate<br />
chmod 755 /etc/cron.daily/ntpdate<br />
<br />
]]></description>
            <pubDate>Tue, 07 Feb 2012 23:18:08 +0100</pubDate>
        </item>
        <item>
            <title>phpmyadmin and pagination</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=38</link>
            <description><![CDATA[To take away the pagination, put in config.inc.php<br />
$cfg<a class="wiki"  href="'MaxTableList'" rel="">'MaxTableList'</a> = 1000;<br />
]]></description>
            <pubDate>Fri, 30 Sep 2011 17:13:08 +0100</pubDate>
        </item>
        <item>
            <title>Hide a tab in a template</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=37</link>
            <description><![CDATA[Sometimes, you customize a templaet and do not need anymore the tab at the top because it is the only one.<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">{if ...}
{$headerlib->add_js('$("#tab1").hide();')}
{/if}</pre><br />
]]></description>
            <pubDate>Tue, 27 Sep 2011 12:14:19 +0100</pubDate>
        </item>
        <item>
            <title>Facebook comments in article</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=36</link>
            <description><![CDATA[<pre class="codelisting" dir="ltr" style="overflow:auto;">&lt;div id="fb-root">&lt;/div>
&lt;script src="http://connect.facebook.net/fr_CA/all.js#appId=1111111&xfbml=1">&lt;/script>
&lt;fb:comments xid="{$articleId}" href="http://tikiexpert.com/{$articleId|sefurl:article}">&lt;/fb:comments></pre><br />
Replace 1111111 with your Application ID<br />
The application ID can be get at<br />
<a class="wiki external" target="_blank" href="http://www.facebook.com/developers" rel="external">http://www.facebook.com/developers</a> set up a new App<br />
See the documentation<br />
<a class="wiki external" target="_blank" href="http://forum.developers.facebook.net/viewtopic.php?pid=221601#p221601" rel="external">http://forum.developers.facebook.net/viewtopic.php?pid=221601#p221601</a><br />
And this is the screenshot<br />
<span class="img"><img alt="" src="dl17$display" border="0"  /></span><br />
]]></description>
            <pubDate>Tue, 20 Sep 2011 18:16:50 +0100</pubDate>
        </item>
        <item>
            <title>How to implement smarty error exception</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=35</link>
            <description><![CDATA[See commit 37404<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">try{
...
} catch (SmartyCompilerException $e) {
$smarty->loadPlugin('smarty_block_remarksbox');
$message = $e->getMessage();
return smarty_block_remarksbox(array(
   'type' => 'warning',
   'title' => tr('Failed to execute "%0" module', $mod_reference['name']),
   ), $message, $smarty);</pre><br />
]]></description>
            <pubDate>Mon, 19 Sep 2011 13:47:46 +0100</pubDate>
        </item>
        <item>
            <title>Redirect domain in htaccess</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=34</link>
            <description><![CDATA[If you have a bunch of domains that must be redirected to one domain<br />
Put in your .htaccess<br />
Rewritecond %{http_host} !<div class="simplebox">mydomain.com$ <a class="wiki"  href="nc" rel="">nc</a><br />
rewriterule </div>(.*)$ <a target="_blank" class="wiki"  href="http://mydomain.com/$1">http://mydomain.com/$1</a> <a class="wiki"  href="R=301,L" rel="">R=301,L</a><br />
<br />
All domains that arrive there will be redirected to THE domain<br />
]]></description>
            <pubDate>Thu, 10 Mar 2011 00:03:21 +0100</pubDate>
        </item>
        <item>
            <title>Thumbnail in facebook share</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=33</link>
            <description><![CDATA[If you want to control the thumbnail facebook share displays you have to put somthing like that in header.tpl<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;"></pre><br />
Do not put this line if you want facebook to scan your site and pick up the first images.<br />
If your logo is too large, you can always use a div with display:none of a smaller logo at the top of the body to have the image included in the facebook thumbnail<br />
]]></description>
            <pubDate>Tue, 14 Sep 2010 17:57:38 +0100</pubDate>
        </item>
        <item>
            <title>Rewrite rules again</title>
            <link>http://www.tikiexpert.com/tiki-view_blog_post.php?blogId=1&amp;postId=32</link>
            <description><![CDATA[The concept of the rewrite rules is so simple but to have them running it is sometimes painful.<br />
Some tricks<br />
<pre class="codelisting" dir="ltr" style="overflow:auto;">#Redirect forever
RewriteRule ^en/index.asp http://my.site.com/Home [R=301,L]
RewriteRule ^en/?$ [R=301,L]</pre><br />
Seems that the http is necessary for a permanent redirect<br />
If you want also to overwrite directories, you have to put in tiki.tpl a base href<br />
<br />
]]></description>
            <pubDate>Wed, 08 Sep 2010 21:47:23 +0100</pubDate>
        </item>
        <item>
            <title>Terms and conditions in a tracker</title>
            <link>http://www.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://www.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>
    </channel>
</rss>

