<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>ImpressCMS Community :: Forum</title>
    <link>http://community.impresscms.org/</link>
    <description>Make a Lasting Impression :: ImpressCMS Community Bulletin Board</description>
    <lastBuildDate>Thu, 11 Mar 2010 15:32:43 -2200</lastBuildDate>
    <docs>http://backend.userland.com/rss/</docs>
    <generator>CBB 3.08</generator>
    <category>Support Forums</category>
    <managingEditor>contact@impresscms.org</managingEditor>
    <webMaster>contact@impresscms.org</webMaster>
    <language>en</language>
        <image>
      <title>ImpressCMS Community :: Forum</title>
      <url>http://community.impresscms.org/modules/newbb/images/xoopsbb_slogo.png</url>
      <link>http://community.impresscms.org/</link>
      <width>92</width>
      <height>52</height>
    </image>
            <item>
      <title>Re: 1.2.0 =&gt;1.2.1 upgraded vs. iforum [by aph3x]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4141&amp;forum=9&amp;post_id=37345#forumpost37345</link>
      <description>Modules Support:: 1.2.0 =&gt;1.2.1 upgraded vs. iforum&lt;br /&gt;
but then again..why the hell is working on my main site and not on the subdomain i&amp;#039;m doing the redesign!?</description>
      <pubDate>Thu, 11 Mar 2010 13:33:08 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4141&amp;forum=9&amp;post_id=37345#forumpost37345</guid>
    </item>
        <item>
      <title>Re: Batch files for Linux servers? [by Madfish]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4142&amp;forum=12&amp;post_id=37339#forumpost37339</link>
      <description>ImpressCMS Member Lounge:: Batch files for Linux servers?&lt;br /&gt;
To edit root&amp;#039;s crontab, login as root and try:&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;xoopsCode&quot;&gt;&lt;code&gt;&lt;pre&gt;crontab -e&lt;/pre&gt;&lt;/code&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;The fiddly bit is getting the &lt;a href=&quot;http://www.crontabrocks.org/&quot; rel=&quot;external&quot;&gt;time settings right&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Re. the shell script, have a look at &lt;a href=&quot;http://bash.cyberciti.biz/web-server/restart-apache2-httpd-shell-script/&quot; rel=&quot;external&quot;&gt;this example&lt;/a&gt; - it checks if Apache is running, and if not, restarts it, includes cron stuff.&lt;br /&gt;&lt;br /&gt;Edit: This &lt;a href=&quot;http://www.cyberciti.biz/tips/howto-monitor-and-restart-linux-unix-service.html&quot; rel=&quot;external&quot;&gt;Monit&lt;/a&gt; tool looks pretty interesting - but also more fiddly to set up.</description>
      <pubDate>Thu, 11 Mar 2010 11:42:31 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4142&amp;forum=12&amp;post_id=37339#forumpost37339</guid>
    </item>
        <item>
      <title>Re: $this-&gt;setControl Marcan Videos... [by UnderDog]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4108&amp;forum=9&amp;post_id=37335#forumpost37335</link>
      <description>Modules Support:: $this-&gt;setControl Marcan Videos...&lt;br /&gt;
wow.. Steve, thank you for that explanation. It helps alot... Also for other projects :D&lt;br /&gt;&lt;br /&gt;I think for the joins part we need another marcan video ;-)</description>
      <pubDate>Thu, 11 Mar 2010 06:40:39 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4108&amp;forum=9&amp;post_id=37335#forumpost37335</guid>
    </item>
        <item>
      <title>Re: Database modeling software? [by skenow]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4138&amp;forum=52&amp;post_id=37334#forumpost37334</link>
      <description>Modules Development:: Database modeling software?&lt;br /&gt;
