<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://fluxbb.org/forums/extern.php?action=feed&amp;type=rss&amp;tid=3542" rel="self" type="application/rss+xml" />
		<title><![CDATA[FluxBB Forums / FluxBB-1.4-RC1 released]]></title>
		<link>http://fluxbb.org/forums/viewtopic.php?id=3542</link>
		<description><![CDATA[The most recent posts in FluxBB-1.4-RC1 released.]]></description>
		<lastBuildDate>Tue, 26 Jan 2010 00:16:04 +0000</lastBuildDate>
		<generator>FluxBB 1.4.8</generator>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=28217#p28217</link>
			<description><![CDATA[<div class="quotebox"><cite>lie2815 wrote:</cite><blockquote><div><p>If the forum is important - backup, please!</p></div></blockquote></div><p>Here is a Shell script I wrote to automate the SVN pull daily.&#160; Might be helpful to some</p><div class="codebox"><pre class="vscroll"><code>#!/bin/sh
 
# Script created 2008-03-27 by Tommy Evans (hostbunch.com) to dump a production database into a test database
# and grab the latest SVN for project
# Update 2010-01-17 by Tommy Evans - Added variables and path to fluxbb 1.4
 
#############################################
###### Configure the below variables ########
#############################################
# The domain in which to copy files from.
SRCDOMAIN=&quot;domain.com&quot;
 
# The domain in which to copy files to.
DESTDOMAIN=&quot;fluxbb14.domain.com&quot;
 
#SVN Path
SVN=&quot;http://fluxbb.org/svn/fluxbb/trunk/&quot;
 
#The source SQL database
SRCSQL=&quot;srcsql.domain.com&quot;
SRCUSER=&quot;srcuser&quot;
SRCPSSWD=&quot;srcpassword&quot;
SRCDB=&quot;punbb&quot;
 
#The destination SQL database
DESTSQL=&quot;testdb.domain.com&quot;
DESTUSER=&quot;destuser&quot;
DESTPSSWD=&quot;despassword&quot;
DESTDB=&quot;fluxbb14&quot;
 
STYLE=&quot;Oxygen&quot;
## Modify the below for any custom SQL you wish to add. It will go at the bottom of this script
CUSTOMSQL1=&quot;UPDATE config SET conf_value = &#039;${STYLE}&#039; WHERE CONVERT(conf_name USING utf8) = &#039;o_default_style&#039;;&quot;
CUSTOMSQL2=&quot;UPDATE users set style = &#039;${STYLE}&#039; where CONVERT(style USING utf8) != &#039;${STYLE}&#039;;&quot;
CUSTOMSQL3=&quot;UPDATE config SET conf_value = &#039;http://${DESTDOMAIN}/upload&#039; WHERE CONVERT(conf_name USING utf8) = &#039;o_base_url_alt&#039;;&quot;
CUSTOMSQL4=&quot;UPDATE config SET conf_value = &#039;http://${DESTDOMAIN}/upload&#039; WHERE CONVERT(conf_name USING utf8) = &#039;o_base_url&#039;;&quot;
CUSTOMSQL5=&quot;TRUNCATE search_cache;&quot;
CUSTOMSQL6=&quot;TRUNCATE search_matches;&quot;
CUSTOMSQL7=&quot;TRUNCATE search_words;&quot;
#############################################
###### End of configured variables   ########
#############################################
 
echo &quot;Clear old cache direcory&quot;
rm -f ${HOME}/${DESTDOMAIN}/upload/cache/
 
echo &quot;Get the latest SVN from ${SVN}&quot;
cd ${HOME}/${DESTDOMAIN}
svn up ${SVN} ${HOME}/${DESTDOMAIN}
 
echo &quot;Remove install.php assumes you want to run db_update.php&quot;
echo &quot;If that is not the case, comment this line out&quot;
rm -f ${HOME}/${DESTDOMAIN}/upload/install.php
 
# Abort on any errors
set -e
 
cd ${HOME}
 
echo &quot;clean up ${SRCDB} before the dump&quot;
mysqlcheck --auto-repair -r -s -u${SRCUSER} -p${SRCPSSWD} -h ${SRCSQL} -B ${SRCDB}
 
echo &quot;dump ${SRCDB} to ${DESTDB}&quot;
mysqldump -u${SRCUSER} -p${SRCPSSWD} -h ${SRCSQL} --opt -f -n ${SRCDB} | mysql -u${DESTUSER} -p${DESTPSSWD} -h ${DESTSQL} -D ${DESTDB}
 
echo &quot;Update database custom SQL&quot;
mysql -f -n -u${DESTUSER} -p${DESTPSSWD} -h ${DESTSQL} -D ${DESTDB} -e &quot;${CUSTOMSQL1}${CUSTOMSQL2}${CUSTOMSQL3}${CUSTOMSQL4}${CUSTOMSQL5}${CUSTOMSQL6}${CUSTOMSQL7}&quot;
 
echo &quot;Get the avatars from ${SRCDOMAIN}&quot;
cp -u ${HOME}/${SRCDOMAIN}/img/avatars/* ${HOME}/${DESTDOMAIN}/upload/img/avatars/
 
#move db_update.php and .htaccess
#cp -u ${HOME}/${DESTDOMAIN}/extras/db_update.php ${HOME}/${DESTDOMAIN}/upload/
#cp -u ${HOME}/${DESTDOMAIN}/upload/.htaccess.dist ${HOME}/${DESTDOMAIN}/upload/.htaccess
#cp -u ${HOME}/${DESTDOMAIN}/.htaccess ${HOME}/${DESTDOMAIN}/upload/.htaccess
 
#add redirect to upload folder
/usr/local/php5/bin/php -q &lt;&lt; EOF
&lt;?php
#file_put_contents(&quot;${HOME}/${DESTDOMAIN}/.htaccess&quot;, &quot;\n\nRewriteEngine On\nRedirectMatch ^/\$  http://${DESTDOMAIN}/upload&quot;, FILE_APPEND);
?&gt;</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Odis)]]></author>
			<pubDate>Tue, 26 Jan 2010 00:16:04 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=28217#p28217</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27742#p27742</link>
			<description><![CDATA[<p>A clean install is just a case of uploading the files then browsing to the install.php script and following the instructions.</p>]]></description>
			<author><![CDATA[dummy@example.com (Reines)]]></author>
			<pubDate>Sat, 16 Jan 2010 15:22:29 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27742#p27742</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27741#p27741</link>
			<description><![CDATA[<p>Hi <img src="http://fluxbb.org/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>I don&#039;t see any explanation for installing 1.4 version. I guess we should do as&#160; <a href="http://fluxbb.org/wiki/v1.2:install_info">in the 1.2 version</a> ? What about the database (I&#039;m talking about a new installation, not an upgrade) ? Shall we do something special (I would like to install it on a mysql 5 basis) ?</p><p>Thanks!</p>]]></description>
			<author><![CDATA[dummy@example.com (jojaba)]]></author>
			<pubDate>Sat, 16 Jan 2010 15:21:16 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27741#p27741</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27550#p27550</link>
			<description><![CDATA[<p>Just installed this on a test forum with no problems. Seems to be working fine so far, but the default text size is a bit small for these eyes. This is easily remedied via CSS though. Looking forward to seeing what the new theme looks like. Hope it&#039;s along the lines of 1.3, which I really like.</p>]]></description>
			<author><![CDATA[dummy@example.com (clintonmass)]]></author>
			<pubDate>Sun, 10 Jan 2010 02:50:16 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27550#p27550</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27528#p27528</link>
			<description><![CDATA[<p>Nice, <br />Good job <img src="http://fluxbb.org/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (x3dt)]]></author>
			<pubDate>Sat, 09 Jan 2010 22:16:43 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27528#p27528</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27522#p27522</link>
			<description><![CDATA[<p>Updated a copy of a 1.2 and 1.3 forum, no problems so far.</p><p>Nice job <img src="http://fluxbb.org/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Darren)]]></author>
			<pubDate>Sat, 09 Jan 2010 21:45:21 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27522#p27522</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27510#p27510</link>
			<description><![CDATA[<div class="quotebox"><cite>lie2815 wrote:</cite><blockquote><div><div class="quotebox"><cite>Reines wrote:</cite><blockquote><div><div class="quotebox"><cite>adaur wrote:</cite><blockquote><div><p>I would know one thing : can I begin to modify this RC, will be there a lot of modifications in the final release ?</p></div></blockquote></div><p>The only changes will be bug fixes or very minor tweaks.</p></div></blockquote></div><p>Which means you should be fine applying a patch when 1.4 final is released.</p></div></blockquote></div><p>Yes, but my forum is modded a lot... If I modify it, I think the patch will not work correctly...</p>]]></description>
			<author><![CDATA[dummy@example.com (adaur)]]></author>
			<pubDate>Sat, 09 Jan 2010 16:18:27 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27510#p27510</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27509#p27509</link>
			<description><![CDATA[<div class="quotebox"><cite>Reines wrote:</cite><blockquote><div><div class="quotebox"><cite>adaur wrote:</cite><blockquote><div><p>I would know one thing : can I begin to modify this RC, will be there a lot of modifications in the final release ?</p></div></blockquote></div><p>The only changes will be bug fixes or very minor tweaks.</p></div></blockquote></div><p>Which means you should be fine applying a patch when 1.4 final is released.</p>]]></description>
			<author><![CDATA[dummy@example.com (Franz)]]></author>
			<pubDate>Sat, 09 Jan 2010 15:56:41 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27509#p27509</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27505#p27505</link>
			<description><![CDATA[<div class="quotebox"><cite>johnzhang wrote:</cite><blockquote><div><p>any one who recommend a beautiful theme&#160; to the FluxBB-1.4-RC1</p></div></blockquote></div><p>I&#039;m not sure if any have been updated yet, but we have something in mind so stay tuned <img src="http://fluxbb.org/forums/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><div class="quotebox"><cite>Rob2 wrote:</cite><blockquote><div><p>Is there a hidff for FluxBB 1.2.22 to 1.4-rc1 ?</p></div></blockquote></div><p>Yes, though it&#039;s rather large! (a fair amount is unimportant things, such as changing the license comments on each file etc). <a href="http://fluxbb.org/trac/changeset?old_path=/fluxbb/tags/fluxbb-1.2.22&amp;new_path=/fluxbb/tags/fluxbb-1.4-rc1">http://fluxbb.org/trac/changeset?old_pa … bb-1.4-rc1</a></p><div class="quotebox"><cite>adaur wrote:</cite><blockquote><div><p>I would know one thing : can I begin to modify this RC, will be there a lot of modifications in the final release ?</p></div></blockquote></div><p>The only changes will be bug fixes or very minor tweaks.</p>]]></description>
			<author><![CDATA[dummy@example.com (Reines)]]></author>
			<pubDate>Sat, 09 Jan 2010 14:35:30 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27505#p27505</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27504#p27504</link>
			<description><![CDATA[<p>Hello everybody <img src="http://fluxbb.org/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>GG for all the work done, good luck for the continuation <img src="http://fluxbb.org/forums/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>I would know one thing : can I begin to modify this RC, will be there a lot of modifications in the final release ?</p><p>++</p><p>adaur</p>]]></description>
			<author><![CDATA[dummy@example.com (adaur)]]></author>
			<pubDate>Sat, 09 Jan 2010 14:13:32 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27504#p27504</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27502#p27502</link>
			<description><![CDATA[<p>Is there a hidff for FluxBB 1.2.22 to 1.4-rc1 ?</p>]]></description>
			<author><![CDATA[dummy@example.com (Rob2)]]></author>
			<pubDate>Sat, 09 Jan 2010 13:50:38 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27502#p27502</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27492#p27492</link>
			<description><![CDATA[<p>Congratulations!&#160; Waiting so long ,&#160; Cheers.</p><p>any one who recommend a beautiful theme&#160; to the FluxBB-1.4-RC1</p><p>The theme is very old .</p>]]></description>
			<author><![CDATA[dummy@example.com (johnzhang)]]></author>
			<pubDate>Sat, 09 Jan 2010 11:11:49 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27492#p27492</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27489#p27489</link>
			<description><![CDATA[<p>finally you did it guys..<br />great too see the RC</p>]]></description>
			<author><![CDATA[dummy@example.com (Plazzmex)]]></author>
			<pubDate>Sat, 09 Jan 2010 02:47:41 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27489#p27489</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27475#p27475</link>
			<description><![CDATA[<p>Congratulations! I am glad finally the version is coming out, hope we will have a stable version release soon, followed by new website and tonnes of plugins</p>]]></description>
			<author><![CDATA[dummy@example.com (sagar)]]></author>
			<pubDate>Fri, 08 Jan 2010 19:27:51 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27475#p27475</guid>
		</item>
		<item>
			<title><![CDATA[Re: FluxBB-1.4-RC1 released]]></title>
			<link>http://fluxbb.org/forums/viewtopic.php?pid=27459#p27459</link>
			<description><![CDATA[<p>Ah, OxygenB cannot work on this version. <img src="http://fluxbb.org/forums/img/smilies/hmm.png" width="15" height="15" alt="hmm" /> I need to update it after my final exam.</p><p>Why not bring back 1.3&#039;s Oxygen to 1.4? It is not difficult at all.</p>]]></description>
			<author><![CDATA[dummy@example.com (Meow)]]></author>
			<pubDate>Fri, 08 Jan 2010 15:23:05 +0000</pubDate>
			<guid>http://fluxbb.org/forums/viewtopic.php?pid=27459#p27459</guid>
		</item>
	</channel>
</rss>

