Saturday, April 29, 2006 

Site Update

The Daily Digest has got a fresh new face. We have compleated a re-make of the site. Visit now and see the new layout.
Visit The Daily Digest

Tuesday, April 25, 2006 

Credit Card Review

Read our in-depth reviews of popular credit cards. Find one that fits you and apply securely online for free. Eveything from American Express, Delta SkyPoints, Visa, and Master Card. Check it out!

Credit Card Review

Tuesday, April 18, 2006 

Check for updates of "The Daily Digest"
Get them here
Mean Gene

Sunday, April 09, 2006 

Tiki #5 most popular application in PHP and #50 overall, according to Freshmeat

During the last few days, Tiki CMS/Groupware joined Freshmeat's top-50 most popular projects.

Freshmeat's Top 50 projects by popularity

Freshmeat's Top PHP projects

Congratulations to all the Tiki community!
more...

Build a Tiki Bar
Originally Posted on 4/9/2006 8:59:17 AMContent source: http://tikiwiki.org/tiki-read_article.php?articleId=122

Saturday, April 08, 2006 

PHP 4.4.1 released

For security reason, you must upgrade to php 4.4.1 at least if your register_globals is turned on.
See http://www.hardened-php.net/advisory_202005.79.html
more...

Build a Tiki Bar
Originally Posted on 4/9/2006 12:45:14 AMContent source: http://tikiwiki.org/tiki-read_article.php?articleId=121

 

TikiWiki 1.9.2 released

After the longest day of the year (daylight-saving time), the TikiWiki community released version 1.9.2 right in time for halloween.
This compatibility release for PHP5 and MySQL 4.1 includes lots of valuable bug-fixes.
more...

Build a Tiki Bar
Originally Posted on 4/8/2006 7:09:12 PMContent source: http://tikiwiki.org/tiki-read_article.php?articleId=120

 

TikiWiki 1.9.1.1 released

A new release of TikiWiki is now available on SourceForge.net: version 1.9.1.1 for the 1.9 -Sirius- branch.

This maintenance release includes fixes for a recently identified security flaw.

more...

Build a Tiki Bar
Originally Posted on 4/8/2006 8:25:26 AMContent source: http://tikiwiki.org/tiki-read_article.php?articleId=118

Friday, April 07, 2006 

Tiki 1.9.1 and 1.8.6 released!

After long hours of intensive fixing/testing/fixing, two new versions of TikiWiki are now available on Sourceforge: version 1.8.6 for the 1.8 -Polaris- branch, and 1.9.1 for the 1.9 -Sirius- branch.

These 2 releases include fixes for recent major security flaws (some disclosed, some not yet). The 2 recent XMLRPC flaws have been corrected. (http://phpxmlrpc.sourceforge.net/)

So, consider upgrading as a REALLY IMPORTANT initiative if you don't want any security surprise (even if some flaws only concern some optional features).
more...

Build a Tiki Bar
Originally Posted on 4/7/2006 10:53:21 PMContent source: http://tikiwiki.org/tiki-read_article.php?articleId=117

 

Recap on Installation Requirements

With many users posting in the forums and coming into our IRC channel requesting help as their TikiWiki site after a recent upgrade to 1.9 has started to generate blank or half drawn pages, I feel its needed to highlight the PHP memory_limit requirement again. Read more for the various links relating to this problem and solutions.
more...

Build a Tiki Bar
Originally Posted on 4/7/2006 8:28:53 AMContent source: http://tikiwiki.org/tiki-read_article.php?articleId=115

Thursday, April 06, 2006 

Centering a TikiWiki site

In a perfect world we would write one HTML document (template) and have one style sheet (CSS) that would render our glorious web pages in all types of web browsers but alias this is not the case.

Not pitching blame at anyone in particular but if you attempt to center your TikiWiki website using CSS you will probably find that Gecko-based browsers (e.g. Firefox) will easily obey your CSS while Internet Explorer will not.

Now you can center your web page quite easily for Gecko-based browsers by including the following CSS properties and values to the body section of your HTML document to give you a 10% left and right margin


Body{
margin: auto;
width: 80%;
}


However when you view this in dumb Internet Explorer the page will NOT be centered. You may attempt the following as suggested by some authors which works sometimes

Body{
text-align: center;
margin: auto;
width: 80%;
}

After mucking with these CSS properties for a while and getting spurious results you may decide that it’s just not worth it. But never fear there is a hack we can apply here.

There is an important CSS rule of precedence to understand here before we proceed. Without getting into all the intricate details of CSS cascading, and inheritance we can apply a general rule of thumb.

“The close a CSS property is to an HTML object the higher its precedence”

The following example illustrates this:

<div align="right">
<p align="left">
This text will align to the left
</p>
</div>

Now for the trick which breaks all the style rules– in the tiki.tpl doc add the following div tags to contain all the script on the page and inexplicably all will be centered for all browsers

<div style="text-align: center;">
<div style= "text-align: left; margin: auto; width: 80%;">

<<existing template page script..
{include file="header.tpl"}
{* Index we display a wiki page here *}

{include file="footer.tpl"}>>

</div>
</div>

Now this trick will raise some valid questions like why do we have to reset the left alignment at this level?

Good night and good luck

more...

Build a Tiki Bar
Originally Posted on 4/6/2006 9:15:52 PMContent source: http://tikiwiki.org/tiki-view_blog_post.php?blogId=22&postId=272

 

Feature deactivated : user_assigned_modules

I want everyone to see the same modules. It may help with performance also...
more...

Build a Tiki Bar
Originally Posted on 4/6/2006 12:57:50 PMContent source: http://tikiwiki.org/tiki-view_blog_post.php?blogId=2&postId=271