Some people are more visual than others - but those that posted about understanding the architecture first and how (and why) to normalize a database (and when not to) are key concepts to good db design.&lt;br /&gt;&lt;br /&gt;Another key thing to understand are data types and sizes and how they impact the performance of your database. If you are using an integer field to store a value that will either be yes/no or true/false, you&amp;#039;re wasting a lot of storage space and memory when querying on that field. Data integrity can also be compromised if you select an inappropriate data type for the field.&lt;br /&gt;&lt;br /&gt;Something to keep in mind is the difference between MySQL data types and sizes and PHP types and sizes. MySQL has tinyint, smallint, mediumint, int and bigint - PHP only has integer. So, to match your data being handled with PHP with how it is being inserted/updated from the db, you&amp;#039;ll have to work through validation rules in your PHP scripts.&lt;br /&gt;&lt;br /&gt;Some db architects work from the data objects out to the presentation layer, others work backwards from the presentation (reporting) back to the objects. I tend to do some of both.&lt;br /&gt;&lt;br /&gt;I did post some basic normalization info in your other post, thomas.&lt;br /&gt;&lt;br /&gt;MySQL Workbench can take an SQL CREATE script (found in the sql folders of most modules) and import that to create a visual layout of the database. You can then make changes and export a new create script or an ALTER script for making changes to your db. I used this during my db optimization blog series. (on our old blog, many of the posts haven&amp;#039;t been updated here - I need to polish them and find the images I used for them &lt;img src=&quot;http://community.impresscms.org/uploads/smil3dbd4d75edb5e.gif&quot; alt=&quot;&quot; /&gt; )&lt;br /&gt;&lt;br /&gt;Another part of all this is to understand what queries will be run against your database. This will help you understand what indexes will help and which don&amp;#039;t.</description>
      <pubDate>Thu, 11 Mar 2010 02:32:48 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4138&amp;forum=52&amp;post_id=37334#forumpost37334</guid>
    </item>
        <item>
      <title>Re: @Aphex - per your request [by MrTheme]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4135&amp;forum=55&amp;post_id=37331#forumpost37331</link>
      <description>Development Discussions:: @Aphex - per your request&lt;br /&gt;
No problem gents. Turned out to be a very simple addition.&lt;br /&gt;&lt;br /&gt;I will up it in once Reflex has been merged into the trunk.</description>
      <pubDate>Wed, 10 Mar 2010 23:34:01 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4135&amp;forum=55&amp;post_id=37331#forumpost37331</guid>
    </item>
        <item>
      <title>Re: Help with CSS optimization [by MrTheme]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4139&amp;forum=10&amp;post_id=37330#forumpost37330</link>
      <description>Themes and Templates:: Help with CSS optimization&lt;br /&gt;
I run it live all the time, I just wrap it in admin tags so only I see it.&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;xoopsCode&quot;&gt;&lt;code&gt;&lt;pre&gt;
&amp;lt;{if $xoops_isadmin}&amp;gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;&amp;lt;{$xoops_imageurl}&amp;gt;/js/script.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;{/if}&amp;gt;
&lt;/pre&gt;&lt;/code&gt;&lt;/div&gt;</description>
      <pubDate>Wed, 10 Mar 2010 23:32:42 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4139&amp;forum=10&amp;post_id=37330#forumpost37330</guid>
    </item>
        <item>
      <title>Re: icms_version IPF &amp; SQL - A Little Different? [by Tom]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4124&amp;forum=52&amp;post_id=37328#forumpost37328</link>
      <description>Modules Development:: icms_version IPF &amp; SQL - A Little Different?&lt;br /&gt;
