<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[Twilip Support Forums - All Forums]]></title>
		<link>http://www.twilip.net/</link>
		<description><![CDATA[Twilip Support Forums - http://www.twilip.net]]></description>
		<pubDate>Sun, 20 May 2012 08:06:28 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Updated MyBB - Registration Open Again]]></title>
			<link>http://www.twilip.net/showthread.php?tid=3276</link>
			<pubDate>Sat, 11 Feb 2012 09:04:02 +0000</pubDate>
			<guid isPermaLink="false">http://www.twilip.net/showthread.php?tid=3276</guid>
			<description><![CDATA[MyBB has now bee updated to the latest version, and I've installed a spam protection plugin which should help reduce the amount of spam I have to sit and remove every day from this forum.<br />
<br />
So I have enabled registration once again. When you register you can post in the forum, however your posts will be moderated until you you get manual approval by an admin.]]></description>
			<content:encoded><![CDATA[MyBB has now bee updated to the latest version, and I've installed a spam protection plugin which should help reduce the amount of spam I have to sit and remove every day from this forum.<br />
<br />
So I have enabled registration once again. When you register you can post in the forum, however your posts will be moderated until you you get manual approval by an admin.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Twilip Engine - Update to version 2.2.0.3]]></title>
			<link>http://www.twilip.net/showthread.php?tid=3275</link>
			<pubDate>Fri, 10 Feb 2012 23:16:54 +0000</pubDate>
			<guid isPermaLink="false">http://www.twilip.net/showthread.php?tid=3275</guid>
			<description><![CDATA[I'm aware I haven't released an update in the Twilip Engine for quite some time, and I opened it up tonight and finalized some changes I had been working on.<br />
<br />
I know again that I have changed the way the files are called/opened but as this is still right at the beginning of development I feel this may change as time moves on.<br />
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Main Changes</span></span><br />
A few main major changes have happened:<ul>
<li>The file naming convention has been changed</li>
<li>Actions are no longer included from the index file. They are now just files in the root directory<br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Module Updates</span></span><ul>
<li>The Smarty template engine is now updated to the latest version<br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Added Features</span></span><br />
In the new version some added features have been included:<ul>
<li>Footer redesigned to look more professional<br />
</li></ul>
<br />
More changes are to come, but for now that's some of the stuff I'm been working on in my spare time.]]></description>
			<content:encoded><![CDATA[I'm aware I haven't released an update in the Twilip Engine for quite some time, and I opened it up tonight and finalized some changes I had been working on.<br />
<br />
I know again that I have changed the way the files are called/opened but as this is still right at the beginning of development I feel this may change as time moves on.<br />
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Main Changes</span></span><br />
A few main major changes have happened:<ul>
<li>The file naming convention has been changed</li>
<li>Actions are no longer included from the index file. They are now just files in the root directory<br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Module Updates</span></span><ul>
<li>The Smarty template engine is now updated to the latest version<br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Added Features</span></span><br />
In the new version some added features have been included:<ul>
<li>Footer redesigned to look more professional<br />
</li></ul>
<br />
More changes are to come, but for now that's some of the stuff I'm been working on in my spare time.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PHP Bad Word Filter and Censor]]></title>
			<link>http://www.twilip.net/showthread.php?tid=5</link>
			<pubDate>Sun, 03 Apr 2011 15:29:43 +0000</pubDate>
			<guid isPermaLink="false">http://www.twilip.net/showthread.php?tid=5</guid>
			<description><![CDATA[This script can be used to filter out unwanted words from a variable.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">//&nbsp;A&nbsp;list&nbsp;of&nbsp;all&nbsp;the&nbsp;words&nbsp;you&nbsp;want&nbsp;to&nbsp;ban<br /></span><span style="color: #0000BB">&#36;filterlist&nbsp;</span><span style="color: #007700">=&nbsp;array(</span><span style="color: #DD0000">'silly'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'stupid'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'wicked'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">//&nbsp;The&nbsp;message&nbsp;you&nbsp;want&nbsp;to&nbsp;filter<br /></span><span style="color: #0000BB">&#36;message&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'That&nbsp;silly&nbsp;girl&nbsp;went&nbsp;on&nbsp;a&nbsp;date&nbsp;with&nbsp;that&nbsp;stupid&nbsp;stoopid&nbsp;boy&nbsp;who&nbsp;was&nbsp;wicked.'</span><span style="color: #007700">;<br /><br /></span><span style="color: #FF8000">//&nbsp;Run&nbsp;the&nbsp;filter&nbsp;function<br /></span><span style="color: #007700">echo&nbsp;(</span><span style="color: #0000BB">filtermessage</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;filterlist</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">));<br /><br /></span><span style="color: #FF8000">/*&nbsp;-------------------------------------------------------------------------------<br />&nbsp;&nbsp;&nbsp;&nbsp;Function:&nbsp;filtermessage<br />&nbsp;&nbsp;&nbsp;&nbsp;Description:&nbsp;Filter&nbsp;out&nbsp;a&nbsp;selection&nbsp;of&nbsp;words&nbsp;from&nbsp;a&nbsp;message&nbsp;and&nbsp;replace<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;them&nbsp;with&nbsp;a&nbsp;word&nbsp;of&nbsp;your&nbsp;choice<br />&nbsp;&nbsp;&nbsp;&nbsp;Usage:&nbsp;&nbsp;&nbsp;&nbsp;filtermessage(&nbsp;array('silly'),&nbsp;'silly&nbsp;person',&nbsp;'removed');<br />&nbsp;&nbsp;&nbsp;-------------------------------------------------------------------------------&nbsp;*/<br /></span><span style="color: #007700">function&nbsp;</span><span style="color: #0000BB">filtermessage</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;filterlist</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;replace&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'[removed]'</span><span style="color: #007700">){<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;foreach(</span><span style="color: #0000BB">&#36;filterlist&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;currentword</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Remove&nbsp;any&nbsp;words&nbsp;straight&nbsp;out&nbsp;from&nbsp;the&nbsp;list<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;message&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">eregi_replace</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;currentword</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">'&nbsp;'&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">&#36;replace&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #DD0000">'&nbsp;'</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Get&nbsp;each&nbsp;individual&nbsp;word<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;words&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'&nbsp;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Check&nbsp;each&nbsp;word&nbsp;for&nbsp;a&nbsp;phonetic&nbsp;match<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">foreach(</span><span style="color: #0000BB">&#36;words&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;word</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(</span><span style="color: #0000BB">metaphone</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;word</span><span style="color: #007700">))&nbsp;==&nbsp;</span><span style="color: #0000BB">metaphone</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;currentword</span><span style="color: #007700">)))&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;message&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">eregi_replace</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;word</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp;'&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">&#36;replace&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #DD0000">'&nbsp;'</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">;<br /><br />}<br /><br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
]]></description>
			<content:encoded><![CDATA[This script can be used to filter out unwanted words from a variable.<br />
<br />
<div class="codeblock phpcodeblock"><div class="title">PHP Code:<br />
</div><div class="body"><div dir="ltr"><code><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #FF8000">//&nbsp;A&nbsp;list&nbsp;of&nbsp;all&nbsp;the&nbsp;words&nbsp;you&nbsp;want&nbsp;to&nbsp;ban<br /></span><span style="color: #0000BB">&#36;filterlist&nbsp;</span><span style="color: #007700">=&nbsp;array(</span><span style="color: #DD0000">'silly'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'stupid'</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'wicked'</span><span style="color: #007700">);<br /><br /></span><span style="color: #FF8000">//&nbsp;The&nbsp;message&nbsp;you&nbsp;want&nbsp;to&nbsp;filter<br /></span><span style="color: #0000BB">&#36;message&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'That&nbsp;silly&nbsp;girl&nbsp;went&nbsp;on&nbsp;a&nbsp;date&nbsp;with&nbsp;that&nbsp;stupid&nbsp;stoopid&nbsp;boy&nbsp;who&nbsp;was&nbsp;wicked.'</span><span style="color: #007700">;<br /><br /></span><span style="color: #FF8000">//&nbsp;Run&nbsp;the&nbsp;filter&nbsp;function<br /></span><span style="color: #007700">echo&nbsp;(</span><span style="color: #0000BB">filtermessage</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;filterlist</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">));<br /><br /></span><span style="color: #FF8000">/*&nbsp;-------------------------------------------------------------------------------<br />&nbsp;&nbsp;&nbsp;&nbsp;Function:&nbsp;filtermessage<br />&nbsp;&nbsp;&nbsp;&nbsp;Description:&nbsp;Filter&nbsp;out&nbsp;a&nbsp;selection&nbsp;of&nbsp;words&nbsp;from&nbsp;a&nbsp;message&nbsp;and&nbsp;replace<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;them&nbsp;with&nbsp;a&nbsp;word&nbsp;of&nbsp;your&nbsp;choice<br />&nbsp;&nbsp;&nbsp;&nbsp;Usage:&nbsp;&nbsp;&nbsp;&nbsp;filtermessage(&nbsp;array('silly'),&nbsp;'silly&nbsp;person',&nbsp;'removed');<br />&nbsp;&nbsp;&nbsp;-------------------------------------------------------------------------------&nbsp;*/<br /></span><span style="color: #007700">function&nbsp;</span><span style="color: #0000BB">filtermessage</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;filterlist</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;replace&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">'[removed]'</span><span style="color: #007700">){<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;foreach(</span><span style="color: #0000BB">&#36;filterlist&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;currentword</span><span style="color: #007700">){<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Remove&nbsp;any&nbsp;words&nbsp;straight&nbsp;out&nbsp;from&nbsp;the&nbsp;list<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;message&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">eregi_replace</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;currentword</span><span style="color: #007700">),&nbsp;</span><span style="color: #DD0000">'&nbsp;'&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">&#36;replace&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #DD0000">'&nbsp;'</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Get&nbsp;each&nbsp;individual&nbsp;word<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;words&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">explode</span><span style="color: #007700">(</span><span style="color: #DD0000">'&nbsp;'</span><span style="color: #007700">,&nbsp;</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #FF8000">//&nbsp;Check&nbsp;each&nbsp;word&nbsp;for&nbsp;a&nbsp;phonetic&nbsp;match<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #007700">foreach(</span><span style="color: #0000BB">&#36;words&nbsp;</span><span style="color: #007700">as&nbsp;</span><span style="color: #0000BB">&#36;word</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if(</span><span style="color: #0000BB">metaphone</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;word</span><span style="color: #007700">))&nbsp;==&nbsp;</span><span style="color: #0000BB">metaphone</span><span style="color: #007700">(</span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;currentword</span><span style="color: #007700">)))&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">&#36;message&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">eregi_replace</span><span style="color: #007700">(</span><span style="color: #0000BB">&#36;word</span><span style="color: #007700">,&nbsp;</span><span style="color: #DD0000">'&nbsp;'&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #0000BB">&#36;replace&nbsp;</span><span style="color: #007700">.&nbsp;</span><span style="color: #DD0000">'&nbsp;'</span><span style="color: #007700">,</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;</span><span style="color: #0000BB">&#36;message</span><span style="color: #007700">;<br /><br />}<br /><br /></span><span style="color: #0000BB">?&gt;</span></code></div></div></div>
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Twilip Engine - Update to version 2.2.0.2]]></title>
			<link>http://www.twilip.net/showthread.php?tid=4</link>
			<pubDate>Sat, 04 Sep 2010 12:21:01 +0000</pubDate>
			<guid isPermaLink="false">http://www.twilip.net/showthread.php?tid=4</guid>
			<description><![CDATA[There has been a lot of changes in the Twilip Engine mainframe lately which will hopefully make the framework easier to use, more user friendly, and of course more features for you to play with.<br />
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Bugs</span></span><br />
In the new version some bugs have been fixed:<ul>
<li>Sessions now have timeouts set at a default of 15 minutes of no activity. This means sessions will be deleted after 15 minutes of inactivity and therefore users logged off. This can be changed in a new settings table.</li>
<li>If the debug_mode option is set to false users will no longer be able to view the debug option in the footer, and the database class physically will not produce any debug messages to the debug (SMARTY) VARIABLE<br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Added Features</span></span><br />
In the new version some added features have been included:<ul>
<li>Better, user friendly User CP template/theme</li>
<li>Profile options, such as First Name, Last Name, Website, About Me, and other customisable profile information<br />
</li></ul>
<br />
Hopefully there will be more to come soon and then the script can be fully released, but for now if anyone wants to try the new updates they have been released in the new version.]]></description>
			<content:encoded><![CDATA[There has been a lot of changes in the Twilip Engine mainframe lately which will hopefully make the framework easier to use, more user friendly, and of course more features for you to play with.<br />
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Bugs</span></span><br />
In the new version some bugs have been fixed:<ul>
<li>Sessions now have timeouts set at a default of 15 minutes of no activity. This means sessions will be deleted after 15 minutes of inactivity and therefore users logged off. This can be changed in a new settings table.</li>
<li>If the debug_mode option is set to false users will no longer be able to view the debug option in the footer, and the database class physically will not produce any debug messages to the debug (SMARTY) VARIABLE<br />
</li></ul>
<br />
<span style="font-size: medium;"><span style="font-weight: bold;">Added Features</span></span><br />
In the new version some added features have been included:<ul>
<li>Better, user friendly User CP template/theme</li>
<li>Profile options, such as First Name, Last Name, Website, About Me, and other customisable profile information<br />
</li></ul>
<br />
Hopefully there will be more to come soon and then the script can be fully released, but for now if anyone wants to try the new updates they have been released in the new version.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Fresh Installation Guide]]></title>
			<link>http://www.twilip.net/showthread.php?tid=3</link>
			<pubDate>Mon, 30 Aug 2010 20:25:21 +0000</pubDate>
			<guid isPermaLink="false">http://www.twilip.net/showthread.php?tid=3</guid>
			<description><![CDATA[<span style="font-size: x-large;">How to Install a Fresh Twilip Engine</span><br />
As of the latest release 2.2 the Engine now comes with an installer, meaning you no longer need to manually install the SQL files and configure the core.config.php file.<br />
<br />
Instead you can follow the simple steps below:<br />
<br />
1) Goto the official site and download the latest version:<br />
<a href="http://www.twilip.com/?act=products&amp;cmd=engine" target="_blank">http://www.twilip.com/?act=products&cmd=engine</a><br />
<br />
2) Extract the files into a new folder on your web server.<br />
<br />
3) Goto your website and you will be taken to the installer directly.<br />
<br />
4) If your MySQL account has direct access to create new databases then you will not need to setup a new database manually before, as the installer comes with an option to create a new database.<br />
<br />
5) Once you have completed the installer, you are now ready to start programming, or adding Twilip Products onto your site.<br />
<br />
<span style="font-style: italic;">Remember you can always goto the <a href="http://www.twilip.net/forumdisplay.php?fid=7" target="_blank">Help and Support</a> section of our site if you get stuck or need help on anything</span>]]></description>
			<content:encoded><![CDATA[<span style="font-size: x-large;">How to Install a Fresh Twilip Engine</span><br />
As of the latest release 2.2 the Engine now comes with an installer, meaning you no longer need to manually install the SQL files and configure the core.config.php file.<br />
<br />
Instead you can follow the simple steps below:<br />
<br />
1) Goto the official site and download the latest version:<br />
<a href="http://www.twilip.com/?act=products&amp;cmd=engine" target="_blank">http://www.twilip.com/?act=products&cmd=engine</a><br />
<br />
2) Extract the files into a new folder on your web server.<br />
<br />
3) Goto your website and you will be taken to the installer directly.<br />
<br />
4) If your MySQL account has direct access to create new databases then you will not need to setup a new database manually before, as the installer comes with an option to create a new database.<br />
<br />
5) Once you have completed the installer, you are now ready to start programming, or adding Twilip Products onto your site.<br />
<br />
<span style="font-style: italic;">Remember you can always goto the <a href="http://www.twilip.net/forumdisplay.php?fid=7" target="_blank">Help and Support</a> section of our site if you get stuck or need help on anything</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Twilip Engine (MainFrame)]]></title>
			<link>http://www.twilip.net/showthread.php?tid=2</link>
			<pubDate>Mon, 30 Aug 2010 15:37:49 +0000</pubDate>
			<guid isPermaLink="false">http://www.twilip.net/showthread.php?tid=2</guid>
			<description><![CDATA[<img src="http://www.twilip.com/style/images/home_next.png" style="float: right;" /><br />
<span style="font-weight: bold;">Current Status:</span> BETA (Supported)<br />
<span style="font-weight: bold;">Current Version:</span> 2.2.0.2<br />
<br />
<span style="font-weight: bold;">Downloads:</span><br />
<a href="http://www.twilip.com/downloads/twilip-engine-2.2.0.1-290810.rar" target="_blank">twilip-engine-2.2.0.1-290810.rar</a><br />
<a href="http://www.twilip.com/downloads/twilip-engine-2.2.0.1-290810.rar" target="_blank">twilip-engine-2.2.0.1-290810.7z</a><br />
<a href="http://www.twilip.com/downloads/twilip-engine-2.2.0.1-290810.rar" target="_blank">twilip-engine-2.2.0.1-290810.zip</a><br />
<br />
<span style="font-weight: bold;">Date of Last Release:</span> 20 April 2011<br />
<br />
<span style="font-weight: bold;">Description:</span><br />
The Twilip Engine (MainFrame) is the core framework that all Twilip products run off. If you are looking to develop any of our scripts further it's important you read through the documentation for the <span style="font-weight: bold;">Engine</span> to understand how it's database and styling manipulation works.<br />
<br />
<span style="font-weight: bold;">Components:</span><br />
<span style="text-decoration: underline;">Smarty</span> - For displaying templates and output to the client<br />
<span style="text-decoration: underline;">PHP</span> - The main scripting language used<br />
<span style="text-decoration: underline;">MySQL</span> - Currently the only supported database system<br />
<span style="text-decoration: underline;">jQuery</span> - For ajax commands and create the great javascript framework<br />
<br />
<span style="font-weight: bold;">Features:</span><br />
<span style="text-decoration: underline;">User System</span>]]></description>
			<content:encoded><![CDATA[<img src="http://www.twilip.com/style/images/home_next.png" style="float: right;" /><br />
<span style="font-weight: bold;">Current Status:</span> BETA (Supported)<br />
<span style="font-weight: bold;">Current Version:</span> 2.2.0.2<br />
<br />
<span style="font-weight: bold;">Downloads:</span><br />
<a href="http://www.twilip.com/downloads/twilip-engine-2.2.0.1-290810.rar" target="_blank">twilip-engine-2.2.0.1-290810.rar</a><br />
<a href="http://www.twilip.com/downloads/twilip-engine-2.2.0.1-290810.rar" target="_blank">twilip-engine-2.2.0.1-290810.7z</a><br />
<a href="http://www.twilip.com/downloads/twilip-engine-2.2.0.1-290810.rar" target="_blank">twilip-engine-2.2.0.1-290810.zip</a><br />
<br />
<span style="font-weight: bold;">Date of Last Release:</span> 20 April 2011<br />
<br />
<span style="font-weight: bold;">Description:</span><br />
The Twilip Engine (MainFrame) is the core framework that all Twilip products run off. If you are looking to develop any of our scripts further it's important you read through the documentation for the <span style="font-weight: bold;">Engine</span> to understand how it's database and styling manipulation works.<br />
<br />
<span style="font-weight: bold;">Components:</span><br />
<span style="text-decoration: underline;">Smarty</span> - For displaying templates and output to the client<br />
<span style="text-decoration: underline;">PHP</span> - The main scripting language used<br />
<span style="text-decoration: underline;">MySQL</span> - Currently the only supported database system<br />
<span style="text-decoration: underline;">jQuery</span> - For ajax commands and create the great javascript framework<br />
<br />
<span style="font-weight: bold;">Features:</span><br />
<span style="text-decoration: underline;">User System</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Forum Open - To replace Wiki]]></title>
			<link>http://www.twilip.net/showthread.php?tid=1</link>
			<pubDate>Mon, 30 Aug 2010 15:08:26 +0000</pubDate>
			<guid isPermaLink="false">http://www.twilip.net/showthread.php?tid=1</guid>
			<description><![CDATA[I have decided that it will be better for everyone if instead of having a Wiki site I'll just make a forum where we can post updates to scripts and where you can ask questions and get support when you need it.<br />
<br />
I may put a Wiki site up again in the future, but for the moment I think this is more appropriate until at least the company grows a little bit.<br />
<br />
I'll hopefully get some support documentation and information on the Twilip Engine by the end of the day.<br />
<br />
Thanks]]></description>
			<content:encoded><![CDATA[I have decided that it will be better for everyone if instead of having a Wiki site I'll just make a forum where we can post updates to scripts and where you can ask questions and get support when you need it.<br />
<br />
I may put a Wiki site up again in the future, but for the moment I think this is more appropriate until at least the company grows a little bit.<br />
<br />
I'll hopefully get some support documentation and information on the Twilip Engine by the end of the day.<br />
<br />
Thanks]]></content:encoded>
		</item>
	</channel>
</rss>
