Steve Hannah: This week

Web Lite SWeTE: Simple Website Translation Engine

February 3, 2006

mod_write trick to convert http to https

Filed under: Software Development — shannah @ 12:17 pm

Found this tip on an IBM website. If you want to convert all http requests to https requests (useful for secure-ish sites), use the following snippet in your .htaccess file:


RewriteEngine on
RewriteCond %{SERVER_PORT} =80
RewriteRule ^(.*) https://%{SERVER_NAME}%{REQUEST_URI}

Found this tip at : http://www-1.ibm.com/support/docview.wss?rs=177&context=SSEQTJ&uid=swg21114864

mod_write trick to convert http to https

Filed under: Software Development — shannah @ 12:17 pm

Found this tip on an IBM website. If you want to convert all http requests to https requests (useful for secure-ish sites), use the following snippet in your .htaccess file:


RewriteEngine on
RewriteCond %{SERVER_PORT} =80
RewriteRule ^(.*) https://%{SERVER_NAME}%{REQUEST_URI}

Found this tip at : http://www-1.ibm.com/support/docview.wss?rs=177&context=SSEQTJ&uid=swg21114864

February 1, 2006

To Plone or not to Plone?

Filed under: Work, Software Development — shannah @ 11:23 am

Simple Answer: Don’t go there.

Plone, despite its flashy coat of paint, is still a development work in progress. Upgrades from version to version have no guarantee except that they will be problematic. For now, and for many years to come, content management systems based on a relational database are the way to go.

More details later, but save yourself the hassle, unless your a python hobbyist that likes to mess around with code a lot.

Powered by WordPress

Sitemap