Well I did think that had something to do with it but after my questions and your answers I presumed this was optional only if you required something additional doing to the DB upon install or update.&lt;br /&gt;&lt;br /&gt;What further made be believe was that the module tries to remove the tables on uninstall. so I though naturally that install would be the opposite and not require another file.&lt;br /&gt;&lt;br /&gt;This is why I asked for a basic walk through as that would have then confirmed to me I was missing something.&lt;br /&gt;&lt;br /&gt;If quote from &lt;a href=&quot;http://community.impresscms.org/modules/newbb/viewtopic.php?post_id=37142#forumpost37142&quot; rel=&quot;external&quot;&gt;#8&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Which you pointed out I&amp;#039;d missed, then you will note that you never mentioned anything of of the said oninstall and onupdate code. I realise from our conversation in MSN that you wasn&amp;#039;t aware of this yourself.&lt;br /&gt;&lt;br /&gt;It was only in #10, #11 and #12 we discussed the file but it appeared this was more of an after install or update, seems our assumptions were wrong.&lt;br /&gt;&lt;br /&gt;Thank you for all your help, you&amp;#039;ve been great, &lt;img src=&quot;http://community.impresscms.org/uploads/smil3dbd4d6422f04.gif&quot; alt=&quot;&quot; /&gt; I&amp;#039;ll give this a try now.  &lt;img src=&quot;http://community.impresscms.org/uploads/smil3dbd4d4e4c4f2.gif&quot; alt=&quot;&quot; /&gt;</description>
      <pubDate>Wed, 10 Mar 2010 20:01:09 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4124&amp;forum=52&amp;post_id=37328#forumpost37328</guid>
    </item>
        <item>
      <title>Re: Theme opmization / html file [by UnderDog]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4140&amp;forum=10&amp;post_id=37318#forumpost37318</link>
      <description>Themes and Templates:: Theme opmization / html file&lt;br /&gt;
Debianus is right.&lt;br /&gt;This is the framework I use.&lt;br /&gt;&lt;a href=&quot;http://community.impresscms.org/modules/smartsection/item.php?itemid=472&quot; rel=&quot;external&quot;&gt;http://community.impresscms.org/mod ... itemid=472&lt;/a&gt;&lt;br /&gt;In the weekend, I&amp;#039;ll copy your theme over to this framework and post an example.&lt;br /&gt;It&amp;#039;s better to adjust using your images and stuff, like debianus says.</description>
      <pubDate>Wed, 10 Mar 2010 06:13:52 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4140&amp;forum=10&amp;post_id=37318#forumpost37318</guid>
    </item>
        <item>
      <title>Re: Messy characters after upgrading to 1.2 [by UnderDog]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4119&amp;forum=49&amp;post_id=37300#forumpost37300</link>
      <description>Installation, Upgrade and Migration:: Messy characters after upgrading to 1.2&lt;br /&gt;
Hi Claudiano,&lt;br /&gt;&lt;br /&gt;I think that it might just be a bug with SmartSection.&lt;br /&gt;Please check everything else regarding your site. Let our other guys help you too, of course, since I see skenow is on the case :D&lt;br /&gt;&lt;br /&gt;If everything else seems to be working, let&amp;#039;s focus on SmartSection.&lt;br /&gt;If I can reproduce the bug, I will try and fix it (if it&amp;#039;s fixable in SmartSection) good deal?</description>
      <pubDate>Tue, 09 Mar 2010 17:44:30 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4119&amp;forum=49&amp;post_id=37300#forumpost37300</guid>
    </item>
        <item>
      <title>Re: Man, Paypal Sucks! [by Tom]</title>
      <link>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4131&amp;forum=12&amp;post_id=37298#forumpost37298</link>
      <description>ImpressCMS Member Lounge:: Man, Paypal Sucks!&lt;br /&gt;
Your right, I think a lot of it boils down to luck. Royal Mail have misplaced a few things over the years. Occasionally I get the neighbours mail also but thats normally when newer postmen are on the round.</description>
      <pubDate>Tue, 09 Mar 2010 17:23:27 -2200</pubDate>
      <guid>http://community.impresscms.org/modules/newbb/viewtopic.php?topic_id=4131&amp;forum=12&amp;post_id=37298#forumpost37298</guid>
    </item>
      </channel>
</rss>