<?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>The Open Sourcerer &#187; Apache</title>
	<atom:link href="http://www.theopensourcerer.com/tag/apache/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theopensourcerer.com</link>
	<description>The Magic of Open Source</description>
	<lastBuildDate>Tue, 24 Jan 2012 09:10:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>How to install OpenERP 6 on Ubuntu 10.04 LTS Server (Part 2 &#8211; SSL)</title>
		<link>http://www.theopensourcerer.com/2011/04/21/how-to-install-openerp-6-on-ubuntu-10-04-lts-server-part-2-ssl/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-install-openerp-6-on-ubuntu-10-04-lts-server-part-2-ssl</link>
		<comments>http://www.theopensourcerer.com/2011/04/21/how-to-install-openerp-6-on-ubuntu-10-04-lts-server-part-2-ssl/#comments</comments>
		<pubDate>Thu, 21 Apr 2011 16:26:15 +0000</pubDate>
		<dc:creator>Alan Lord</dc:creator>
				<category><![CDATA[FLOSS in the news]]></category>
		<category><![CDATA[OpenERP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[CalDAV]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://www.theopensourcerer.com/?p=2869</guid>
		<description><![CDATA[This article follows on (hopefully not unsurprisingly) from part 1. In this post I&#8217;ll describe our current way of providing SSL encrypted access to a shiny new OpenERP server running on Ubuntu 10.04 LTS Server. We&#8217;re using the Apache webserver to act as a proxy and do SSL termination for web client access and for [...]]]></description>
			<content:encoded><![CDATA[<p>This article follows on (hopefully not unsurprisingly) from <a href="http://www.theopensourcerer.com/2011/04/19/how-to-install-openerp-6-on-ubuntu-10-04-lts-server-part-1">part 1</a>.</p>
<p>In this post I&#8217;ll describe <em>our current way</em> of providing SSL encrypted access to a shiny new OpenERP server running on Ubuntu 10.04 LTS Server. </p>
<p>We&#8217;re using the Apache webserver to act as a proxy and do SSL termination for web client access and for WebDAV/CalDAV access. The GTK client will also be running over an encrypted XMLRPC link directly to the OpenERP Server. Apache is the most widely used webserver in the world and there is oodles of documentation about it so I do not plan to go into any great detail about the configuration choices. One document that is worth pointing out however is the information about how to configure and administer Apache <strong>specifically</strong> under Debian/Ubuntu. The way Apache is packaged and set up is quite different from most other Linux distributions. A very useful document can be found here <code>/usr/share/doc/apache2.2-common/README.Debian.gz</code> on your server.</p>
<p><em>NB: For the purposes of this how to, we&#8217;ll be using self-signed certificates. A discussion of the pros and cons of this choice is beyond the scope of this article.</em></p>
<h3>Step 1. Install Apache and required modules</h3>
<p>On your server install apache2 by typing</p>
<p><code>sudo apt-get install apache2</code></p>
<p>Now we&#8217;ll tell apache that we want to use a few modules (<a href="http://httpd.apache.org/docs/2.2/mod/mod_ssl.html">mod_ssl</a>, <a href="http://httpd.apache.org/docs/2.2/mod/mod_proxy.html">mod_proxy</a>, <a href="http://httpd.apache.org/docs/2.2/mod/mod_proxy_http.html">mod_proxy_http</a>, <a href="http://httpd.apache.org/docs/2.2/mod/mod_headers.html">mod_headers</a> and <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html">mod_rewrite</a> [optional]) that are not enabled by default:</p>
<p><code>sudo a2enmod ssl proxy_http headers rewrite</code></p>
<p>Next, we need to generate a SSL certificate and key.</p>
<h3>Step 2. Create your cert and key</h3>
<p>I create the files in a temporary directory then move them to their final resting place once they have been built (the first <code>cd</code> is just to make sure we are in our home directory to start with):</p>
<p><code>cd<br />
mkdir temp<br />
cd temp</code></p>
<p>Then we generate a new key, you will be asked to enter a passphrase and confirm:</p>
<p><code>openssl genrsa -des3 -out server.pkey 1024</code></p>
<p>We don&#8217;t really want to have to enter a passphrase every time the server starts up so we remove the passphrase by doing this:</p>
<p><code>openssl rsa -in server.pkey -out server.key</code></p>
<p>Next we need to create a signing request which will hold the data that will be visible in your final certificate:</p>
<p><code>openssl req -new -key server.key -out server.csr</code></p>
<p>This will generate a series of prompts like this: Enter the information as requested:</p>
<blockquote><p>
You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter &#8216;.&#8217;, the field will be left blank.<br />
&#8212;&#8211;<br />
Country Name (2 letter code) [AU]:<br />
State or Province Name (full name) [Some-State]:<br />
Locality Name (eg, city) []:<br />
Organization Name (eg, company) [Internet Widgits Pty Ltd]:<br />
Organizational Unit Name (eg, section) []:<br />
Common Name (eg, YOUR name) []:<br />
Email Address []:</p>
<p>Please enter the following &#8216;extra&#8217; attributes<br />
to be sent with your certificate request<br />
A challenge password []:<br />
An optional company name []:The Client&#8217;s Company
</p></blockquote>
<p>And finally we self-sign our certificate.</p>
<p><code>openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt</code></p>
<p>We only need two of the files in the working directory, the key and the certificate. But before we can use them they need to have their ownership and access rights altered:</p>
<p><code>sudo chown openerp:root server.crt server.key<br />
sudo chmod 640 server.crt server.key</code></p>
<p>And then we put them in a sensible place:</p>
<p><code>sudo mkdir /etc/ssl/openerp<br />
sudo chown openerp:root /etc/ssl/openerp<br />
sudo chmod 710 /etc/ssl/openerp<br />
sudo mv server.crt server.key /etc/ssl/openerp/</code></p>
<p>Now the key and certificate are safely stored away, we can tell Apache where they are:</p>
<h3>Step 3. Create the Apache site configuration file</h3>
<p>We create a new Virtual Host configuration file </p>
<p><code>sudo nano /etc/apache2/sites-available/openerp-ssl</code></p>
<p>with the following content:</p>
<blockquote><p>
<code>&lt;VirtualHost *:443&gt;</p>
<p>    SSLEngine on<br />
    SSLCertificateFile    /etc/ssl/openerp/server.crt<br />
    SSLCertificateKeyFile /etc/ssl/openerp/server.key</p>
<p>    ProxyRequests Off</p>
<p>    &lt;Proxy *&gt;<br />
        Order deny,allow<br />
        Allow from all<br />
    &lt;/Proxy&gt;</p>
<p>    ProxyVia On</p>
<p>    ProxyPass    /webdav/    http://127.0.0.1:8069/webdav/<br />
    &lt;Location /webdav/ &gt;<br />
        ProxyPassReverse /webdav/<br />
        &lt;Limit OPTIONS PROPFIND GET REPORT MKACTIVITY PROPPATCH PUT MOVE COPY DELETE LOCK UNLOCK&gt;<br />
          Order Deny,Allow<br />
          Allow from all<br />
          Satisfy Any<br />
        &lt;/Limit&gt;<br />
    &lt;/Location&gt;</p>
<p>    ProxyPass    /   http://127.0.0.1:8080/<br />
    &lt;location / &gt;<br />
        ProxyPassReverse /<br />
    &lt;/location&gt;</p>
<p>    RequestHeader set "X-Forwarded-Proto" "https"</p>
<p>    # Fix IE problem (httpapache proxy dav error 408/409)<br />
    SetEnv proxy-nokeepalive 1</p>
<p>&lt;/VirtualHost&gt;</code>
</p></blockquote>
<p>Note there are two Proxy configurations. One for <code>/webdav/</code> and one for <code>/</code>. If you do not intend to use WebDAV or CalDAV then you can remove that section. But essentially, we are telling apache that WebDAV traffic needs to go to the XMLRPC port on the OpenERP server, and normal web traffic needs to go to the web client that is listening on port 8080. The order is also important. If <code>/</code> came before <code>/webdav/</code> then it wouldn&#8217;t work.</p>
<p>And then we can enable the new site configuration.</p>
<p><code>sudo a2ensite openerp-ssl</code></p>
<p>Optionally, you can use mod_rewrite to redirect any normal (non-encrypted) web browser traffic to the SSL port (443).</p>
<p>To do this, add the following lines (outside of the <code>&lt;directory&gt;</code> config blocks) into the file <code>/etc/apache2/sites-available/default</code></p>
<blockquote><p>
RewriteEngine   on<br />
RewriteCond     %{SERVER_PORT} ^80$<br />
RewriteRule     ^(.*)$ https://%{SERVER_NAME}$1 [L,R]
</p></blockquote>
<h3>Step 4. Change the OpenERP server and web-client configuration files</h3>
<p>The next step is to re-configure the OpenERP server and Web client so that the non-encrypted services are not accessible from the outside world.</p>
<p>In <code>/etc/openerp-server.conf</code> the two non-encrypted services will only listen on localhost, i.e. not from external connections so in effect only traffic from Apache will be accepted. We also tell the XMLRPC-SSL service where to find the necessary key and certificate. </p>
<p>Make the following changes:</p>
<p><code>sudo nano /etc/openerp-server.conf</code></p>
<blockquote><p>
xmlrpc = True<br />
xmlrpc_interface = 127.0.0.1<br />
xmlrpc_port = 8069</p>
<p>netrpc = True<br />
netrpc_interface = 127.0.0.1<br />
netrpc_port = 8070</p>
<p>xmlrpcs = True<br />
xmlrpcs_interface =<br />
xmlrpcs_port = 8071<br />
secure_pkey_file = /etc/ssl/openerp/server.key<br />
secure_cert_file = /etc/ssl/openerp/server.crt
</p></blockquote>
<p>If you want to have WebDAV/CalDAV access add the following at the bottom of the config file.</p>
<blockquote><p>
[webdav]<br />
enable = True<br />
vdir = webdav
</p></blockquote>
<p>Then in the web client config file /etc/openerp-web.conf make the following changes so that it also only accepts traffic from localhost:</p>
<p><code>sudo nano /etc/openerp-web.conf</code></p>
<blockquote><p>
# Some server parameters that you may want to tweak<br />
server.socket_host = &#8220;127.0.0.1&#8243;</p>
<p># Set to True if you are deploying your App behind a proxy<br />
# e.g. Apache using mod_proxy<br />
tools.proxy.on = True</p>
<p># If your proxy does not add the X-Forwarded-Host header, set<br />
# the following to the *public* host url.<br />
tools.proxy.base = &#8216;https://your-ip-or-domain&#8217;</p>
<p># Set to false to disable CSRF checks<br />
tools.csrf.on = False
</p></blockquote>
<p>That&#8217;s it.</p>
<h3>Step 5. Try it out</h3>
<p>Restart the services to load the new configurations</p>
<p><code>sudo service openerp-server restart<br />
sudo service openerp-web restart<br />
sudo service apache2 restart</code></p>
<p>You should not be able to connect to the web client on port 8080 and the GTK client should not connect on either the NetRPC (8070) or XMLRPC (8069) services. For the web access you just need to visit https://your-ip-or-domain and in the GTK client you will need to use port 8071 and choose the XMLRPC (Secure) protocol.</p>
<p>For CalDAV access the URL to a calendar will be something like this:</p>
<p><code>https://your-ip-or-domain/webdav/DB_NAME/calendars/users/USERNAME/c/CALENDAR_NAME</code></p>
<p>I hope that is helpful and obviously we&#8217;d love to hear comments and suggestions for improvements.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theopensourcerer.com/2011/04/21/how-to-install-openerp-6-on-ubuntu-10-04-lts-server-part-2-ssl/feed/</wfw:commentRss>
		<slash:comments>74</slash:comments>
		</item>
		<item>
		<title>When you book an airline ticket, you use FOSS</title>
		<link>http://www.theopensourcerer.com/2009/03/03/when-you-book-an-airline-ticket-you-use-foss/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=when-you-book-an-airline-ticket-you-use-foss</link>
		<comments>http://www.theopensourcerer.com/2009/03/03/when-you-book-an-airline-ticket-you-use-foss/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 18:04:34 +0000</pubDate>
		<dc:creator>Alan Lord</dc:creator>
				<category><![CDATA[FLOSS in the news]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[FUSE]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Sabre]]></category>
		<category><![CDATA[Terracotta]]></category>

		<guid isPermaLink="false">http://www.theopensourcerer.com/?p=902</guid>
		<description><![CDATA[This article on ReadWriteWeb really caught my eye today. From my previous life in data and telecoms I know a little of the scale of the Sabre network. It&#8217;s BIG. By the sounds of things most of it runs on Open Source software too. They have announced a partnership with a commercial Open Source vendor [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.readwriteweb.com/archives/sabre_fuse_progress_open_source.php">This</a> article on <a href="http://www.readwriteweb.com/">ReadWriteWeb</a> really caught my eye today.</p>
<p>From my previous life in data and telecoms I know a little of the scale of the <a href="http://www.sabre.com/">Sabre</a> network. It&#8217;s BIG. By the sounds of things most of it runs on Open Source software too. They have announced a partnership with a commercial Open Source vendor <a href="http://www.progress.com/index.ssp">Progress</a> to use a number of their <a href="http://fusesource.com/">FUSE</a> Open Source products.</p>
<blockquote><p>By default, Sabre only chooses off-the-shelf software <del datetime="2009-03-03T17:42:12+00:00">as its last option if</del> when no open-source solution is available. If there is neither an open-source nor an off-the-shelf solution, Sabre&#8217;s own technology team will provide an in-house solution.</p></blockquote>
<blockquote><p>Sabre, as Progress&#8217;s Debbie Moynihan proudly pointed out to us, can&#8217;t afford any downtime &#8211; and FUSE&#8217;s Supplier-Side Gateway, which currently handles about 1.5 million transaction a day, has now run on Sabre&#8217;s system for 14 months without any error.</p>
<p>Besides FUSE&#8217;s offerings, which are based on Apache products, Sabre also extensively uses Apache&#8217;s <a href="http://httpd.apache.org/">web server</a>, <a href="http://www.mysql.com/">MySQL</a>, <a href="http://www.hibernate.org/">Hibernate</a>, <a href="http://www.terracotta.org/">Terracotta</a> and a number of other open source products. Also, two-thirds of Sabre&#8217;s 5000 servers currently run Linux and the company expects to expand this number over time.</p></blockquote>
<p>Nice figures.  Good story. </p>
<p>It&#8217;s when I hear about these really massive and important networks that can&#8217;t really go down using FOSS because it works and works well that I really wonder why uptake across the whole enterprise space is so shockingly small in comparison. And then I remember why I think it is so.</p>
<p>The Huge Marketing Budgets of one or two proprietary vendors. But, you know what. I think the times they are a changing&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theopensourcerer.com/2009/03/03/when-you-book-an-airline-ticket-you-use-foss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another tale of Open Sourcery</title>
		<link>http://www.theopensourcerer.com/2008/12/01/another-tale-of-open-sourcery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=another-tale-of-open-sourcery</link>
		<comments>http://www.theopensourcerer.com/2008/12/01/another-tale-of-open-sourcery/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 13:46:40 +0000</pubDate>
		<dc:creator>Alan Lord</dc:creator>
				<category><![CDATA[Runes and tales]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[PostgreSQL]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.theopensourcerer.com/?p=554</guid>
		<description><![CDATA[Martyn, from Severn Delta Ltd, emailed me saying he had an Open Source story to tell. I&#8217;ve had this in my inbox for a while now, but have finally got round to publishing it. Alan, I own 50% of a manufacturing company in Bridgwater. When we bought the company out of receivership in &#8217;03 we [...]]]></description>
			<content:encoded><![CDATA[<p>Martyn, from <a title="Severn Delta Ltd" href="http://www.severndelta.co.uk/" target="_blank">Severn Delta Ltd</a>, emailed me saying he had an Open Source story to tell. I&#8217;ve had this in my inbox for a while now, but have finally got round to publishing it.</p>
<blockquote><p>Alan,</p>
<p>I own 50% of a manufacturing company in Bridgwater. When we bought the  company out of receivership in &#8217;03 we had no systems at all. Our former  parent company was running a character based ERP system called MAX on  Unix and a Windows file serving network.</p>
<p>So day 1 (ish!) we set up two RH servers and installed samba, sendmail,  apache etc on one for file print intranet and email and the Linux port  of MAX on the other.</p>
<p>See this post for some other detail.</p>
<p><a title="Severn Delta's Blog" href="http://blogs.severndelta.co.uk/?p=5" target="_blank">http://blogs.severndelta.co.uk/?p=5</a></p>
<p>We have not been able to find a &#8220;right-sized&#8221; ERP solution for our needs  to replace the ageing character based system (which had been &#8220;sunsetted&#8221;  by infor in &#8217;05). We also needed some form of CRM package to mange the  growth of the company once we had moved into our new building in &#8217;05.</p>
<p>So&#8230;. we decided to develop our own system in combination with an open  source CRM package from a company called Senokian Solutions  (<a title="Senokian" href="http://www.senokian.com/" target="_blank">http://www.senokian.com</a>) called <a title="Enterprise Groupware System" href="http://www.enterprisegroupwaresystem.org/" target="_blank">EGS</a>.</p>
<p>EGS is PHP/Ajax based and runs against PostgreSQL. It also has its own  development framework based on MVC that allows you to add modules. EGS  2.0 core has CRM, Project Management, Ticketing modules and a framework  that allows for integrated e-commerce apps and site content management.  It is free and open source.</p>
<p>The tools on which the system is built are:<br />
Linux (Ubuntu)<br />
Apache<br />
PostgreSQL<br />
PHP 5<br />
Ajax<br />
Smarty Template Engine<br />
EZ pdf<br />
XML/SWF Charts</p>
<p>In November 2006 I took on a developer, Dave Easeman, to help code the  accounts/ERP system as I specified it &#8211; we are now 99% of the way  through &#8211; although I guess we will never finish the project! We are  about to go live (Jan 1st) and then the aim is to polish everything up  in Quarter 1/2 2009.</p>
<p>See here for a link on our blog<br />
<a class="moz-txt-link-freetext" href="http://blogs.severndelta.co.uk/?p=58">http://blogs.severndelta.co.uk/?p=58</a></p>
<p>Maybe what I&#8217;ll do is update you as we progress to &#8220;go live&#8221; on Jan 1.</p>
<p>Regards</p>
<p>Martyn Shiner<br />
Financial Director<br />
Severn Delta Limited</p></blockquote>
<p>Thanks for the story Martyn, it&#8217;s very encouraging how companies such as yours (i.e. not some global enterprise with billions of dollars in the bank) are able to deploy, manage, run and develop their own IT systems using FOSS. This is a great example of just how flexible and accessible FOSS really is.</p>
<p>I love this quote (from the first blog link):</p>
<blockquote><p>I will never buy a Windows based PC ever again.</p>
<p>Are you listening Bill?</p></blockquote>
<p>That was written in August last year. I&#8217;m interested if you have managed to stick to that goal Martyn?</p>
<p>Good luck with your deployment. I genuinely hope it goes well, and please do keep us updated on your progress. You seem to have a similar tenacity to Adrian Steele at Mercian Labels who has also been blogging about their own <a title="Mercian Labels: Update on their FOSS migration" href="http://www.selfadhesivelabels.com/blog/2008/11/17/open-source-migration-update/" target="_blank">migration to FOSS</a>. And they also developed a core application from scratch too &#8211; for them it was a CRM/MIS app.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theopensourcerer.com/2008/12/01/another-tale-of-open-sourcery/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Alfresco, a bit like Quickr but Bettr</title>
		<link>http://www.theopensourcerer.com/2008/05/23/alfresco-a-bit-like-quickr-but-bettr/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=alfresco-a-bit-like-quickr-but-bettr</link>
		<comments>http://www.theopensourcerer.com/2008/05/23/alfresco-a-bit-like-quickr-but-bettr/#comments</comments>
		<pubDate>Fri, 23 May 2008 14:39:39 +0000</pubDate>
		<dc:creator>Alan Bell</dc:creator>
				<category><![CDATA[Runes and tales]]></category>
		<category><![CDATA[Alfresco]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[Joomla!]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tomcat]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.theopensourcerer.com/?p=264</guid>
		<description><![CDATA[Quickr, for those who are lucky enough not to know, is the morphologically challenged relative of Lotus Quickplace. In reality it is Quickplace with two new themes, two new placetypes and two versions of dojo dumped on the filesystem to make things look a bit more &#8220;Web 2.0&#8243; and some windows-only integration with Microsoft only [...]]]></description>
			<content:encoded><![CDATA[<p>Quickr, for those who are lucky enough not to know, is the morphologically challenged relative of Lotus Quickplace. In reality it is Quickplace with two new themes, two new placetypes and two versions of dojo dumped on the filesystem to make things look a bit more &#8220;Web 2.0&#8243; and some windows-only integration with Microsoft only applications. So why I am I telling you about proprietary software here on &#8220;The Open Sourcerer&#8221;? Well I have a bit of a background in the IBM/Lotus area and I have been developing corporate themes for Quickplace since sometime in the last millennium. It hasn&#8217;t changed much, but there is a very serious Free and Open Source alternative now.</p>
<p>In brief, Quickr is a website creating tool, each site is known as a &#8220;place&#8221; and within a place you can have folders and rooms. Rooms are like sub-places, they can have their own access control rules and a different style. They can contain rooms as well so you can have a hierarchy of places. It looks quite pretty, and 10 years ago it was 5 years ahead of its time. It has now got a client install, which integrates with some legacy Windows applications, more on that later.</p>
<p>Alfresco is an Open Source Enterprise Content Management System, which runs as a J2EE application on Linux and other platforms (I would stick to Linux+Apache+Tomcat+MySQL for preference). Like Quickr you create areas for storing stuff, in Alfresco they are called &#8220;Spaces&#8221;. Spaces can contain files, folders and more spaces.</p>
<h2>Inheritance of security to sub-spaces/rooms</h2>
<p>So in Quickr you create a place, you add members to that place, you create a room within the place, you carefully check the checkbox labeled &#8220;inherit members from parent place&#8221; as you create it so that all the members of the place can get into the room. Lovely. Now add another member to the place. You would expect them to be able to access the room wouldn&#8217;t you?</p>
<p>No. Inheritance is a one shot deal when you create a room, it just copies the access control list from the parent room as it creates the subroom. Now imagine an place in an enterprise with 100+ rooms and managing user access to this lot. It gets messy.</p>
<p>In Alfresco, inheritance works just like it should. You can set a space to inherit from the parent space, and override it at will. Nice, friendly and fit for the enterprise user/administrator.</p>
<h2>Access as a file system</h2>
<p>The big new feature in Quickr (the pretty skins don&#8217;t count as they are only skin deep) is the Quickr Connectors. This Windows only program installs as a Windows Explorer extension and sits alongside the network neighbourhood, it sort of works like a filesystem.</p>
<p>You can&#8217;t do linked spreadsheets (OpenOffice.org or Symphony, or the other one) because the files don&#8217;t reside at a resolvable UNC path.</p>
<p>Folders are deeply broken. You can create folders, and nested folders, but they look rubbish in most of the web themes which are designed for a single level of folders. If you do use a web theme with a hierarchical folder tree and then use the web interface to move folders between rooms, they break in the connector. Moving them in the web doesn&#8217;t update some important UNID field somewhere, I couldn&#8217;t figure out which, but I reported it as a bug.</p>
<p>Personal spaces (aka Quickr Entry) were supposed to be a wonderful thing, when you send an email with an attachment from a proprietary email client (Lotus Notes or the other one) it asks you if you want to store the attachment in your Quickr place and send a link instead. This sort of works. With no security. Your place is public, anyone can see stuff you put in it (with a lame security-by-obscurity option which I haven&#8217;t figured out how to get to yet). So you want to organise your space, putting stuff in folders etc. well you can&#8217;t. Folders aren&#8217;t allowed in personal spaces. Tough.</p>
<p>So how does file system access work in Alfresco? Well it will act as a WebDav server or a CIFS server or both. There is no mucking about with locally installed connector clients and Windows Explorer extensions to make it look a little bit like a network filesystem. It <em>is</em> a network filesystem. WebDAV is well supported on Linux and Mac and it works on Windows too. Once you connect to your server via WebDAV it just looks like another bit of your filesystem. You can drag and drop documents into and out of it, double click things to open them etc. Linked spreadsheets work fine, and in fact every application that expects to be storing or accessing data on a regular drive works just fine with your remote content management system. It isn&#8217;t just any remote drive though, it is still a content management system, if the business rules for a space where you drop a file dictate version control then that is exactly what happens.</p>
<h2>Version control</h2>
<p>So lets say you have a document in Quickr created with a form set up for optional version control (which is a bit of a sloppy concept in itself). You are doing some edits and what started as correcting a few typos turns into a major re-factoring session. You now want to save your document as a new version. Tough. Too late. You have to create a new version before you start editing it, otherwise you are just editing and overwriting the existing version. Quickplace always had a published version + working draft system, it now has a sort of revision history stuffed into it. The two models don&#8217;t seem to like each other very much.</p>
<p>Version control in Alfresco is somewhat more thought out, it has a very powerful Advanced Versioning Manager, which can track back not just individual files, but directories, it can show you the state of the whole repository at a particular point in time. Very useful for the multiple linked spreadsheets example. It can do way more than this, it is configurable as</p>
<h2>So what does work Bettr in Quickr?</h2>
<p>Well Quickr has a truly sickening theme/skin engine. It only works in Internet Explorer with ActiveX and you can upload 6 files (stylesheet + 5 HTML files) which it scoops up along with any referenced images. The HTML files basically duplicate each other, or you can upload just one HTML file and have it guess what the others should look like. There is no community site to share and sell Quickr skins that I know of, unlike Joomla! and WordPress etc. However, rubbish as the theme engine is, it is better than Alfresco which doesn&#8217;t yet have a skinning capability (you can edit the stylesheet and all the .jsp files, but that isn&#8217;t the same as a facility for uploading a package of skin elements so that places can be individually styled.)</p>
<p>Quickr isn&#8217;t just for storing files, it has a nice calendar that can show custom forms on it. I haven&#8217;t yet seen a calendar view for Alfresco. The Gantt chart view in Quickr isn&#8217;t very sophisticated at all, I wouldn&#8217;t miss that, but the calendar is useful.</p>
<p>When uploading files though the web interface from some Microsoft Office applications it does an ActiveX/COM control thing that gets the application to save as HTML as well as the native binary format and it uploads both the HTML version and the native format. It then serves up the HTML version to browser clients, which would be a nice trick. If it worked a bit better. It doesn&#8217;t do this trick if using the windows explorer integration, so if you use a mixture of the Quickr connector and the web client you get a great big muddle and a mess.</p>
<h2>In conclusion</h2>
<p>If I had to do a 15 minute sales demo, on Windows, I could easily make Quickr look fantastic, but when comparing Quickr against Alfresco as a serious tool for long term use in a modern business, Quickr falls short and Alfresco is the one I would choose.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theopensourcerer.com/2008/05/23/alfresco-a-bit-like-quickr-but-bettr/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Microsoft&#8217;s IIS vs. Apache: is Apache really in decline?</title>
		<link>http://www.theopensourcerer.com/2007/10/18/microsofts-iis-vs-apache-is-apache-really-in-decline/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsofts-iis-vs-apache-is-apache-really-in-decline</link>
		<comments>http://www.theopensourcerer.com/2007/10/18/microsofts-iis-vs-apache-is-apache-really-in-decline/#comments</comments>
		<pubDate>Thu, 18 Oct 2007 15:54:08 +0000</pubDate>
		<dc:creator>Alan Lord</dc:creator>
				<category><![CDATA[FLOSS in the news]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.theopensourcerer.com/2007/10/18/microsofts-iis-vs-apache-is-apache-really-in-decline/</guid>
		<description><![CDATA[After reading about the latest netcraft survey (that shows Apache undergoing serious market share decline compared to M$&#8217;s IIS), following a link from Glyn Moody&#8217;s blog and clicking further to here, we will eventually end up looking at another survey of web servers that shows a rather different result: How strange&#8230; One shows Apache in [...]]]></description>
			<content:encoded><![CDATA[<p>After reading about the latest <a href="http://news.netcraft.com/archives/2007/10/11/october_2007_web_server_survey.html" title="Netcraft Survey" target="_blank">netcraft survey</a> (that shows Apache undergoing serious market share decline compared to M$&#8217;s IIS), following a link from <a href="http://opendotdotdot.blogspot.com/2007/10/apache-and-art-of-press-release.html" title="Glyn Moody" target="_blank">Glyn Moody&#8217;s blog</a> and clicking further to <a href="http://blog.covalent.net/roller/covalent/entry/20071015" title="Covalent's take on Netcraft" target="_blank">here</a>, we will eventually end up looking at another <a href="http://www.securityspace.com/s_survey/data/200709/index.html" title="E-Soft's Web Survey" target="_blank">survey of web servers</a> that shows a rather different result:</p>
<p style="text-align: center"><img src="http://www.securityspace.com/s_survey/hist.php?type=http&amp;month=200709&amp;domaindir=" title="E-Soft's Security Space Web Survey" alt="E-Soft's Security Space Web Survey" style="background: #d4c394 none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial" hspace="5" vspace="5" /></p>
<p>How strange&#8230; One shows Apache in apparent terminal decline, whilst this survey from <a href="http://www.securityspace.com/" title="SecuritySpace.com" target="_blank">www.securityspace.com</a> shows something completely different. The survey above is rather more stringent about what it thinks is a valid web site and what isn&#8217;t. And as we have <a href="http://www.ducea.com/2006/06/09/netcraft-web-server-survey-or-should-i-say-domain-parking-survey/" title="Commentary on GoDaddy's move to IIS" target="_blank">seen before</a>, when large registrars are paid to switch millions of <em>parked</em> domains from Apache to IIS, the Netcraft survey numbers take a rather large jump in favour of the M$ product.</p>
<p>I know which Web Server I depend on. And it isn&#8217;t <a href="http://httpd.apache.org/" title="The Apache Web Server" target="_blank">Microsoft&#8217;s&#8230;</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.theopensourcerer.com/2007/10/18/microsofts-iis-vs-apache-is-apache-really-in-decline/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

