<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>web hosting Archives - Orange Internet Solutions</title>
	<atom:link href="https://orangeinternetsolutions.com/tag/web-hosting/feed/" rel="self" type="application/rss+xml" />
	<link>https://orangeinternetsolutions.com/tag/web-hosting/</link>
	<description>All You Need for Your Online Business</description>
	<lastBuildDate>Sat, 19 Oct 2013 21:13:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>

<image>
	<url>https://orangeinternetsolutions.com/wp-content/uploads/2017/10/orange-favicon-1-75x75.png</url>
	<title>web hosting Archives - Orange Internet Solutions</title>
	<link>https://orangeinternetsolutions.com/tag/web-hosting/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>YUI Library Update 3.13.0 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/yui-library-update-3-13-0-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Sat, 19 Oct 2013 21:13:57 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[YUI]]></category>
		<category><![CDATA[YUI Library]]></category>
		<guid isPermaLink="false">http://miamihoster.com/yui-library-update-3-13-0-released</guid>

					<description><![CDATA[<p>YUI Library 3.13.0 The main focus of this release centered around improvements to the Rich Text Editor, but there are changes across the board reflecting the amazing activity of our YUI community.  YUI Library is a set of utilities and controls, written with JavaScript and CSS, for building richly interactive web applications using techniques such [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/yui-library-update-3-13-0-released/">YUI Library Update 3.13.0 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>YUI Library 3.13.0 The main focus of this release centered around improvements to the Rich Text Editor, but there are changes across the board reflecting the amazing activity of our YUI community. </em></h4>
</blockquote>
<p><img loading="lazy" decoding="async" class="alignleft size-full wp-image-4854" alt="yui logo - Miami Hoster - domains, hosting and websites" src="http://miamihoster.com/wp-content/uploads/2013/10/yui-logo.gif" width="100" height="100" />YUI Library is a set of utilities and controls, written with JavaScript and CSS, for building richly interactive web applications using techniques such as DOM scripting, DHTML and AJAX. YUI is proven, scalable, fast, and robust.</p>
<p>Built by frontend engineers at Yahoo! and contributors from around the world, it&#8217;s an industrial-strength JavaScript library for professionals who love JavaScript.</p>
<h2>Changes Details</h2>
<h4>What’s New In This Release</h4>
<p>A full plate of changes and improvements! The main focus of this release centered around improvements to the Rich Text Editor, but there are changes across the board reflecting the amazing activity of our YUI community. You can find them listed below.</p>
<h4><span style="font-size: 1.17em;">Rich Text Editor Improvements</span></h4>
<p><span style="font-size: 13px;">A major new feature for </span><span style="font-size: small;">Editor</span><span style="font-size: 13px;"> is the ability to work in one of two modes. The traditional mode was via an iframe element on a page, and this is not changed. A second new mode allows Editor to work as an inline editor on a page using ContentEditable.</span></p>
<p>Due to this, some internal changes have been made. <code style="font-size: 13px;">Y.Frame</code><span style="font-size: 13px;"> is now a plugin and it extends </span><code style="font-size: 13px;">Y.Plugin.Base</code><span style="font-size: 13px;">. There is a new Plugin called ContentEditable which allows the editor to work without having to use an iframe element. If a container is not specified, </span><code style="font-size: 13px;">EditorBase</code><span style="font-size: 13px;">creates and plugs an instance of Y.Frame, otherwise it uses the provided container (</span><span style="font-size: small;">#1041</span><span style="font-size: 13px;">).</span></p>
<p>This is thanks to the work of <span style="font-size: small;">Iliyan Peychev</span> <span style="font-size: 13px;">and </span><span style="font-size: small;">Tony Pipkin</span><span style="font-size: 13px;">. Check out the </span><span style="font-size: small;">updated examples</span><span style="font-size: 13px;"> on the staging site for implementation details. </span></p>
<p><span style="font-size: 13px;">Note if you are already using Editor, there should be no changes needed for you to make, as it is backwards compatible.</span></p>
<h4>App Framework Improvements</h4>
<p><strong>Router</strong></p>
<p>Take note that several changes in Router are not backwards compatible. These include a Router’s <code>root</code> path is now enforced as its mount point.</p>
<p>Routers with a specified <code>root</code> will only consider paths as matching its route handles if that path is semantically within the Router’s <code>root</code> path (#1083).</p>
<p>The <code>getPath()</code> method now returns the <em>full</em> current path, whereas before it returned the current path relative to the Router’s <code>root</code>.<br />
This also affects <code>req.path</code> which is now the full path as well. Router’s dispatching process has been changed to take <code>req</code> and <code>res</code> objects instead of creating them inside the <code>_dispatch()</code> method.<br />
This refactor also removed the deprecated support for calling <code>res()</code> as an alias for <code>next()</code>.</p>
<p>Please take note of these changes as you may have to change the way you implement Router if you call these methods.</p>
<p>There were several other changes as well.</p>
<p>Router now accepts route objects through its <code>route()</code> method.<br />
These route objects are the same as those specified in a Router’s <code>routes</code> attribute and what Router uses for its internal storage of its routes. If these route objects contain a regular expression as their <code>path</code> or they contain a <code>regex</code> or <code>regexp</code> property, then they are considered fully-processed.</p>
<p>Route objects can also contain any arbitrary metadata which will be preserved (#1067). Additional <code>req</code> attributes were added: <code>req.router</code>which is a reference to the Router instance, and <code>req.route</code> which is a reference to the current route object whose callbacks are being dispatched. Lastly, calling the <code>dispatch()</code> method will now set a <code>req.src</code> to <code>dispatch</code>.</p>
<p><strong>Model</strong></p>
<p>In Y.Model, <code>ModelSync.Local</code> was added which is an extension that provides a <code>sync()</code> implementation for <code>localStorage</code> that can be mixed into Models and ModelLists (#1218). You can find an example in the YUI TodoMVC example app.</p>
<h4><strong><span style="font-size: 1.17em;">Button and Widget Changes</span></strong></h4>
<p>The changes made in both Button and Widget were in order to improve Y.Button. One long-standing issue was the problem of always having to wrap Button with a container element such as a div.</p>
<p>In Widget, support was improved for having single-box widgets (where the ‘bounding box’ was equivalent to the ‘container box’) by defaulting <code>boundingBox</code> to <code>srcNode</code> if <code>CONTENT_TEMPLATE</code> is null (#1125).</p>
<p>In support of this, in Y.Button a <code>labelHTML</code> attribute was added to <code>Y.ButtonCore</code> for nested HTML label support, and now Y.Button correctly retains all node attributes upon render. In the past, the node was recreated, and any custom attributes on the node would get destroyed.</p>
<h4><strong><span style="font-size: 1.17em;">Calendar Updates</span></strong></h4>
<p>Some fixes in Calendar include resolving an issue where one couldn’t select a date when passing <code>minimumDate</code> (#1030), and removal of some superfluous strings from the Hungarian calendar translations (#1054 – thanks Jeroen Versteeg ).</p>
<h4><span style="font-size: 1.17em;">DataTable Changes</span></h4>
<p>DataTable has had a number of updates. A highlight module was added (#1196), improvements were made to the documentation and variable naming for better code understanding (#946 – thanks Satyam), <code>Show All</code> was added to language packs (#1173), a<code>contentUpdate</code>event was added to trigger after a DataTable has been updated from a <code>dataChange</code> event (#1072), and an issue was fixed with objects that were recursively nested being cloned infinitely (#1008).</p>
<p>In addition, an issue where Paginator’s count would become out of sync with DataTable when DataTable data was added or removed (#1011), and a French language pack was added as well (#1166).</p>
<h4><span style="font-size: 1.17em;">Event, CustomEvent, and Event ValueChange Updates</span></h4>
<p>In Event, delegated focus and blur events now behave the same way other events do when a delegate sub from a container closer to the target calls <code>e.stopPropagation()</code>. Delegate subs from containers higher in the parent axis are not notified (#1145).</p>
<p>In CustomEvent, <code>addTarget</code> and <code>removeTarget</code> are now chainable.</p>
<p>Event ValueChange was updated to support <code>&lt;select&gt;</code> and <code>[contenteditable="true"]</code> elements as well (#1184).</p>
<h4><span style="font-size: 1.17em;">Updates in File</span></h4>
<p>YUI Community member Jerry Reptak added a check in File to make sure that the XHR exists before aborting (#1053).</p>
<h4><span style="font-size: 1.17em;">Graphics Change</span></h4>
<p>In Graphics, a fix was made for an issue involving elements being orphaned after <code>destroy()</code> being called (#1138).</p>
<h4><span style="font-size: 1.17em;">History Fixes</span></h4>
<p>The History module received some fixes including fixing a possible exception with <code>HistoryHTML5.init()</code> in IE10 (fixed by Ariel Schiavoni), Rob Lund added a workaround for a <code>replaceState</code> bug in Chrome/Webkit (#1159), and Byran Zaugg fixed an issue with<code>parseHash</code> not parsing blank values in a hash string (#1116).</p>
<h4><span style="font-size: 1.17em;">Node and ScrollInfo Node Plugin Fixes</span></h4>
<p>In Node, pull request #1169 fixed an issue with <code>inDoc</code> failing if Node was not bound to a DOM node. In the Node plugin for ScrollInfo, the methods <code>getOffsceenNodes()</code> and <code>getOnscreenNodes()</code> were fixed to avoid returning incorrect information in certain cases.</p>
<h4><span style="font-size: 1.17em;">Paginator Naming Fix</span></h4>
<p>In Paginator, a minor fix was done for a misspelling of Paginator in a NAME parameter.</p>
<h4><span style="font-size: 1.17em;">Transition Update</span></h4>
<p>In Transition, an optional flag was added to NodeList.transition which, if true, fires the callback only once at the end of the NodeList transitions (#880 – thanks Perturbatio).</p>
<h4><span style="font-size: 1.17em;">Uploader Fix</span></h4>
<p>Jerry Reptak fixed another issue in Uploader involving an <code>uploadcancel</code> typo.</p>
<h4><span style="font-size: 1.17em;">YUI Core Update</span></h4>
<p>A new method under Y.Lang, called <code>Y.Lang.isRegExp()</code> was created.</p>
<h4><span style="font-size: 1em;">Removals and Deprecations</span></h4>
<p><span style="font-size: 13px;">Another theme of sorts for this release was deprecation and removal. We </span><span style="font-size: small;">deprecated SimpleYUI</span><span style="font-size: 13px;"> a while back, and as of this release it is removed from the codebase. We also have </span><span style="font-size: small;">deprecated and removed</span><span style="font-size: 13px;"> all of the Flash files from our repository. If you are looking to compile and host your own SWFs to include in YUI, you will need to visit the </span><span style="font-size: small;">yui3-swfs</span><span style="font-size: 13px;"> repo to obtain the source files. Also removed was </span><span style="font-size: small;">widget-locale</span><span style="font-size: 13px;">, as it had been already deprecated almost 3 years ago.</span></p>
<p>New deprecations include the official deprecation of PHP Loader and YUI 2in3. These projects will no longer be supported and their features may removed from YUI in the future (as in the case for YUI 2in3).</p>
<h4>Additional Details</h4>
<p>We run over 8,700 tests for every target environment with our internal CI system, so having a comprehensive set of tests for every feature is critical to maintaining our high standards for the quality in our codebase. If you are interested in contributing to YUI, consider taking on an <code>up-for-grabs</code> bug, write a test, or even simply file an issue.<br />
<!-- ------------------------------------------- MORE INFO &amp; RELATED POSTS START -------------------------------------------- --><br />
[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td valign="top" width="50%">
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="YUI Library Demo - Softaculous external link" href="http://www.softaculous.com/demos/YUI" target="_blank" rel="noopener noreferrer">YUI Library Live Demo<br />
</a>(Softaculous<em> &#8211; External Link</em>)<br />
<a title="YUI Library changelog - Oficial website external link" href="http://www.yuiblog.com/blog/2013/10/02/yui-3-13-0-release-candidate-1/" target="_blank" rel="noopener noreferrer">YUI Library Changelog<br />
</a>(<em>Official Website &#8211; External Link</em>)</li>
</ul>
<ul>
<li><strong>Start <strong>YUI Library</strong></strong><br />
Run YUI Library from your domain and hosting service.<br />
<a title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a> if you don&#8217;t have one or choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">Hosting Plans</a> to install YUI Library.</li>
</ul>
<ul>
<li><strong>Hosted <strong>YUI Library</strong></strong><br />
<a title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a> if you <strong><strong>don&#8217;t need a domain or hosting </strong></strong>service, but you want to use  <strong>YUI Library</strong> anyway.</li>
</ul>
</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-7]</td>
</tr>
</tbody>
</table>
<div></div>
<p><!-- ------------------------------------------- MORE INFO &amp; RELATED POSTS END -------------------------------------------- --></p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/yui-library-update-3-13-0-released/">YUI Library Update 3.13.0 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>phpBB Update 3.0.12 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/phpbb-update-3-0-12-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Mon, 07 Oct 2013 05:28:49 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[Bulletin Board]]></category>
		<category><![CDATA[Forum]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[phpBB]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://miamihoster.com/phpbb-update-3-0-12-released</guid>

					<description><![CDATA[<p>phpBB 3.0.12 this is a non-exhaustive (but still near complete) changelog for phpBB 3.0.x including release candidate versions.  phpBB is used by millions of people on a daily basis, making it the most widely used opensource bulletin board system in the world. Whether you want to stay in touch with a small group of friends [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/phpbb-update-3-0-12-released/">phpBB Update 3.0.12 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>phpBB 3.0.12 this is a non-exhaustive (but still near complete) changelog for phpBB 3.0.x including release candidate versions. </em></h4>
</blockquote>
<p>phpBB is used by millions of people on a daily basis, making it the most widely used opensource bulletin board system in the world.</p>
<p>Whether you want to stay in touch with a small group of friends or are looking to set up a large multi-category board for a corporate website, phpBB has the features you need built in.</p>
<p>Newer users will appreciate phpBB&#8217;s extensive administration panel, which allows the customization of even the most intricate features without having to edit code directly, while advanced users will value the ease with which phpBB can be integrated into existing systems.</p>
<h2>Bug Fixes</h2>
<ul>
<li>[PHPBB3-6723] &#8211; Empty message in deleted messages in PM history</li>
<li>[PHPBB3-7262] &#8211; Clarify docs about is_dynamic not being updated by set_config()</li>
<li>[PHPBB3-8319] &#8211; LOCAL_URL not enforced in bbcodes</li>
<li>[PHPBB3-9551] &#8211; Mysql fulltext index creation fails due to partial collation change</li>
<li>[PHPBB3-9975] &#8211; Hard coded language in sessions.php</li>
<li>[PHPBB3-10184] &#8211; Bots can be sent private messages</li>
<li>[PHPBB3-10491] &#8211; Fatal error in functional tests when server returns 404</li>
<li>[PHPBB3-10568] &#8211; Modify the trigger language when you edit a PM</li>
<li>[PHPBB3-10602] &#8211; A bug in mail queue processing</li>
<li>[PHPBB3-10661] &#8211; UCP &gt; PM &gt; Compose &gt; enumerated recipients &gt; BCC group misses a &amp;nbsp; (prosilver)</li>
<li>[PHPBB3-10678] &#8211; Provide Firebird, Oracle, and increased MSSQL support in unit tests</li>
<li>[PHPBB3-10772] &#8211; trigger_error is using the default style</li>
<li>[PHPBB3-10789] &#8211; PM print template (prosilver) with unnecessary variables</li>
<li>[PHPBB3-10820] &#8211; Display images directly in IE9 and 10 instead of download</li>
<li>[PHPBB3-10828] &#8211; PostgreSQL dbal tests try to connect to the database named as user specified in configuration</li>
<li>[PHPBB3-10838] &#8211; Functional tests are not mentioned in RUNNING_TESTS.txt</li>
<li>[PHPBB3-10840] &#8211; If you add a member to a group, the form_token can be set to 0 if the creation_time is 0 too. Maybe even if creation_time is unchanged.</li>
<li>[PHPBB3-10848] &#8211; Wrong redirect to installer from acp</li>
<li>[PHPBB3-10850] &#8211; create_schema_files.php is not creating the oracle or postgres&#8217; schema file properly</li>
<li>[PHPBB3-10879] &#8211; prosilver: attachment-link will be displayed wrong, when filename is too long</li>
<li>[PHPBB3-10880] &#8211; m_approve should not imply f_noapprove</li>
<li>[PHPBB3-10896] &#8211; board_email &amp; board_contact are not validated as email addresses in ACP</li>
<li>[PHPBB3-10897] &#8211; Bot Definitions are outdated</li>
<li>[PHPBB3-10918] &#8211; docs/./../support/documents.php?mode=install&amp;version=3 claims there are tar.gz packages</li>
<li>[PHPBB3-10943] &#8211; Search Box should display keywords entered by the user</li>
<li>[PHPBB3-10967] &#8211; PHPBB_USE_BOARD_URL_PATH not implemented in posting_gen_topic_icons</li>
<li>[PHPBB3-10986] &#8211; Invalid email message ids because config variable server_name is used even when force server URL settings is disabled</li>
<li>[PHPBB3-10995] &#8211; Return value of $db-&gt;sql_fetchrow() on empty tables is not consistent on mssqlnative</li>
<li>[PHPBB3-10996] &#8211; Travis tests fail on Postgres because database does not exist</li>
<li>[PHPBB3-11034] &#8211; The functional test case framework does not install a full board each time</li>
<li>[PHPBB3-11066] &#8211; MSSQLnative driver contains debug code error_reporting(E_ALL)</li>
<li>[PHPBB3-11069] &#8211; missing closing span in subsilver2 simple_footer.html</li>
<li>[PHPBB3-11081] &#8211; Duplicated /TD in styles/subsilver2/template/catpcha_qa.html</li>
<li>[PHPBB3-11093] &#8211; acp_users_overview.html has a wrongly placed &lt;/dd&gt;</li>
<li>[PHPBB3-11094] &#8211; prosilver: searching for users: no textbox for Jabber</li>
<li>[PHPBB3-11105] &#8211; Missing mandatory space in meta http-equiv=refresh</li>
<li>[PHPBB3-11112] &#8211; phpBB Footer Link should be SSL</li>
<li>[PHPBB3-11122] &#8211; Update docs/AUTHORS for 3.0.12-RC1</li>
<li>[PHPBB3-11144] &#8211; {FORUM_NAME} is not filled in login mask when logging into a password protected forum</li>
<li>[PHPBB3-11145] &#8211; ATTACHED_IMAGE_NOT_IMAGE thrown because of file limit in php.ini</li>
<li>[PHPBB3-11158] &#8211; modules table lacks acl_u_sig for signature module</li>
<li>[PHPBB3-11159] &#8211; Coding guidelines: static public</li>
<li>[PHPBB3-11164] &#8211; Composer not finding symfony/config in PHP 5.3.3</li>
<li>[PHPBB3-11178] &#8211; database_update.php should not set error_reporting to E_ALL</li>
<li>[PHPBB3-11186] &#8211; Database unit tests fail on windows using sqlite2</li>
<li>[PHPBB3-11190] &#8211; Functional tests do not clear the cache between each test</li>
<li>[PHPBB3-11196] &#8211; /includes/session.php sends 401 HTTP status with &#8220;Not authorized&#8221; instead of &#8220;Unauthorized&#8221;</li>
<li>[PHPBB3-11219] &#8211; Database sequences are not updated for tests using fixtures with auto_incremented columns</li>
<li>[PHPBB3-11227] &#8211; @return void -&gt; @return null</li>
<li>[PHPBB3-11233] &#8211; Anonymous can be selected as a PM recipient</li>
<li>[PHPBB3-11248] &#8211; CRLF line endings</li>
<li>[PHPBB3-11262] &#8211; .lock files are not in .gitignore</li>
<li>[PHPBB3-11265] &#8211; Functional tests do not assert that board installation succeeded</li>
<li>[PHPBB3-11269] &#8211; Travis functional test case errors</li>
<li>[PHPBB3-11278] &#8211; Firebird tables are not removed correctly on 3.0.9-rc1 update</li>
<li>[PHPBB3-11291] &#8211; &#8220;Could not open input file: ../composer.phar&#8221; error during phing&#8217;s create-package</li>
<li>[PHPBB3-11292] &#8211; Newlines removed in display of PM reports, no clickable links in PM reports</li>
<li>[PHPBB3-11301] &#8211; &#8220;String offset cast occured&#8221; error on PHP 5.4</li>
<li>[PHPBB3-11304] &#8211; check_form_key breaks in tests when form is submitted in the same second it is retrieved</li>
<li>[PHPBB3-11343] &#8211; Loose string comparison during new password activation</li>
<li>[PHPBB3-11355] &#8211; Incorrect error message when no user selected for action on group membership management page</li>
<li>[PHPBB3-11358] &#8211; Success message even withot selecting a user and performing a group operation</li>
<li>[PHPBB3-11361] &#8211; &#8220;Array to string conversion&#8221; error in $user-&gt;format_date()</li>
<li>[PHPBB3-11493] &#8211; Functional tests should fail if any debug output is made</li>
<li>[PHPBB3-11517] &#8211; Numbering is wrong in coding guidelines</li>
<li>[PHPBB3-11536] &#8211; Installer incorrectly removes /install from script_path</li>
<li>[PHPBB3-11537] &#8211; UCP group manage page&#8217;s error box differs heavily from the rest of the UCP</li>
<li>[PHPBB3-11538] &#8211; SQL error on UCP groups manage page caused by setting color to 7 characters long string</li>
<li>[PHPBB3-11544] &#8211; Add admin_login() to 3.0 functional test case</li>
<li>[PHPBB3-11545] &#8211; is_absolute() should not depend on DIRECTORY_SEPARATOR</li>
<li>[PHPBB3-11546] &#8211; is_absolute() throws E_NOTICE for empty string</li>
<li>[PHPBB3-11547] &#8211; Test fixtures do not support utf8 characters</li>
<li>[PHPBB3-11548] &#8211; Untranslated TOO_SHORT in UCP &#8220;Manage Groups&#8221;</li>
<li>[PHPBB3-11566] &#8211; Reporting a post should require a captcha to be solved by guests</li>
<li>[PHPBB3-11568] &#8211; Functional tests fail with retrieving install pages using file_get_contents</li>
<li>[PHPBB3-11575] &#8211; phpbb_dbal_order_lower_test::test_cross_join should be called test_order_lower</li>
<li>[PHPBB3-11578] &#8211; Missing underscore after function prefix in validate_data()</li>
<li>[PHPBB3-11579] &#8211; Add unit tests for validate_data()</li>
<li>[PHPBB3-11580] &#8211; Avoid API Limit from composer downloads on github</li>
<li>[PHPBB3-11588] &#8211; install/install_update.php should use version.phpbb.com instead of www</li>
<li>[PHPBB3-11590] &#8211; Close database connections from tests whenever possible</li>
<li>[PHPBB3-11601] &#8211; Allow manual resync of database columns in unit tests not only on fixture load</li>
<li>[PHPBB3-11603] &#8211; git-tools use invalid api urls</li>
<li>[PHPBB3-11604] &#8211; Functional tests fail when phpBB can not create the config file</li>
<li>[PHPBB3-11617] &#8211; Missing U_ACTION in acp_captcha.php</li>
<li>[PHPBB3-11618] &#8211; Template tests fail on some systems due to a PHP error in glob()</li>
<li>[PHPBB3-11619] &#8211; get_remote_file() should use HTTP 1.0</li>
<li>[PHPBB3-11630] &#8211; Improvements to the PHP lint pre-commit hook</li>
<li>[PHPBB3-11644] &#8211; Skip phpbb_dbal_order_lower_test on MySQL 5.6</li>
<li>[PHPBB3-11662] &#8211; &#8220;occured&#8221; should be &#8220;occurred&#8221;</li>
<li>[PHPBB3-11670] &#8211; Replace trademark ™ with ® on &#8220;Welcome to phpBB&#8221; install page</li>
<li>[PHPBB3-11674] &#8211; Do not include vendor folder if there are no dependencies.</li>
<li>[PHPBB3-11524] &#8211; MySQL Upgrader throws warnings on PHP 5.4</li>
<li>[PHPBB3-11720] &#8211; Reporting posts leads to white page error</li>
<li>[PHPBB3-11769] &#8211; Wrong poster in subscription email when poster is using the Quote button</li>
<li>[PHPBB3-11775] &#8211; Error while moving posts to a new topic</li>
<li>[PHPBB3-11802] &#8211; Undefined variable $browser in /download/file.php</li>
</ul>
<h2>Improvements</h2>
<ul>
<li>[PHPBB3-8743] &#8211; New topic / reply notifications do not contain author&#8217;s name.</li>
<li>[PHPBB3-10050] &#8211; subsilver2: Do not show &#8220;Mark topics as read&#8221; when there are no topics</li>
<li>[PHPBB3-10205] &#8211; More informative reporting of errors when database connection fails (MySQL and others)</li>
<li>[PHPBB3-10716] &#8211; PHP-parse all php files as part of the test suite</li>
<li>[PHPBB3-10841] &#8211; Disable style and language selectors if there&#8217;s only one installed.</li>
<li>[PHPBB3-10854] &#8211; sql server drop default constraint when dropping column</li>
<li>[PHPBB3-10865] &#8211; Updated and Added to docs/./../support/documents.php?mode=install&amp;version=3</li>
<li>[PHPBB3-10873] &#8211; Change language entry for deleted PMs</li>
<li>[PHPBB3-10981] &#8211; Upgrade Goutte and use Composer for Installation</li>
<li>[PHPBB3-11131] &#8211; Phrasing &amp; semantics of Board settings</li>
<li>[PHPBB3-11162] &#8211; Get rid of $db-&gt;sql_return_on_error(true) trickery when splitting/merging topics</li>
<li>[PHPBB3-11192] &#8211; Add Tebibyte to get_formatted_filesize()</li>
<li>[PHPBB3-11202] &#8211; Add response status checks to functional tests</li>
<li>[PHPBB3-11220] &#8211; Improve tooltip explaining the [list=] &#8211; BBcode</li>
<li>[PHPBB3-11238] &#8211; Specify goutte version</li>
<li>[PHPBB3-11285] &#8211; Use more granularity in dependency checks in compress test</li>
<li>[PHPBB3-11293] &#8211; Prefer mysqli over mysql due to php 5.5 alpha 2 deprecating mysql</li>
<li>[PHPBB3-11294] &#8211; Update extension list in running tests doc</li>
<li>[PHPBB3-11368] &#8211; Latest pm reports row count</li>
<li>[PHPBB3-11583] &#8211; InnoDB supports FULLTEXT index since MySQL 5.6.4.</li>
<li>[PHPBB3-11740] &#8211; Update link in FAQ to Ideas Centre</li>
<li>[PHPBB3-11873] &#8211; Prevent expensive hash computation in phpbb_check_hash() by rejecting very long passwords</li>
</ul>
<h2>Sub-Task</h2>
<ul>
<li>[PHPBB3-10974] &#8211; Move tests/mock_user.php to tests/mock/user.php</li>
<li>[PHPBB3-11009] &#8211; Backport phing build.xml from develop to develop-olympus so it uses composer.</li>
<li>[PHPBB3-11540] &#8211; Add unit tests for (phpbb_)is_absolute()</li>
<li>[PHPBB3-11541] &#8211; Add unit tests for style_select() in functions.php</li>
<li>[PHPBB3-11542] &#8211; Add unit tests for language_select() in functions.php</li>
<li>[PHPBB3-11543] &#8211; Add unit tests for obtain online functions in functions.php</li>
</ul>
<h2>Task</h2>
<ul>
<li>[PHPBB3-10877] &#8211; Have bamboo generate and publish a phpBB package for every build.</li>
<li>[PHPBB3-11045] &#8211; Add unit tests for the compress class</li>
<li>[PHPBB3-11059] &#8211; Fix README logo</li>
<li>[PHPBB3-11060] &#8211; Fix travis.yml pyrus config</li>
<li>[PHPBB3-11240] &#8211; Turn on PHPUnit&#8217;s verbose mode on Travis</li>
<li>[PHPBB3-11324] &#8211; Add PHP 5.5 environment on Travis-CI</li>
<li>[PHPBB3-11337] &#8211; Run functional tests on Travis CI</li>
<li>[PHPBB3-11513] &#8211; Install PHPUnit via Composer&#8217;s require-dev to simplify test running (no need for pear)</li>
<li>[PHPBB3-11526] &#8211; Increase composer minimum-stability from beta to stable</li>
<li>[PHPBB3-11527] &#8211; Upgrade composer.phar to 1.0.0-alpha7</li>
<li>[PHPBB3-11529] &#8211; Rename RUNNING_TESTS file to .md file to render it on GitHub</li>
<li>[PHPBB3-11576] &#8211; Make phpBB Test Suite MySQL behave at least as strict as phpBB MySQL driver</li>
<li>[PHPBB3-11671] &#8211; Add phing/phing to composer.json</li>
<li>[PHPBB3-11752] &#8211; Update phpBB.com URLs to https in email templates</li>
<li>[PHPBB3-11753] &#8211; Upgrade mysql_upgrader.php schema data.</li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="phpBB Demo - Softaculous external link" href="http://www.softaculous.com/demos/phpBB" target="_blank" rel="noopener noreferrer">phpBB</a> (Softaculous<em> external link</em>)<br />
<a title="phpBB changelog - Oficial website external link" href="https://www.phpbb.com/support/documents.php?mode=changelog&amp;version=3#v3011" target="_blank" rel="noopener noreferrer">phpBB Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start phpBB</strong>:<br />
<span style="font-size: 13px;">In order to use phpBB you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install phpBB choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
</ul>
<ul>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>phpBB</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>phpBB</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/phpbb-update-3-0-12-released/">phpBB Update 3.0.12 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>CMS Made Simple Update 1.11.9 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/cms-made-simple-update-1-11-9-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Sun, 06 Oct 2013 19:33:39 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[CMS Made Simple]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[Portal]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://miamihoster.com/cms-made-simple-update-1-11-9-released</guid>

					<description><![CDATA[<p>CMS Made Simple 1.11.9 Due to the fact that some issues with respect to security and PHP 5.3 dependencies were fixed, we recommend that everybody upgrade to version 1.11.9 as soon as possible. CMS Made Simple provides a fast and easy way to create a professional web site and manage its content, whether it&#8217;s for [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/cms-made-simple-update-1-11-9-released/">CMS Made Simple Update 1.11.9 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>CMS Made Simple 1.11.9 Due to the fact that some issues with respect to security and PHP 5.3 dependencies were fixed, we recommend that everybody upgrade to version 1.11.9 as soon as possible.</em></h4>
</blockquote>
<p>CMS Made Simple provides a fast and easy way to create a professional web site and manage its content, whether it&#8217;s for a small business or a multinational corporation! CMS Made Simple provides a mechanism for the website administrator to create and manage pages, their layout, and their content. CMS Made Simple is unobtrusive. You can create a table based layout, or a fully validating XHTML/CSS layout.</p>
<h2>Core General</h2>
<ul>
<li>Fixes version.php to represent new schema</li>
<li><span style="font-size: 13px;">Users with &#8216;Modify Any Page&#8217; and &#8216;Remove Content&#8217; can delete almost any page</span></li>
<li><span style="font-size: 13px;">Fixes minor issue with event handlers</span></li>
<li><span style="font-size: 13px;">Removes a debug limit on caching in contentoperations</span></li>
<li><span style="font-size: 13px;">Robots don&#8217;t index Error Console pages</span></li>
<li><span style="font-size: 13px;">Only show technical details on the Error Console page to logged in administrators</span></li>
<li><span style="font-size: 13px;">Entropy improvement in the cookie used to stay loggedin.</span></li>
</ul>
<h2>Core &#8211; Search<strong><br />
</strong></h2>
<ul>
<li>Fixes PHP 5.3 dependency</li>
</ul>
<h2>Core &#8211; Bug Reports</h2>
<ul>
<li>#9549 CMSMS 1.11.8 performance regression</li>
</ul>
<h2>Core &#8211; CMSMailer</h2>
<ul>
<li>No longer send SMTP password in plain text.</li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="CMS Made Simple Demo - Softaculous external link" href="http://www.softaculous.com/demos/CMS_Made_Simple" target="_blank" rel="noopener noreferrer">CMS Made Simple</a> (Softaculous<em> external link</em>)<br />
<a title="CMS Made Simple changelog - Oficial website external link" href="http://dev.cmsmadesimple.org/project/files/6" target="_blank" rel="noopener noreferrer">CMS Made Simple Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start CMS Made Simple</strong>:<br />
<span style="font-size: 13px;">In order to use CMS Made Simple you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install CMS Made Simple choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
</ul>
<ul>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>CMS Made Simple</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>CMS Made Simple</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/cms-made-simple-update-1-11-9-released/">CMS Made Simple Update 1.11.9 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Magento Update 1.8.0.0 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/magento-update-1-8-0-0-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Sun, 06 Oct 2013 17:14:07 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[E-Commerce]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[maintenance]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[shopping cart]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://miamihoster.com/magento-update-1-8-0-0-released</guid>

					<description><![CDATA[<p>Magento 1.8.0.0 This new edition improves tax calculations, boosts product quality and stability, enhances performance, and advances security.   Magento is an Open Source ecommerce web application launched on March 31, 2008. It was created by Varien, building on components of the Zend Framework. Changes Details Major overhaul of tax calculation formulas, correction of rounding [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/magento-update-1-8-0-0-released/">Magento Update 1.8.0.0 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>Magento 1.8.0.0 This new edition improves tax calculations, boosts product quality and stability, enhances performance, and advances security.  </em></h4>
</blockquote>
<p>Magento is an Open Source ecommerce web application launched on March 31, 2008. It was created by Varien, building on components of the Zend Framework.</p>
<h2>Changes Details</h2>
<ul>
<li>Major overhaul of tax calculation formulas, correction of rounding errors, and additional assistance with configuration.</li>
<li>Optimized cache adapters for single-server systems</li>
<li>Upgraded Redis cache adapters for multi-server systems.</li>
<li><span style="font-size: 13px;">Eliminated many types of database deadlocks.</span></li>
</ul>
<h2>Security Enhancements</h2>
<ul>
<li>Errors are not displayed in a new Magento installation.</li>
<li>Fixed a session fixation vulnerability in the new user registration process. Attackers can no longer abuse this flaw to take over new user accounts during registration.</li>
<li>Prevent a user with limited privileges to delete the Magento installation.</li>
<li>Prevent attacks that use OAuth to leak sensitive information to an attacker that knows the consumer key and user token.</li>
<li>Resolved an issue that enabled attackers to gain access to billing information.<br />
We thank Darryl Adia (from Ampersand Commerce) for contributing to this fix.</li>
<li>Resolved issues with the security of OAuth tokens and keys.</li>
<li>A remote code execution vulnerability was fixed.<br />
We thank Bastian Ike for contributing to this fix.</li>
<li>The Magento Admin Panel and web stores no longer allow web browsers to store user names or passwords.</li>
<li>The Magento web store has additional Cross Site Request Forgery (CSRF) protections, meaning an imposter can no longer impersonate a newly registered customer and perform actions on the customer&#8217;s behalf.</li>
<li>The cryptographic methods used to store passwords were improved to enhance security.</li>
</ul>
<h2>United States Postal Service (USPS) Update</h2>
<p>The USPS changed the names of their Priority and Express shipping options in their API in July 2013. To enable you to continue utilizing USPS Priority <em>and</em> Express mail methods, CE 1.8 includes a patch that addresses the issue.</p>
<p><strong>Important</strong>: The USPS API patch has an impact on upgrading to CE 1.8 from earlier versions. If you&#8217;re doing a new CE 1.8 installation, however, you don&#8217;t need to do anything.</p>
<p>Following are details about the upgrade impact:</p>
<ul>
<li>Print all USPS shipping labels before upgrading; after upgrading, you will not be able to print them.</li>
<li>Any shopping cart price rules that use the USPS shipping method that created before you upgrade must be re created after you upgrade. Pre-existing USPS shipping methods do not work with shopping cart price rules after the upgrade.</li>
</ul>
<h2>Performance Improvements</h2>
<ul>
<li>Limited the way Magento performs large database lookups.</li>
<li>Checkout performance improvements achieved by:
<ul>
<li>Eliminating unnecessary RSS cache cleanups when RSS functionality is disabled</li>
<li>The locale used to send a new order confirmation e-mail now first checks to see if the customer&#8217;s locale is the same as the store&#8217;s locale before attempting to localize the e-mail.</li>
<li>Improving the overall checkout process performance by loading the progress information for the current checkout step only</li>
</ul>
</li>
<li>You can load a large number of tax codes (35,000 or so) without impacting performance.</li>
</ul>
<h2>Tax Calculation Fixes</h2>
<h4>General Tax Notes</h4>
<p>The following general fixes were made to Magento tax configuration and calculations:</p>
<ul>
<li>Based on Magento testing and merchant experience, certain tax configuration settings have been determined to be susceptible to rounding issues and can be confusing to buyers. To help you avoid issues with those settings, warning messages display in the Admin Panel if you attempt to save such a configuration.<br />
Administrative users can choose to dismiss the messages and can still save the configuration; however, Magento strongly recommends you change the configuration in a way recommended by the details displayed in the message.</li>
<li>Bundle pricing is more consistent as follows:
<ul>
<li>The calculation formula is: <tt>Sub item price = Sub item base price * Applicable tiered price adjustment or discount, then rounded Bundle price = Sum (round(sub item price * qty))</tt></li>
<li>When non-integer quantities are multiplied by a product price, Magento rounds the resulting subtotal is as follows: <tt>round(unit price * non-integer quantity)</tt></li>
</ul>
</li>
<li>All product price information on which taxation is based are rounded to two digits of precision regardless of how many digits of precision have been loaded into the database (for example, $10.24 instead of $10.2385). This situation can occur when certain integrations enable third-party applications to send four-digit precision prices to Magento.<br />
Starting with this release those additional digits will have no impact on customer facing prices. Forcing two digits of precision enables more exact calculations involving Fixed Product Tax (FPT), discounts, and taxes—among other concerns.</li>
<li>For certain Canadian provinces and localities, calculations and methods were updated to support changing legal requirements in Canada:
<ul>
<li>Provincial Sales Tax (PST)</li>
<li>Goods and Services Tax (GST)</li>
<li>Taxe de vente du Québec (TVQ)—also referred to as Quebec Sales Tax (QST)</li>
</ul>
</li>
</ul>
<h4>Rounding Error Fixes</h4>
<p>The following issues relate to one-cent rounding errors in the web store or shopping cart:</p>
<ul>
<li>Calculating taxes for bundled products with tiered pricing.</li>
<li>Calculating the price before customization for bundled products.</li>
<li>Calculating the grand total of items added to a cart in a different order.</li>
<li>Viewing an order when taxes are calculated after a discount using either row-based or unit price.</li>
<li>Applying a discount to an order with a shipping address different than the billing address.</li>
<li>Calculating the grand total based on the order in which products are added to the shopping cart.</li>
<li>Specifying that prices display in the web store excluding tax and setting a 20% tax rate (or discount rate) now calculates the grand total correctly. It is now possible to have grand totals in amounts like 6.99, 9.99, or 99.99—regardless of the currency units used in the web store.</li>
<li>Adding multiple items to a cart does not affect the accuracy with which taxation is calculated.</li>
<li>Subtotal (Incl. Tax) is now correct when catalog and shipping prices include tax. Both tax and discounts are applied after tax.</li>
<li>Prices displayed in the cart and on the catalog page are consistent and correct when catalog prices include tax, and when items in the catalog are set to display both including and excluding tax.<br />
(In the Admin Panel, click <strong>System</strong> &gt; <strong>Configuration</strong> &gt; SALES &gt; <strong>Tax</strong>. In the right pane, expand<strong>Calculation Settings</strong>.)</li>
<li>Error in calculating the Grand Total Excl. Tax was resolved. This error occurred in a specific configuration: tax is applied to FPT, FPT is included in the subtotal, and the customer selects non-taxable flat rate shipping.</li>
</ul>
<h4>Fixed Product Tax (FPT) Fixes</h4>
<p>The following issues relate to errors in calculating taxes that include FPT in the web store or shopping cart:</p>
<ul>
<li>Price in the cart displays the correct before-tax price and grand total.</li>
<li>Subtotals displayed in the cart—both Including Tax and Excluding Tax—are now correctly calculated when FPT is applied.</li>
<li>Free shipping offers are now processed correctly when FPT is applied.</li>
<li>FPT taxes are calculated correctly when a discount is applied.</li>
</ul>
<h4>Discount Calculation Fixes</h4>
<p>The following issues relate to price calculations when coupon codes or other discounts are applied in the web store or shopping cart:</p>
<ul>
<li>The Row Subtotal displayed in the cart is calculated correctly (that is, both Excl. Tax and Incl. Tax are correct).</li>
<li>The price for bundled items now displays with tax included if the bundle is configured to do so.</li>
<li>Taxation is now correctly calculated on a product with a discounted price.</li>
<li>Taxation on discounts is now calculated correctly when the ship-to country is different from the web store&#8217;s default country.</li>
</ul>
<h4>Display Fees</h4>
<p>The following issues relate to the incorrect display of tax information in the Admin Panel or in your Magento web store:</p>
<ul>
<li>Row Subtotal displays correctly in the shopping cart when:
<ul>
<li>FPT is applied.</li>
<li>A discount is applied to a situation where the tax the customer pays is different from the tax specified for the web store&#8217;s locale (for example, when the shipping origin is different than the shipping address).</li>
</ul>
</li>
<li>Subtotal including tax on a credit memo is correct when one or more items in the memo includes FPT.</li>
<li>Item subtotal displays correctly when a discount is applied to a purchase that includes FPT.</li>
<li>If the administrator sets catalog prices to exclude tax and to display product prices in catalog as including tax, the price of the product in your web store includes applicable taxes.<br />
(In the Admin Panel, click <strong>System</strong> &gt; <strong>Configuration</strong> &gt; SALES &gt; <strong>Tax</strong>. In the right pane, expand<strong>Calculation Settings</strong>.)</li>
<li>The amount of tax displayed in the Order Totals section of the shopping cart is now correct when free shipping and a shopping cart rule discount are applied.</li>
</ul>
<h2>API Fixes</h2>
<p>The following are fixed in the Magento SOAP v2.0 APIs (with exceptions noted):</p>
<ul>
<li>Requesting a product using a call like the following returns the product with the specified numeric SKU value (<tt>8888</tt> in the following example): <tt>$result = $client-&gt;call($sessionId, 'catalog_product.info', '8888', null, null, 'sku');</tt></li>
<li>Order status is changed correctly using <tt>salesOrderAddComment</tt>.</li>
<li>The <tt>shoppingCartProductMoveToCustomerQuote</tt> method works properly.</li>
<li>You can now use <tt>from</tt>&#8211;<tt>to</tt> complex filters to perform &#8220;window&#8221; filtration on a single field. For example, you can use <tt>from</tt> and <tt>to</tt> on the <tt>created_at</tt> return a list of sales orders using the<tt>salesOrderList</tt>.</li>
<li>When you use the SOAP API v.2.0 with WS-I Compliance enabled to retrieve sales orders information, the server responds with the correct Content-Length header.</li>
<li>The <tt>productGetSpecialPrice</tt> method returns special price information for a product, whether or not WS-I Compliance is enabled.</li>
<li>The <tt>shoppingCartPaymentList</tt> method returns the list of the available payment methods for the shopping cart appropriately. The following error is no longer returned: <tt>SOAP-ERROR: Encoding: object has no 'code' property in <em>name</em></tt></li>
<li>The following issues with WSDL and WS-I Compliance are resolved:
<ul>
<li>The <tt>productAttributeAddOption</tt> and <tt>catalogProductAttributeUpdate</tt>methods are now supported when WS-I Compliance is enabled.</li>
<li>The WSDL declaration for <tt>salesOrderCreditmemoCreate</tt> is now correct; that is, it matches the code.</li>
<li>You can now add a C# web reference in Microsoft Visual Studio 2010 using the Magento WSDL.<br />
For example, this command no longer fails:<br />
<tt>C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin&gt; wsdl /out:Magento.cs /v http://magentohost/api/v2_soap/?wsdl</tt></li>
<li>The WS-I Compliance mode WSDL now includes <tt>catalogProductAttributeInfo</tt>.</li>
</ul>
</li>
<li><em>XML-RPC API</em>: Using the <tt>product_custom_option.add</tt> operation with <tt>multicall</tt> no longer results in redundant options.</li>
</ul>
<h2>Changes Details</h2>
<h4>Web Store and Shopping Cart Fixes</h4>
<ul>
<li>A customer&#8217;s account created date is correct.</li>
<li>When a product price is set with website scope and an administrative user has access to only one website, the default price is taken from that website scope. Also, when saving the product on the website scope, the price is updated only in that scope and not in the default scope.</li>
<li>An error no longer displays on your web store after a customer places an order. (The error message was <tt>There has been an error processing your request. Please contact us or try again later</tt>).</li>
<li>Restricted coupon codes work properly, even if the customer has selected the <strong>Remember me</strong> check box.</li>
<li>Using the Table Rates shipping option, free shipping options work properly. (In the Admin Panel, click<strong>System</strong> &gt; <strong>Configuration</strong> &gt; <strong>SALES</strong> &gt; <strong>Shipping Methods</strong>. In the right pane, expand <strong>Table Rates</strong>.)</li>
<li>Issues with shipping table rates have been resolved.</li>
<li>Entering a value such as <tt>10,50</tt> (using a comma character and not a period) for <strong>Adjustment Fee</strong>now results in the correct amount of credit being applied to the transaction.</li>
<li>Unit price for bundled products is now calculated correctly.</li>
<li>The tiered price of bundled items now displays properly on the web store.</li>
<li>Composite products can be successfully reordered.</li>
<li>You can now use special characters in a product URL key.</li>
<li>After a customer visits the sitemap, web stores URLs are no longer prepended by<tt>/sitemap/catalog/<em>string</em></tt>.</li>
<li>Welcome messages now display properly in the web store after a customer&#8217;s profile information is changed.</li>
<li>Recently viewed products now display updates properly.</li>
<li>Armed Forces Middle East is now available for State when checking out.</li>
<li>Searching for a customer&#8217;s orders and returns works properly.</li>
<li>Shipping is calculated correctly if you select <strong>Using origin weight (few requests)</strong> for <strong>Packages Request Type</strong>. (In the Admin Panel, click <strong>System</strong> &gt; <strong>Configuration</strong> &gt; SALES &gt; <strong>Shipping Methods</strong>&gt; <strong>DHL (Deprecated)</strong>).</li>
<li>Free shipping is no longer available to a customer during checkout if the option was disabled by an administrator. (In the Admin Panel, click <strong>System</strong> &gt; <strong>Configuration</strong> &gt; <strong>Sales</strong> &gt; <strong>Shipping Method</strong> &gt;<strong>DHL(Deprecated)</strong>, click one or more options from the <strong>Allowed Methods</strong> list, and, from the <strong>Free Shipping with Minimum Order Amount</strong> list, click <strong>No</strong>.)</li>
<li>A user can navigate your web store while downloading a downloadable product.</li>
<li>You can now specify weight units in kilograms (kg) using the FedEx shipping method.</li>
<li>FedEx shipping rates are now consistent with Magento discounted rates.</li>
<li>Fixed issues with United Parcel Service (UPS) shipping rates.</li>
<li>UPS shipping labels have the word <tt>SAMPLE</tt> printed on them only when you request a sample label.</li>
<li>Changes made to United States Post Office (USPS) APIs and rates have been incorporated in Magento.</li>
<li>The products in a customer&#8217;s wish list no longer disappear after one or more products are edited by an administrator.</li>
<li>Administrators can view the contents of a customer&#8217;s shopping cart.</li>
<li>When a customer selects a product on your web store, the assigned category is selected in the navigation menu.</li>
</ul>
<h4>Promotional Price Rule Fixes</h4>
<p>The following fixes relate to administering and using shopping cart price rules and catalog price rules:</p>
<ul>
<li>Shopping cart price rules applied to specific customer groups work properly.</li>
<li>Catalog price rules are applied properly to customer groups.</li>
<li>The scope of a product attribute is now honored by a catalog price rule.</li>
<li>Discounts specified by a shopping cart price rule are applied properly when a particular order is shipped to multiple addresses.</li>
<li>A discount specified by a shopping cart price rule that allows for more than one use per customer is applied the correct number of times if the customer has their orders shipped to more than one address.</li>
<li>When an administrative user whose role is restricted to only viewing catalog price rules, the user cannot add or edit catalog price rules.</li>
<li>Shopping cart price rules now work properly with bundled products.</li>
</ul>
<h4>Administrative Ordering and Credit Memo Fixes</h4>
<ul>
<li>When you create an order using the Admin Panel and you have multiple stores, the <strong>State/Province</strong>field updates appropriately for the country in which the order is placed.</li>
<li>When you create an order using the Admin Panel and you have specified a default billing address and a default shipping address, the addresses are used correctly.</li>
<li>Orders placed by an administrator display in a customer&#8217;s last order list.</li>
<li>Product comparisons now display properly when an administrator makes a change using the Admin Panel (for example, deleting a product from a customer&#8217;s comparison list).</li>
<li>You can now cancel an order using the Admin Panel.</li>
<li>Orders and invoices that include taxable shipping—when created in the Admin Panel—now calculate the shipping taxes properly.</li>
<li>Products added to a customer&#8217;s wish list by an administrator display properly.</li>
</ul>
<h4>Import Fixes</h4>
<ul>
<li>The quantity (<tt>QTY</tt>) of all products imports correctly.</li>
<li>The value of Maximum Qty Allowed in Shopping Cart (<tt>use_cfg_max_sale_qty</tt>) is correct.</li>
<li>The product displays correctly in layered navigation.</li>
<li>Importing customer lists with capitalization variations in the e-mail address now imports the customer only once (for example, <tt>user@example.com</tt> and <tt>User@example.com</tt>).</li>
<li>Issues with importing products with <strong>Append Complex Data</strong> selecting from a comma-separated value (<tt>.csv</tt>) file have been resolved.</li>
</ul>
<h4>Payment Method Fixes</h4>
<ul>
<li>Resolved issue sending customer e-mail when using Payflow Link.</li>
<li>Security issues with Google Checkout payments have been resolved.</li>
<li>Security issues with Authorize.net payments have been resolved.</li>
<li>Magento conforms to the latest version of the PayPal Instant Payment Notification (IPN) guidelines.</li>
<li>The contents of a shopping cart are unaffected by canceling a PayPal payment.</li>
<li>Issues with not being able to continue checkout after switching payment methods have been resolved.</li>
<li>You can now process partial refunds and invoices for orders that were placed using Payflow Pro.</li>
<li>Payflow Link and Payments Advance now capture IPN transactions properly.</li>
<li>Special characters (such as e-mail addresses) are now handled properly by the Magento Payflow API integration.</li>
<li>Resolved errors with orders placed using the Website Payments Pro payment method.</li>
<li>PayPal Express Checkout payments are handled properly when a shopping cart price rule is specified.</li>
<li>Any PayPal Name-Value Pair (NVP) payment method no longer automatically refunds an order when a chargeback is initiated. Magento now allows the dispute to be resolved before taking the appropriate action.<br />
PayPal NVP payment methods include: PayPal Payments Pro (including PayPal Payments Pro Hosted), Payments Standard, and all Payflow methods.</li>
<li>PayPal Pro now correctly processes the shipping address for an order.</li>
<li>PayPal Express Checkout and PayPal Pro now handle partial refunds properly.</li>
<li>Fixed rounding errors that were preventing PayPal Express Checkout transactions from completing. The error occurred with the following configuration:
<ul>
<li>tax calculation method based on the total</li>
<li>tax calculated based on the shipping address</li>
<li>catalog prices exclude tax</li>
<li>shipping prices exclude tax</li>
<li>customer discount applied after a discount</li>
<li>discount applied to prices excluding tax</li>
<li>tax applied to a custom price if available<br />
(In the Admin Panel, click <strong>System</strong> &gt; <strong>Configuration</strong> &gt; SALES &gt; <strong>Tax</strong>. In the right pane, expand <strong>Calculation Settings</strong>.)</li>
</ul>
</li>
<li>The order status Suspected Fraud is now supported by PayPal Payments Pro (hosted) when PayPal fraud protection is enabled. Using the Magento Admin Panel, the merchant can also accept or deny any Suspected Fraud orders and have that decision applied to the PayPal transaction.</li>
<li>When sending payments in the United Kingdom, PayPal Payments Pro (hosted) now sends the value for <tt>state</tt> correctly. (Before the fix, <tt>city</tt> was sent as the value for <tt>state</tt>.)</li>
<li>Using the Ogone payment method, transactions display in the Magento Admin Panel after you capture them.</li>
<li>When an administrator places an order and uses PSi Gate, then cancels the order, the PSi Gate gateway displays both the order and the void transactions.</li>
<li>The following fields related to PayPal&#8217;s Payflow Pro Gateway payment method are now implemented properly:
<ul>
<li><tt>[custref]</tt> is the Magento customer&#8217;s ID</li>
<li><tt>[INVNUM]</tt> is Magento&#8217;s order number</li>
</ul>
</li>
<li>Fixed spurious <tt>Gateway error: Void error: V18A4B18E0F9 has been captured</tt> errors when canceling partially invoiced orders when the Payflow Pro processor was used to process the payment.</li>
<li><em>3-D secure fixes that affect UK merchants only</em>:
<ul>
<li>3-D Secure for UK merchants implementing Direct Payment works properly.</li>
<li>SagePay Direct with 3-D secure payments are processed correctly.</li>
</ul>
</li>
<li>The Braintree payment method can now be configured properly.</li>
<li>Partial captures are now supported for the following PayPal payment methods: Express Checkout, Payments Pro Payflow Edition, and PayPal Standard.</li>
<li>Using the PayPal Express Checkout method, a recently added customer can check out without the error <tt>This customer email already exists</tt>.</li>
</ul>
<h4>Other Fixes</h4>
<ul>
<li>Issues related to the DHL shipping method for picking up and pricing orders on holidays have been resolved as follows:
<ul>
<li>If the current date is a weekend, Magento chooses next Monday as the pick-up date.</li>
<li>If the current date is a holiday, Magento requests from DHL information about the next five consecutive days to find a workday on which to pick up the order.</li>
<li>If there is no workday in the five consecutive days following a holiday, the DHL shipping method is unavailable.</li>
</ul>
</li>
<li>The <tt>.htaccess.sample</tt> provided with Magento now includes <tt>php_value memory_limit 512M</tt>to be consistent with the Magento system requirements.</li>
<li>You can now install or upgrade to EE 1.13.0.2 if your Magento database had a table prefix (for example, all tables start with <tt>mage_</tt> because you specified a tables prefix during installation).</li>
<li>MySQL database deadlock issues were resolved.</li>
<li>CE 1.8 is now World Wide Web Consortium (W3C) compliant.</li>
<li>When an administrative user whose role is restricted to managing products attempts to edit Inventory settings (<strong>Catalog</strong> &gt; <strong>Manage Products</strong>, <strong>Inventory</strong>), only the available options display.</li>
<li>Related product information updates appropriately in the Admin Panel.</li>
<li>Issues with editing product inventory settings and category attributes using the Google Chrome web browser have been resolved.</li>
<li>Rolling back after a backup now works properly. (The Magento backup and rollback options are available in the Admin Panel in <strong>System</strong> &gt; <strong>Tools</strong> &gt; <strong>Backup</strong>.)</li>
<li>You can now fetch data for a PayPal Settlement Report using a custom Secure FTP (SFTP) server.</li>
<li>You can now save a category with the option <strong>Available Product Listing Sort By: Best value or Price</strong> enabled.</li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="Magento Demo - Softaculous external link" href="http://www.softaculous.com/demos/Magento" target="_blank" rel="noopener noreferrer">Magento</a> (Softaculous<em> external link</em>)<br />
<a title="Magento changelog - Oficial website external link" href="http://www.magentocommerce.com/knowledge-base/entry/ce-18-later-release-notes?icid=BLOG_magentoce18release_releasenotes" target="_blank" rel="noopener noreferrer">Magento Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start Magento</strong>:<br />
<span style="font-size: 13px;">In order to use Magento you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install Magento choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
</ul>
<ul>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>Magento</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>Magento</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/magento-update-1-8-0-0-released/">Magento Update 1.8.0.0 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Feng Office Updates 2.3.2 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/feng-office-updates-2-3-2-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Sat, 05 Oct 2013 19:35:31 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[Feng Office]]></category>
		<category><![CDATA[Group Office]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[Office]]></category>
		<category><![CDATA[Project Management]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://miamihoster.com/feng-office-updates-2-3-2-released</guid>

					<description><![CDATA[<p>Feng Office 2.3.2 this release contains large number of   updates and fixes.  Feng Office is a Collaboration Platform that enables you to manage your projects and business services, collaborate with your team and your customers, organize and share documents and files. Feng Office&#8217;s code is written in PHP, has a proven track record of [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/feng-office-updates-2-3-2-released/">Feng Office Updates 2.3.2 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>Feng Office 2.3.2 this release contains large number of   updates and fixes. </em></h4>
</blockquote>
<p>Feng Office is a Collaboration Platform that enables you to manage your projects and business services, collaborate with your team and your customers, organize and share documents and files.</p>
<p>Feng Office&#8217;s code is written in PHP, has a proven track record of stability and security. Feng Office is being actively developed.</p>
<h2>Changes Details</h2>
<ul>
<li>bugfix: Cannot filter overview by tag.</li>
<li>bugfix: Tasks tooltip in calendar views shows description as html.</li>
<li>bugfix: Permissions issue when editing and subscribing for non-admins for not classiffied objects.</li>
<li>bugfix: Missing lang on javascript langs.</li>
<li>bugfix: Javascript plugin langs are not loaded.</li>
<li>bugfix: When requesting completed tasks for calendar month view, it does not filter by dates and calendar hangs if there are too much tasks.</li>
<li>bugfix: Administration / dimensions does not show members for dimensions that don&#8217;t define permissions.</li>
<li>bugfix: Permissions fix when email module is not installed.</li>
<li>bugfix: Company object type name fixed.</li>
<li>bugfix: Try to reconect to database if not conected when executing a query (if connection is lost while performing other tasks).</li>
<li>bugfix: When users cannot see other user&#8217;s tasks they can view them using the search.</li>
<li>bugfix: Group permissions not applied in assigned to combo (when adding or editing tasks).</li>
<li>bugfix: Minor</li>
<li>bugfixes in 1.7 -&gt; 2.x upgrade.</li>
<li>bugfix: Activity widget: logs for members (workspaces, etc.) were not displayed.</li>
<li>bugfix: General search sql query improved.</li>
<li>bugfix: Don&#8217;t include context in the user edited notification.</li>
<li>bugfix: Don&#8217;t show worked hours if user doesn&#8217;t have permissions for it.</li>
<li>bugfix: Don&#8217;t send archived mails. feature: Only administrators can change system permissions. feature: Users can change permissions of users of the same type (only dimension member permissions). feature: Set permissions to executive, manager and admins when creating a new member.</li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="Feng Office Demo - Softaculous external link" href="http://www.softaculous.com/demos/Feng_Office" target="_blank" rel="noopener noreferrer">Feng Office</a> (Softaculous<em> external link</em>)<br />
<a title="Feng Office changelog - Oficial website external link" href="http://sourceforge.net/projects/opengoo/files/fengoffice/fengoffice_2.3.2/" target="_blank" rel="noopener noreferrer">Feng Office Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start Feng Office</strong>:<br />
<span style="font-size: 13px;">In order to use Feng Office you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install Feng Office choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>Feng Office</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>Feng Office</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/feng-office-updates-2-3-2-released/">Feng Office Updates 2.3.2 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Zurmo Update 2.2.4 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/zurmo-update-2-2-4-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Sat, 05 Oct 2013 17:28:51 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[CMR]]></category>
		<category><![CDATA[Customer Relationship Management]]></category>
		<category><![CDATA[Enterprise Resource Planning]]></category>
		<category><![CDATA[ERP]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Zurmo]]></category>
		<guid isPermaLink="false">http://miamihoster.com/zurmo-update-2-2-4-released</guid>

					<description><![CDATA[<p>Zurmo 2.2.4 this release contains a few updates. Zurmo is an Open Source Customer Relationship Management (CRM) application that is mobile, social, and gamified. We use a test-driven methodology for building every part of the application. This means you can create and maintain a custom-built CRM system with the assurance that future updates are not [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/zurmo-update-2-2-4-released/">Zurmo Update 2.2.4 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>Zurmo 2.2.4 this release contains a few updates</em>.</h4>
</blockquote>
<p>Zurmo is an Open Source Customer Relationship Management (CRM) application that is mobile, social, and gamified. We use a test-driven methodology for building every part of the application.</p>
<p>This means you can create and maintain a custom-built CRM system with the assurance that future updates are not going to break your installation.</p>
<h2>Details Changes</h2>
<ul>
<li>Updated PHP to 5.4.20</li>
<li><span style="font-size: 13px;">Added PHP-FPM support for cloud images and VMs</span></li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="Zurmo Demo - Softaculous external link" href="http://www.softaculous.com/demos/Zurmo" target="_blank" rel="noopener noreferrer">Zurmo</a> (Softaculous<em> external link</em>)</li>
</ul>
<ul>
<li><strong>Start Zurmo</strong>:<br />
<span style="font-size: 13px;">In order to use Zurmo you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install Zurmo choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>Zurmo</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>Zurmo</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/zurmo-update-2-2-4-released/">Zurmo Update 2.2.4 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Fork CMS Update 3.6.4 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/fork-cms-update-3-6-4-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Fri, 04 Oct 2013 19:14:36 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[Fork]]></category>
		<category><![CDATA[Fork CMS]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://miamihoster.com/fork-cms-update-3-6-4-released</guid>

					<description><![CDATA[<p>Fork Update 3.6.3 and 3.6.4. Improvements and bug fixes. Fork is an open source CMS that will rock your world. Fork CMS is dedicated to creating a user friendly environment to build, monitor and update your website. Fork takes great pride in being the Content Management System of choice for beginners and professionals. Changes Details [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/fork-cms-update-3-6-4-released/">Fork CMS Update 3.6.4 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>Fork Update 3.6.3 and 3.6.4. Improvements and bug fixes</em>.</h4>
</blockquote>
<p>Fork is an open source CMS that will rock your world. Fork CMS is dedicated to creating a user friendly environment to build, monitor and update your website. Fork takes great pride in being the Content Management System of choice for beginners and professionals.</p>
<h2>Changes Details</h2>
<p>Fork improvements version 3.6.3</p>
<ul>
<li>Simplified getting backend settings</li>
<li>Only show tagbox when users has rights</li>
<li>Terminal event triggered after response</li>
<li>Composer: Readme suggests using the optimise option now</li>
</ul>
<h2>Bug fixes</h2>
<p>Fork bugfixes version 3.6.3</p>
<ul>
<li>Google Tracking: Don&#8217;t ignore target on outbound links</li>
<li>Mailmotor: Export of selected addresses fixed</li>
<li>Couldn&#8217;t use terminate function not yet.  (version 3.6.4)</li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="Fork CMS Demo - Softaculous external link" href="http://www.softaculous.com/demos/Fork" target="_blank" rel="noopener noreferrer">Fork CMS</a> (Softaculous<em> external link</em>)<br />
<a title="Fork CMS changelog - Oficial website external link" href="http://www.fork-cms.com/blog" target="_blank" rel="noopener noreferrer">Fork CMS Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start Fork CMS</strong>:<br />
<span style="font-size: 13px;">In order to use Fork CMS you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install Fork CMS choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
</ul>
<ul>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>Fork CMS</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>Fork CMS</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/fork-cms-update-3-6-4-released/">Fork CMS Update 3.6.4 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Symfony Update 2.3.5 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/symfony-update-2-3-5-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Fri, 04 Oct 2013 17:36:10 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[webhosting]]></category>
		<guid isPermaLink="false">http://miamihoster.com/symfony-update-2-3-5-released</guid>

					<description><![CDATA[<p>Symfony 2.3.5 a  maintenance version was published. Meanwhile, in anticipation of the end of the Symfony 2.4 development phase, a lot of commits were merged in the master branch. Symfony is a PHP framework for web projects. Speed up the creation and maintenance of your PHP web applications. Replace the repetitive coding tasks by power, control [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/symfony-update-2-3-5-released/">Symfony Update 2.3.5 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>Symfony 2.3.5 a  maintenance version was published. Meanwhile, in anticipation of the end of the Symfony 2.4 development phase, a lot of commits were merged in the master branch</em>.</h4>
</blockquote>
<p>Symfony is a PHP framework for web projects. Speed up the creation and maintenance of your PHP web applications.</p>
<p>Replace the repetitive coding tasks by power, control and pleasure. Symfony is a PHP Framework, a Philosophy, and a Community &#8211; all working together in harmony.</p>
<h2>Chages Details</h2>
<ul>
<li>[HttpKernel] fixed usage of deprecated FlattenException</li>
<li>[DomCrawler] fixed HTML5 form attribute handling XPath query</li>
<li>[DependencyInjection] prevented inlining of lazy loaded private service definitions</li>
<li>[Security] set the BCryptPasswordEncoder $cost parameter to an integer</li>
</ul>
<h2>Main Changes</h2>
<ul>
<li>[Security] limited the password length passed to encoders</li>
<li>[ExpressionLanguage] introduced a ParserCacheInterface with array/doctrine implementations</li>
<li>[DomCrawler] removed checks if CssSelector is present</li>
<li>[Form] updated FormTypeCsrfExtension to retrieve the FormFactory directly</li>
<li>[Form] added the form debug collector</li>
<li>[Form] merged subsriber/collector, also collect valid forms</li>
<li>[Form] decoupled methods of ResolvedFormType so that they can be overridden individually by decorators</li>
<li>[HttpKernel] extracted value exporting logic of DataCollector into a separate ValueExporter class</li>
<li>[Form] improved form debugger</li>
<li>[DomCrawler] fixed an issue with namespace prefix matching being to greedy</li>
<li>[Validator] simplified usage of the Callback constraint</li>
<li>[FrameworkBundle] form_debug.xml should be loaded only if form config is enabled</li>
<li>[Translation] added support for JSON format (both loader and dumper)</li>
<li>[Process] added support for stdout and stderr flush</li>
<li>[PropertyAccess] throw exception on nonexistant &#8220;index&#8221; on read access</li>
<li>[Process] added ProcessBuilder::setEnvironmentVariables</li>
<li>[Filesystem] introduced new Exception base classes</li>
<li>[HttpKernel] made the cache key generation configurable for the default HttpCache store</li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="Symfony Demo - Softaculous external link" href="http://www.softaculous.com/demos/Symfony" target="_blank" rel="noopener noreferrer">Symfony</a> (Softaculous<em> external link</em>)<br />
<a title="Symfony changelog - Oficial website external link" href="http://symfony.com/blog/a-week-of-symfony-352-23-29-september-2013" target="_blank" rel="noopener noreferrer">Symfony Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start Symfony</strong>:<br />
<span style="font-size: 13px;">In order to use Symfony you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install Symfony choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
</ul>
<ul>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>Symfony</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>Symfony</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/symfony-update-2-3-5-released/">Symfony Update 2.3.5 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>phpList Update 3.0.4 released</title>
		<link>https://orangeinternetsolutions.com/security-updates/phplist-update-3-0-4-released/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Thu, 03 Oct 2013 19:42:02 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[emails]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[Mails]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[phpList]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[webhosting]]></category>
		<guid isPermaLink="false">http://miamihoster.com/phplist-update-3-0-4-released</guid>

					<description><![CDATA[<p>phpList 3.0.1 this version fixes a few minor issues and updates the way members of a list are displayed. phpList is an open-source newsletter manager. phplist is free to download, install and use, and is easy to integrate with any website. phplist is downloaded more than 10000 times per month. Changes Details They&#8217;ve made a [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/phplist-update-3-0-4-released/">phpList Update 3.0.4 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>phpList 3.0.1 this version fixes a few minor issues and updates the way members of a list are displayed.</em></h4>
</blockquote>
<p>phpList is an open-source newsletter manager. phplist is free to download, install and use, and is easy to integrate with any website. phplist is downloaded more than 10000 times per month.</p>
<h2>Changes Details</h2>
<p>They&#8217;ve made a change in the way members of a list are counted. Before any subscriber who is linked to a list was counted as a member. They decided this was incorrect, as really only confirmed subscribers should be counted.</p>
<p>So, this version has changed the display of members of a list and will only consider confirmed subscribers to be a member. It will still allow you to view the subscribers who are not confirmed and act on them.</p>
<p>This is likely to cause a &#8220;drop&#8221; in the number of subscribers on your list, but that is mostly because the new count is more accurate.</p>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="phpList Demo - Softaculous external link" href="http://www.softaculous.com/demos/phpList" target="_blank" rel="noopener noreferrer">phpList</a> (Softaculous<em> external link</em>)<br />
<a title="phpList changelog - Oficial website external link" href="http://www.phplist.com/?lid=608" target="_blank" rel="noopener noreferrer">phpList Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start phpList</strong>:<br />
<span style="font-size: 13px;">In order to use phpList you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install phpList choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
</ul>
<ul>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>phpList</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>phpList</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/phplist-update-3-0-4-released/">phpList Update 3.0.4 released</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Contao Update 3.1.3</title>
		<link>https://orangeinternetsolutions.com/security-updates/contao-update-3-1-3/</link>
		
		<dc:creator><![CDATA[Orange]]></dc:creator>
		<pubDate>Thu, 03 Oct 2013 17:51:03 +0000</pubDate>
				<category><![CDATA[Security & Updates]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Contao]]></category>
		<category><![CDATA[Content Management System]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[managed hosting]]></category>
		<category><![CDATA[Softaculous]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[web hosting]]></category>
		<category><![CDATA[web site]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<guid isPermaLink="false">http://miamihoster.com/contao-update-3-1-3</guid>

					<description><![CDATA[<p>Contao version 3.1.3 is available. The bugfix release fixes a potential data inconsistency issue when using models, which can be caused by the result cache. Contao is an open source content management system (CMS) for people who want a professional internet presence that is easy to maintain. The state-of-the-art structure of the system offers a [&#8230;]</p>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/contao-update-3-1-3/">Contao Update 3.1.3</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></description>
										<content:encoded><![CDATA[<blockquote>
<h4 style="text-align: center;"><em>Contao version 3.1.3 is available. The bugfix release fixes a potential data inconsistency issue when using models, which can be caused by the result cache.</em></h4>
</blockquote>
<p>Contao is an open source content management system (CMS) for people who want a professional internet presence that is easy to maintain.</p>
<p>The state-of-the-art structure of the system offers a high security standard and allows you to develop search engine friendly websites that are also accessible for people with disabilities.</p>
<p>Furthermore, the system can be expanded flexibly and inexpensively.</p>
<h2>Bug fixes</h2>
<p>The bugfix release fixes a potentiall data inconsistency issue when using models, which can be caused by the result cache.</p>
<p>The result cache has been removed entirely to fix the issue, which renders the methods <code>executeUncached()</code>and <code>executeCached()</code> deprecated. They only remain available as alias for the <code>execute()</code> method for reasons of backwards compatibility.</p>
<ul>
<li>Do not redirect to protected pages after logout.</li>
<li><span style="font-size: 13px;">Consider the additional arguments in Frontend::jumpToOrReload().</span></li>
<li><span style="font-size: 13px;">Prevent article aliases from using reserved names.</span></li>
<li><span style="font-size: 13px;">Correctly update the RSS feeds if a news item or event changes.</span></li>
<li><span style="font-size: 13px;">Correctly link to news and calendar feeds via insert tag.</span></li>
<li><span style="font-size: 13px;">Make the CSS ID available in the custom navigation module.</span></li>
<li><span style="font-size: 13px;">Do not cache the &#8220;toggle_view&#8221; insert tag.</span></li>
<li><span style="font-size: 13px;">Unset the primary key if a model is deleted.</span></li>
<li><span style="font-size: 13px;">Support tel: and sms: upon IDNA conversion.</span></li>
<li><span style="font-size: 13px;">Apply the width and height to the audio player as well.</span></li>
<li><span style="font-size: 13px;">Do not exit after a template has been output.</span></li>
<li><span style="font-size: 13px;">Drop the database query cache (see #6070). This renders executeUncached() and executeCached() deprecated. Use execute() instead.</span></li>
<li><span style="font-size: 13px;">Handle all possible errors when uploading files.</span></li>
</ul>
<h2>More Information</h2>
<ul>
<li><strong>Try Online Demo</strong>:<br />
<a title="Cantao Demo - Softaculous external link" href="http://www.softaculous.com/demos/Contao" target="_blank" rel="noopener noreferrer">Contao</a> (Softaculous<em> external link</em>)<br />
<a title="Cantao changelog - Oficial website external link" href="https://contao.org/en/changelog/versions/3.1.html" target="_blank" rel="noopener noreferrer">Contao Changelog</a> (<em>Official website, external link</em>)</li>
</ul>
<ul>
<li><strong>Start Contao</strong>:<br />
<span style="font-size: 13px;">In order to use Contao you need a domain name (ex. yoursite.com) and web hosting service.<br />
If you don&#8217;t have a domain name </span><a style="font-size: 13px;" title="Register a domain to start Office Group" href="http://miamihoster.com/client_area/domainchecker.php">Register a Domain Name</a><span style="font-size: 13px;">.<br />
</span>To install Contao choose one of our <a title="Web Hosting Comparison Chart" href="http://miamihoster.com/services/web-hosting-cloud-services/web-hosting-chart/">hosting plans</a>. (all our packages includes <em>Softaculous</em>).</li>
</ul>
<ul>
<li><strong style="font-size: 13px;">Hosted<strong> <strong>Contao</strong></strong><br />
</strong><a style="font-size: 13px;" title="Group Office stand alone" href="http://miamihoster.com/contact-us/"><strong>Contact us</strong></a><span style="font-size: 13px;"> if you </span><strong style="font-size: 13px;">don&#8217;t need a domain or hosting service</strong><span style="font-size: 13px;">, and want to use <strong>Contao</strong></span><span style="font-size: 13px;"> anyway.</span></li>
</ul>
<div>[otw_is sidebar=otw-sidebar-7]</div>
<p>[otw_is sidebar=otw-sidebar-8]</p>
<table width="100%">
<tbody>
<tr>
<td colspan="2">
<h2>Blog: News &amp; Updates</h2>
</td>
</tr>
<tr>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-5]</td>
<td valign="top" width="50%">[otw_is sidebar=otw-sidebar-6]</td>
</tr>
</tbody>
</table>
<div>[otw_is sidebar=otw-sidebar-9]</div>
<p>The post <a href="https://orangeinternetsolutions.com/security-updates/contao-update-3-1-3/">Contao Update 3.1.3</a> appeared first on <a href="https://orangeinternetsolutions.com">Orange Internet Solutions</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
