<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.josephluis.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Josephluis</id>
		<title>Joseph Luis Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.josephluis.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Josephluis"/>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Special:Contributions/Josephluis"/>
		<updated>2026-09-08T19:31:04Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.1</generator>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Joseph_Luis_Wiki:General_disclaimer&amp;diff=364</id>
		<title>Joseph Luis Wiki:General disclaimer</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Joseph_Luis_Wiki:General_disclaimer&amp;diff=364"/>
				<updated>2015-08-31T18:55:30Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;Content on this site is for information purposes, without guarantee or responsibility for its use and/or application. When using third-party content, credit is given.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Content on this site is for information purposes, without guarantee or responsibility for its use and/or application. When using third-party content, credit is given.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Linux&amp;diff=363</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Linux&amp;diff=363"/>
				<updated>2015-08-31T18:50:47Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Parsing text with vim commands */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Administration=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;How to set up a Linux email .forward file correctly&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;(by [http://www.eddieoneverything.com/articles/linux-forward-file-not-working-make-sure-you-have-the-permissions-set-correctly.php Eddie])&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
1.  Create a file called “.forward” in your home directory.  If your username is “billg”, the file should (likely) be created at “/home/billg/.forward”.  Stick the email address you’d like to forward emails to in that file.  You can accomplish this quickly from the command line using the command “echo ‘billg@microsoft.com’ &amp;gt; /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
2.  After you’ve done this, make sure you set the file so that it’s not world-writeable!  (This is the step I overlooked).  “chmod 644 /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
That’s it – your email should be forwarded correctly.&lt;br /&gt;
&lt;br /&gt;
The reason it doesn’t work when the permissions aren’t set correctly is a security thing – just imagine the risks if anyone was able to write to your .forward file.  As a precaution, the system will ignore the .forward file if it is world writeable.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Note by Colin: Not only does the file have to have restricted permissions, but the directory containing the file has to have restricted permissions. Sendmail’s log was very helpful in figuring that out.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Commands=&lt;br /&gt;
===File manipulation===&lt;br /&gt;
====Archiving &amp;amp; Compression====&lt;br /&gt;
*zip/unzip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*tar&lt;br /&gt;
Extract excluding a folder&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tar -exclude &amp;lt;folder to skip&amp;gt; -xzf file.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Copying and moving files====&lt;br /&gt;
To include hidden files&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 * .[^.]*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Sort rows in a text alphabetically====&lt;br /&gt;
&lt;br /&gt;
cat file |sort &amp;gt; filealphabetical&lt;br /&gt;
&lt;br /&gt;
====Parsing text with vim commands====&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;From [http://stackoverflow.com/questions/9120552/vim-how-do-i-paste-a-column-of-text-after-a-different-column-of-text Vim: How do I paste a column of text after a different column of text?]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
I have two columns full of text, and I want to get them side-by-side. For example, I have&lt;br /&gt;
&lt;br /&gt;
abc&lt;br /&gt;
def&lt;br /&gt;
ghi&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
123&lt;br /&gt;
456&lt;br /&gt;
789&lt;br /&gt;
and I want&lt;br /&gt;
&lt;br /&gt;
123 abc&lt;br /&gt;
456 def&lt;br /&gt;
789 ghi&lt;br /&gt;
All I can find is how to paste the same line onto the end of every line in a column. I can&amp;#039;t figure out how to paste a multi-line block of text on the end of another column.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Solution from user clime:&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Use visual block (ctrl-v) to cut the letter column. Then move to the first line of the number column. Move to the end and make one space. Then paste the letter column.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;From [http://stackoverflow.com/questions/569280/vim-search-for-a-pattern-and-if-occurs-delete-to-end-of-line Vim search for a pattern and if occurs delete to end of line]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
From user mirod&lt;br /&gt;
&lt;br /&gt;
:%s/{pattern}.*//&lt;br /&gt;
&lt;br /&gt;
or from user 55400&lt;br /&gt;
&lt;br /&gt;
Alternatively, the following also works&lt;br /&gt;
&lt;br /&gt;
:g/{pattern}/normal nd$&lt;br /&gt;
For what you want, I would go with mirod&amp;#039;s suggestion. What I posted is a bit more flexible and might come in handy in similar situations.&lt;br /&gt;
&lt;br /&gt;
Explanation:&lt;br /&gt;
&lt;br /&gt;
On each line, where pattern matches, execute the following normal mode commands &amp;#039;nd$&amp;#039;. With the cursor at the start of the line, &amp;#039;n&amp;#039; jumps to the pattern, and &amp;#039;d$&amp;#039; deletes to the end of the line.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;From [https://somethingididnotknow.wordpress.com/2011/04/22/column-block-insertdelete-on-vim/ Column (block) insert/delete on VIM]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
I know this is not new information at all, but every time I have to insert some text at some specific index for a group of consecutive strings I have to google something like “column insert VIM” (surprisingly, the title of this post) and search through the first 5 results for the correct solution. Well, the one I happen to understand, anyway…&lt;br /&gt;
&lt;br /&gt;
So, here’s how it’s done:&lt;br /&gt;
&lt;br /&gt;
1) move the cursor to the uppermost character (if you’re selecting lines the way down, bottom if you’re going up) before which you want to insert text&lt;br /&gt;
&lt;br /&gt;
2) enter Visual Block Mode by pressing Ctrl+v (unless you mapped the paste action to it, in which case you probably already know how to column insert)&lt;br /&gt;
&lt;br /&gt;
3) select the column using the arrow keys&lt;br /&gt;
&lt;br /&gt;
4) press Shift+i (switching into Insert Mode)&lt;br /&gt;
&lt;br /&gt;
5) type the text you want to insert (will be displayed only on the first line)&lt;br /&gt;
&lt;br /&gt;
6) press esc two times&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Linux&amp;diff=362</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Linux&amp;diff=362"/>
				<updated>2015-08-31T18:49:26Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Commands */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Administration=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;How to set up a Linux email .forward file correctly&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;(by [http://www.eddieoneverything.com/articles/linux-forward-file-not-working-make-sure-you-have-the-permissions-set-correctly.php Eddie])&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
1.  Create a file called “.forward” in your home directory.  If your username is “billg”, the file should (likely) be created at “/home/billg/.forward”.  Stick the email address you’d like to forward emails to in that file.  You can accomplish this quickly from the command line using the command “echo ‘billg@microsoft.com’ &amp;gt; /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
2.  After you’ve done this, make sure you set the file so that it’s not world-writeable!  (This is the step I overlooked).  “chmod 644 /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
That’s it – your email should be forwarded correctly.&lt;br /&gt;
&lt;br /&gt;
The reason it doesn’t work when the permissions aren’t set correctly is a security thing – just imagine the risks if anyone was able to write to your .forward file.  As a precaution, the system will ignore the .forward file if it is world writeable.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Note by Colin: Not only does the file have to have restricted permissions, but the directory containing the file has to have restricted permissions. Sendmail’s log was very helpful in figuring that out.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Commands=&lt;br /&gt;
===File manipulation===&lt;br /&gt;
====Archiving &amp;amp; Compression====&lt;br /&gt;
*zip/unzip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*tar&lt;br /&gt;
Extract excluding a folder&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tar -exclude &amp;lt;folder to skip&amp;gt; -xzf file.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Copying and moving files====&lt;br /&gt;
To include hidden files&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 * .[^.]*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Sort rows in a text alphabetically====&lt;br /&gt;
&lt;br /&gt;
cat file |sort &amp;gt; filealphabetical&lt;br /&gt;
&lt;br /&gt;
====Parsing text with vim commands====&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;From [http://stackoverflow.com/questions/9120552/vim-how-do-i-paste-a-column-of-text-after-a-different-column-of-text Vim: How do I paste a column of text after a different column of text?]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
I have two columns full of text, and I want to get them side-by-side. For example, I have&lt;br /&gt;
&lt;br /&gt;
abc&lt;br /&gt;
def&lt;br /&gt;
ghi&lt;br /&gt;
and&lt;br /&gt;
&lt;br /&gt;
123&lt;br /&gt;
456&lt;br /&gt;
789&lt;br /&gt;
and I want&lt;br /&gt;
&lt;br /&gt;
123 abc&lt;br /&gt;
456 def&lt;br /&gt;
789 ghi&lt;br /&gt;
All I can find is how to paste the same line onto the end of every line in a column. I can&amp;#039;t figure out how to paste a multi-line block of text on the end of another column.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Solution from user clime:&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Use visual block (ctrl-v) to cut the letter column. Then move to the first line of the number column. Move to the end and make one space. Then paste the letter column.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;From [http://stackoverflow.com/questions/569280/vim-search-for-a-pattern-and-if-occurs-delete-to-end-of-line Vim search for a pattern and if occurs delete to end of line]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
From user mirod&lt;br /&gt;
&lt;br /&gt;
:%s/{pattern}.*//&lt;br /&gt;
&lt;br /&gt;
or from user 55400&lt;br /&gt;
&lt;br /&gt;
Alternatively, the following also works&lt;br /&gt;
&lt;br /&gt;
:g/{pattern}/normal nd$&lt;br /&gt;
For what you want, I would go with mirod&amp;#039;s suggestion. What I posted is a bit more flexible and might come in handy in similar situations.&lt;br /&gt;
&lt;br /&gt;
Explanation:&lt;br /&gt;
&lt;br /&gt;
On each line, where pattern matches, execute the following normal mode commands &amp;#039;nd$&amp;#039;. With the cursor at the start of the line, &amp;#039;n&amp;#039; jumps to the pattern, and &amp;#039;d$&amp;#039; deletes to the end of the line.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;From [https://somethingididnotknow.wordpress.com/2011/04/22/column-block-insertdelete-on-vim/ Column (block) insert/delete on VIM]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
I know this is not new information at all, but every time I have to insert some text at some specific index for a group of consecutive strings I have to google something like “column insert VIM” (surprisingly, the title of this post) and search through the first 5 results for the correct solution. Well, the one I happen to understand, anyway…&lt;br /&gt;
&lt;br /&gt;
So, here’s how it’s done:&lt;br /&gt;
&lt;br /&gt;
1) move the cursor to the uppermost character (if you’re selecting lines the way down, bottom if you’re going up) before which you want to insert text&lt;br /&gt;
2) enter Visual Block Mode by pressing Ctrl+v (unless you mapped the paste action to it, in which case you probably already know how to column insert)&lt;br /&gt;
3) select the column using the arrow keys&lt;br /&gt;
4) press Shift+i (switching into Insert Mode)&lt;br /&gt;
5) type the text you want to insert (will be displayed only on the first line)&lt;br /&gt;
6) press esc two times&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Web_Servers&amp;diff=359</id>
		<title>Web Servers</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Web_Servers&amp;diff=359"/>
				<updated>2014-10-20T15:19:54Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Apache in Linux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Apache on Linux=&lt;br /&gt;
==Reload php.ini==&lt;br /&gt;
 &lt;br /&gt;
Try to restart the apache service. Alternatively, type in a terminal the following to identify the php process:&lt;br /&gt;
&lt;br /&gt;
 ps -ef | grep php&lt;br /&gt;
&lt;br /&gt;
then, restart the php service e.g.&lt;br /&gt;
 &lt;br /&gt;
 sudo service php53 restart&lt;br /&gt;
&lt;br /&gt;
or force PHP to reload by killing the process &lt;br /&gt;
&lt;br /&gt;
 sudo killall php53.cgi&lt;br /&gt;
&lt;br /&gt;
=Ngnix=&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Web_Servers&amp;diff=358</id>
		<title>Web Servers</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Web_Servers&amp;diff=358"/>
				<updated>2014-10-20T15:19:31Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Reload php.ini */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Apache in Linux=&lt;br /&gt;
==Reload php.ini==&lt;br /&gt;
 &lt;br /&gt;
Try to restart the apache service. Alternatively, type in a terminal the following to identify the php process:&lt;br /&gt;
&lt;br /&gt;
 ps -ef | grep php&lt;br /&gt;
&lt;br /&gt;
then, restart the php service e.g.&lt;br /&gt;
 &lt;br /&gt;
 sudo service php53 restart&lt;br /&gt;
&lt;br /&gt;
or force PHP to reload by killing the process &lt;br /&gt;
&lt;br /&gt;
 sudo killall php53.cgi&lt;br /&gt;
&lt;br /&gt;
=Ngnix=&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Web_Servers&amp;diff=357</id>
		<title>Web Servers</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Web_Servers&amp;diff=357"/>
				<updated>2014-10-20T15:19:13Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Back to the TOC&amp;#039;&amp;#039;&amp;#039; =Apache in Linux= ==Reload php.ini==   Try to restart the apache service. Alternatively, type in a terminal the following to identi...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Apache in Linux=&lt;br /&gt;
==Reload php.ini==&lt;br /&gt;
 &lt;br /&gt;
Try to restart the apache service. Alternatively, type in a terminal the following to identify the php process:&lt;br /&gt;
&lt;br /&gt;
 ps -ef | grep php&lt;br /&gt;
&lt;br /&gt;
 then, restart the php service e.g.&lt;br /&gt;
 &lt;br /&gt;
 sudo service php53 restart&lt;br /&gt;
&lt;br /&gt;
or force PHP to reload by killing the process &lt;br /&gt;
&lt;br /&gt;
 sudo killall php53.cgi&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Ngnix=&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=356</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=356"/>
				<updated>2014-10-20T15:08:45Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
==[[Email Lists]]==&lt;br /&gt;
==[[Aggregators]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
===[[phpBB]]===&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
===[[Virtual Private Server - VPS]]===&lt;br /&gt;
===[[Creating A Local Domain Using Apache Virtual Hosts]]===&lt;br /&gt;
==[[Web Servers]]==&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=355</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=355"/>
				<updated>2014-10-20T12:22:47Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web server, software stack, on a lightweight VPS= &lt;br /&gt;
==Background==&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option. [http://wordpress.org/support/topic/dreamhost-memory-usage-on-vps Others have bumped into the same problem].&lt;br /&gt;
==The Solution==&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS. Even more, there is a script that will take care of installing all that is required. You can see some comparisons of performance and the original post of the script [http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ here]. However, the scrip I ended using was an updated version from the [https://github.com/sk33lz/lowendscript GitHub repository] of the original author.&lt;br /&gt;
&lt;br /&gt;
For the Linux OS I used Debian 6.0 32 bit. The script can install WordPress, Drupal 6,7 and Magento too. The MySQL root info can be found in ~root/.my.cnf.&lt;br /&gt;
&lt;br /&gt;
After using this script, the only thing I had to do extra for WordPress to work as usual, was to give ownership of the folders &amp;#039;&amp;#039;wp-content&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-admin&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-includes&amp;#039;&amp;#039; to the web server user.&lt;br /&gt;
==Notes==&lt;br /&gt;
The script takes charge of all the installation steps. If you feel inclined to look at some of the steps of the installation entails (for a WordPress with nginx on Unbuntu 12.04 example) check [https://www.digitalocean.com/community/articles/how-to-install-wordpress-with-nginx-on-ubuntu-12-04 this page] or [http://moza74.wordpress.com/2010/07/02/how-to-install-wordpress-3-0-on-ubuntu-10-04/ this one].&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Creating_A_Local_Domain_Using_Apache_Virtual_Hosts&amp;diff=354</id>
		<title>Creating A Local Domain Using Apache Virtual Hosts</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Creating_A_Local_Domain_Using_Apache_Virtual_Hosts&amp;diff=354"/>
				<updated>2014-07-16T21:00:58Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;Taken from [http://www.survivethedeepend.com/zendframeworkbook/en/1.0/creating.a.local.domain.using.apache.virtual.hosts here]  &amp;#039;&amp;#039;The basic Virtual Host configuration we&amp;#039;re se...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Taken from [http://www.survivethedeepend.com/zendframeworkbook/en/1.0/creating.a.local.domain.using.apache.virtual.hosts here]&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;The basic Virtual Host configuration we&amp;#039;re seeking is as follows:&amp;#039;&amp;#039;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Setup Listening Port&lt;br /&gt;
NameVirtualHost *:80&lt;br /&gt;
&lt;br /&gt;
# Ensure &amp;quot;localhost&amp;quot; is preserved unchanged pointed&lt;br /&gt;
# to the default document root for our system.&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
    ServerName localhost&lt;br /&gt;
    DocumentRoot /var/www&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# Setup &amp;quot;helloworld.tld&amp;quot; Virtual Host&lt;br /&gt;
&amp;lt;VirtualHost *:80&amp;gt;&lt;br /&gt;
    ServerName helloworld.tld&lt;br /&gt;
    DocumentRoot /home/padraic/www/helloworld/public&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;Directory /home/padraic/www/helloworld/public&amp;gt;&lt;br /&gt;
        Options Indexes FollowSymLinks Includes&lt;br /&gt;
        AllowOverride All&lt;br /&gt;
        Order allow,deny&lt;br /&gt;
        Allow from all&lt;br /&gt;
    &amp;lt;/Directory&amp;gt;&lt;br /&gt;
&amp;lt;/VirtualHost&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
and add to /etc/hosts (for this example)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
127.0.0.1 helloworld.tld&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=353</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=353"/>
				<updated>2014-07-16T20:55:16Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
==[[Email Lists]]==&lt;br /&gt;
==[[Aggregators]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
===[[phpBB]]===&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
===[[Virtual Private Server - VPS]]===&lt;br /&gt;
===[[Creating A Local Domain Using Apache Virtual Hosts]]===&lt;br /&gt;
&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=352</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=352"/>
				<updated>2014-06-24T23:47:07Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web server, software stack, on a lightweight VPS= &lt;br /&gt;
==Background==&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option. [http://wordpress.org/support/topic/dreamhost-memory-usage-on-vps Others have bumped into the same problem].&lt;br /&gt;
==The Solution==&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS. Even more, there is a script that will take care of installing all that is required. You can see some comparisons of performance and the original post of the script [http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ here]. However, the scrip I ended using was an updated version from the [https://github.com/sk33lz/lowendscript GitHub repository] of the original author.&lt;br /&gt;
&lt;br /&gt;
For the Linux OS I used Debian 6.0 32 bit. The script can install WordPress, Drupal 6,7 and Magento too. &lt;br /&gt;
&lt;br /&gt;
After using this script, the only thing I had to do extra for WordPress to work as usual, was to give ownership of the folders &amp;#039;&amp;#039;wp-content&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-admin&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-includes&amp;#039;&amp;#039; to the web server user.&lt;br /&gt;
==Notes==&lt;br /&gt;
The script takes charge of all the installation steps. If you feel inclined to look at some of the steps of the installation entails (for a WordPress with nginx on Unbuntu 12.04 example) check [https://www.digitalocean.com/community/articles/how-to-install-wordpress-with-nginx-on-ubuntu-12-04 this page] or [http://moza74.wordpress.com/2010/07/02/how-to-install-wordpress-3-0-on-ubuntu-10-04/ this one].&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=351</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=351"/>
				<updated>2013-07-28T18:52:51Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Reading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;&amp;#039;Front Page displays:&amp;#039;&amp;#039; option to &amp;#039;&amp;#039;Select a Static Page:&amp;#039;&amp;#039; and choose in the drop down menu the &amp;#039;&amp;#039;Sample Page&amp;#039;&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Notice: Posts appear automatically on pages where you select (on one of the side boxes of the page editing window) the &amp;quot;Blog template&amp;quot; instead of the &amp;quot;Default template&amp;quot; or any other template. Posts appear on the Home page by default because on Settings &amp;gt; Reading there is a default selection for the Front Page (Home) to display the posts. Pages are for static content, posts for dynamic-temporary content. How does all the above applies in practice? Well, depends on what one wants to do ... Let&amp;#039;s say that we want to display posts on a new &amp;quot;A testing page&amp;quot;. To do this one can change the template for the page to &amp;quot;Blog template&amp;quot;. The result is that, similarly to the Home page, we will have ALL posts displaying now on &amp;quot;A testing page&amp;quot; as well. If we want that a page displays specific posts, not all the posts we can use Categories! &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;Article Settings:&amp;#039;&amp;#039; uncheck &amp;#039;&amp;#039;Allow people to post comments on new articles&amp;#039;&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;&amp;#039;Common Settings&amp;#039;&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;&amp;#039;Post name&amp;#039;&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;&amp;#039;Appearance/Themes/Add New&amp;#039;&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;&amp;#039;Pages&amp;#039;&amp;#039; and &amp;#039;&amp;#039;Menus&amp;#039;&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;&amp;#039;Appearance/Edit&amp;#039;&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[http://wordpress.org/extend/plugins/ewww-image-optimizer EWWW Image Optimizer]&lt;br /&gt;
*[http://wordpress.org/extend/plugins/wp-google-fonts/ WP Google Fonts]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=350</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=350"/>
				<updated>2013-07-28T18:44:51Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Reading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;&amp;#039;Front Page displays:&amp;#039;&amp;#039; option to &amp;#039;&amp;#039;Select a Static Page:&amp;#039;&amp;#039; and choose in the drop down menu the &amp;#039;&amp;#039;Sample Page&amp;#039;&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Note: Posts appear automatically on pages where you select (on one of the side boxes of the page editing window) the &amp;quot;Blog template&amp;quot; instead of the &amp;quot;Default template&amp;quot; or any other template.Posts appear on the Home page by default because on Settings &amp;gt; Reading there is a default selection for the Front Page (Home) to display the posts. Pages are for static content, posts for dynamic-temporary content. How does all the above applies in practice? Well, depends on what one wants to do ... Let&amp;#039;s say that we want to display posts on a new &amp;quot;A testing page&amp;quot;. To do this one can change the template for the page to &amp;quot;Blog template&amp;quot;. The result is that, similarly to the Home page, we will have ALL posts displaying now on &amp;quot;A testing page&amp;quot; as well. If we want that a page displays specific posts, not all the posts we can use Categories! &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;Article Settings:&amp;#039;&amp;#039; uncheck &amp;#039;&amp;#039;Allow people to post comments on new articles&amp;#039;&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;&amp;#039;Common Settings&amp;#039;&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;&amp;#039;Post name&amp;#039;&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;&amp;#039;Appearance/Themes/Add New&amp;#039;&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;&amp;#039;Pages&amp;#039;&amp;#039; and &amp;#039;&amp;#039;Menus&amp;#039;&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;&amp;#039;Appearance/Edit&amp;#039;&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[http://wordpress.org/extend/plugins/ewww-image-optimizer EWWW Image Optimizer]&lt;br /&gt;
*[http://wordpress.org/extend/plugins/wp-google-fonts/ WP Google Fonts]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=349</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=349"/>
				<updated>2013-07-28T18:44:24Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Reading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;&amp;#039;Front Page displays:&amp;#039;&amp;#039; option to &amp;#039;&amp;#039;Select a Static Page:&amp;#039;&amp;#039; and choose in the drop down menu the &amp;#039;&amp;#039;Sample Page&amp;#039;&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Note: Posts appear &amp;quot;magically&amp;quot; on pages where you select (on one of the side boxes of the page editing window) the &amp;quot;Blog template&amp;quot; instead of the &amp;quot;Default template&amp;quot; or any other template.Posts appear on the Home page by default because on Settings &amp;gt; Reading there is a default selection for the Front Page (Home) to display the posts. Pages are for static content, posts for dynamic-temporary content. How does all the above applies in practice? Well, depends on what one wants to do ... Let&amp;#039;s say that we want to display posts on a new &amp;quot;A testing page&amp;quot;. To do this one can change the template for the page to &amp;quot;Blog template&amp;quot;. The result is that, similarly to the Home page, we will have ALL posts displaying now on &amp;quot;A testing page&amp;quot; as well. If we want that a page displays specific posts, not all the posts we can use Categories! &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;Article Settings:&amp;#039;&amp;#039; uncheck &amp;#039;&amp;#039;Allow people to post comments on new articles&amp;#039;&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;&amp;#039;Common Settings&amp;#039;&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;&amp;#039;Post name&amp;#039;&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;&amp;#039;Appearance/Themes/Add New&amp;#039;&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;&amp;#039;Pages&amp;#039;&amp;#039; and &amp;#039;&amp;#039;Menus&amp;#039;&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;&amp;#039;Appearance/Edit&amp;#039;&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[http://wordpress.org/extend/plugins/ewww-image-optimizer EWWW Image Optimizer]&lt;br /&gt;
*[http://wordpress.org/extend/plugins/wp-google-fonts/ WP Google Fonts]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=348</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=348"/>
				<updated>2013-07-28T18:42:53Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;&amp;#039;Front Page displays:&amp;#039;&amp;#039; option to &amp;#039;&amp;#039;Select a Static Page:&amp;#039;&amp;#039; and choose in the drop down menu the &amp;#039;&amp;#039;Sample Page&amp;#039;&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Note: Posts appear &amp;quot;magically&amp;quot; on pages where you select (on one of the side boxes of the page editing window) the &amp;quot;Blog template&amp;quot; instead of the &amp;quot;Default template&amp;quot; or any other template.&lt;br /&gt;
&lt;br /&gt;
Posts appear on the Home page by default because on Settings &amp;gt; Reading there is a default selection for the Front Page (Home) to display the posts. &lt;br /&gt;
&lt;br /&gt;
One note here, pages are for static content, posts for dynamic-temporary content. &lt;br /&gt;
&lt;br /&gt;
How does all the above applies in practice? Well, depends on what one wants to do ...&lt;br /&gt;
&lt;br /&gt;
Let&amp;#039;s say that we want to display posts on a new &amp;quot;A testing page&amp;quot;. To do this one can change the template for the page to &amp;quot;Blog template&amp;quot;. The result is that, similarly to the Home page, we will have ALL posts displaying now on &amp;quot;A testing page&amp;quot; as well.&lt;br /&gt;
&lt;br /&gt;
Now, let&amp;#039;s say that we want that a page displays specific posts, not all the posts. To achieve this, one can use Categories! &amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;&amp;#039;Article Settings:&amp;#039;&amp;#039; uncheck &amp;#039;&amp;#039;Allow people to post comments on new articles&amp;#039;&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;&amp;#039;Common Settings&amp;#039;&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;&amp;#039;Post name&amp;#039;&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;&amp;#039;Appearance/Themes/Add New&amp;#039;&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;&amp;#039;Pages&amp;#039;&amp;#039; and &amp;#039;&amp;#039;Menus&amp;#039;&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;&amp;#039;Appearance/Edit&amp;#039;&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[http://wordpress.org/extend/plugins/ewww-image-optimizer EWWW Image Optimizer]&lt;br /&gt;
*[http://wordpress.org/extend/plugins/wp-google-fonts/ WP Google Fonts]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=347</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=347"/>
				<updated>2013-07-18T22:14:42Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web server, software stack, on a lightweight VPS= &lt;br /&gt;
==Background==&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option. [http://wordpress.org/support/topic/dreamhost-memory-usage-on-vps Others have bumped into the same problem].&lt;br /&gt;
==The Solution==&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS. Even more, there is a script that will take care of installing all that is required. You can see some comparisons of performance and the original post of the script [http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ here]. However, the scrip I ended using was an updated version from the [https://github.com/sk33lz/lowendscript GitHub repository] of the original author.&lt;br /&gt;
&lt;br /&gt;
For the Linux OS I used Debian 6.0 32 bit. The script can install too WordPress, Drupal 6,7 and Magento. &lt;br /&gt;
&lt;br /&gt;
After using this script, the only thing I had to do extra for WordPress to work as usual, was to give ownership of the folders &amp;#039;&amp;#039;wp-content&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-admin&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-includes&amp;#039;&amp;#039; to the web server user.&lt;br /&gt;
==Notes==&lt;br /&gt;
The script takes charge of all the installation steps. If you feel inclined to look at some of the steps of the installation entails (for a WordPress with nginx on Unbuntu 12.04 example) check [https://www.digitalocean.com/community/articles/how-to-install-wordpress-with-nginx-on-ubuntu-12-04 this page] or [http://moza74.wordpress.com/2010/07/02/how-to-install-wordpress-3-0-on-ubuntu-10-04/ this one].&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=346</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=346"/>
				<updated>2013-07-18T22:05:02Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Install a lightweight web server, software stack, on a lightweight VPS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web server, software stack, on a lightweight VPS= &lt;br /&gt;
==Background==&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option. [http://wordpress.org/support/topic/dreamhost-memory-usage-on-vps Others have bumped into the same problem].&lt;br /&gt;
==The Solution==&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS. Even more, there is a script that will take care of installing all that is required. You can see some comparisons of performance and the original post of the script [http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ here]. However, the scrip I ended using was an updated version from the [https://github.com/sk33lz/lowendscript GitHub repository] of the original author.&lt;br /&gt;
&lt;br /&gt;
For the Linux OS I used Debian 6.0 32 bit. The script can install too WordPress, Drupal 6,7 and Magento. &lt;br /&gt;
&lt;br /&gt;
After using this script, the only thing I had to do extra for WordPress to work as usual, was to give ownership of the folders &amp;#039;&amp;#039;wp-content&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-admin&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-includes&amp;#039;&amp;#039; to the web server user.&lt;br /&gt;
==Notes==&lt;br /&gt;
The script takes charge of all the installation steps. If you feel inclined to look at some of the steps of the installation entails (for a WordPress with nginx on Unbuntu 12.04 example) check [https://www.digitalocean.com/community/articles/how-to-install-wordpress-with-nginx-on-ubuntu-12-04 this].&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=345</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=345"/>
				<updated>2013-07-18T22:03:58Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Install a lightweight web server, software stack, on a lightweight VPS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web server, software stack, on a lightweight VPS= &lt;br /&gt;
&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option. [http://wordpress.org/support/topic/dreamhost-memory-usage-on-vps Others have bumped into the same problem].&lt;br /&gt;
&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS. Even more, there is a script that will take care of installing all that is required. You can see some comparisons of performance and the original post of the script [http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ here]. However, the scrip I ended using was an updated version from the [https://github.com/sk33lz/lowendscript GitHub repository] of the original author.&lt;br /&gt;
&lt;br /&gt;
For the Linux OS I used Debian 6.0 32 bit. The script can install too WordPress, Drupal 6,7 and Magento. &lt;br /&gt;
&lt;br /&gt;
After using this script, the only thing I had to do extra for WordPress to work as usual, was to give ownership of the folders &amp;#039;&amp;#039;wp-content&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-admin&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-includes&amp;#039;&amp;#039; to the web server user.&lt;br /&gt;
&lt;br /&gt;
The script takes charge of all the installation steps. If you feel inclined to look at some of the steps of the installation entails (for a WordPress with nginx on Unbuntu 12.04 example) check [https://www.digitalocean.com/community/articles/how-to-install-wordpress-with-nginx-on-ubuntu-12-04 this].&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=344</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=344"/>
				<updated>2013-07-18T21:58:46Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Install a lightweight web server, software stack, on a lightweight VPS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web server, software stack, on a lightweight VPS= &lt;br /&gt;
&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option. [http://wordpress.org/support/topic/dreamhost-memory-usage-on-vps Others have bumped into the same].&lt;br /&gt;
&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS. Even more, there is a script that will take care of installing all that is required. You can see some comparisons of performance and the original post of the script [http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ here]. However, the scrip I ended using was an updated version from the [https://github.com/sk33lz/lowendscript GitHub repository] of the original author.&lt;br /&gt;
&lt;br /&gt;
For the Linux OS I used Debian 6.0 32 bit. The script can install too WordPress, Drupal 6,7 and Magento. &lt;br /&gt;
&lt;br /&gt;
After using this script, the only thing I had to do extra for WordPress to work as usual, was to give ownership of the folders &amp;#039;&amp;#039;wp-content&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-admin&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-includes&amp;#039;&amp;#039; to the web server user.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=343</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=343"/>
				<updated>2013-07-18T21:58:18Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web server, software stack, on a lightweight VPS= &lt;br /&gt;
&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option. [http://wordpress.org/support/topic/dreamhost-memory-usage-on-vps Others have bumped into the same].&lt;br /&gt;
&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS. Even more, there is a script that will take care of installing all that is required. You can see some comparisons of performance and the original post of the script [http://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/ here]. However, the scrip I ended using was an updated version from the [https://github.com/sk33lz/lowendscript GitHub repository] of the original author.&lt;br /&gt;
&lt;br /&gt;
For the Linux OS I used Debian 6.0 32 bit. The script can install too WordPress, Drupal 6,7 and Magento. &lt;br /&gt;
&lt;br /&gt;
After using this script, the only thing I had to do extra for WordPress to work as usual was to give ownership of the folders &amp;#039;&amp;#039;wp-content&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-admin&amp;#039;&amp;#039;, &amp;#039;&amp;#039;wp-includes&amp;#039;&amp;#039; to the web server user.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=342</id>
		<title>Virtual Private Server - VPS</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Virtual_Private_Server_-_VPS&amp;diff=342"/>
				<updated>2013-07-18T20:43:47Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Back to the TOC&amp;#039;&amp;#039;&amp;#039;  =Install a lightweight web platform on a lightweight VPS=   To test the limits of a WordPress installation over a light resources ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Install a lightweight web platform on a lightweight VPS= &lt;br /&gt;
&lt;br /&gt;
To test the limits of a WordPress installation over a light resources hardware I tried a common LAMP installation (Linux, Apache, MySQL, PHP) over Ubuntu 10.04 on a VPS that is [http://www.spotvps.com/#features 128mb RAM, 256mb Burstable RAM, 1 CPU core, 10GB Disk Space, and 500GB on Bandwith].&lt;br /&gt;
&lt;br /&gt;
It was not pretty. Common administration use of WordPress quickly reached the 128mb RAM limit, showing that the configuration above was not an option.&lt;br /&gt;
&lt;br /&gt;
Fortunately, I found that with replacements such as Debian instead of Ubuntu or Nginx instead of Apache, WordPress can actually work on a lightweight VPS.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=341</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=341"/>
				<updated>2013-07-18T20:19:46Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Hosting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
==[[Email Lists]]==&lt;br /&gt;
==[[Aggregators]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
===[[phpBB]]===&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
===[[Virtual Private Server - VPS]]===&lt;br /&gt;
&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=PhpBB&amp;diff=340</id>
		<title>PhpBB</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=PhpBB&amp;diff=340"/>
				<updated>2013-07-16T00:48:50Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Creating Categories &amp;amp; Forums */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Creating Categories &amp;amp; Forums= &lt;br /&gt;
&lt;br /&gt;
Following [http://area51.phpbb.com/phpBB/viewtopic.php?f=71&amp;amp;t=31344 Kevin Clark] explanation:&lt;br /&gt;
&lt;br /&gt;
*The whole thing is the board.&lt;br /&gt;
*Inside that are categories. &lt;br /&gt;
*Inside those are forums. &lt;br /&gt;
*Inside the forums are topics.&lt;br /&gt;
*Inside the topics are posts.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
1) In forum management make a new forum.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Type: category&lt;br /&gt;
&lt;br /&gt;
No parent.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Here you can choose to copy permissions from another already created forum&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
2) Then make another forum.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Type:forum&lt;br /&gt;
&lt;br /&gt;
Parent: the category you just made.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;If you didn&amp;#039;t select to copy the permissions settings from another forum when you created your new one, you need to set them manually so everyone can see it&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Go to&lt;br /&gt;
&lt;br /&gt;
Admin control panel&amp;gt;Permissions&amp;gt;Groups forum permissions.&lt;br /&gt;
&lt;br /&gt;
Set the registered users to be able to see and post in it.&lt;br /&gt;
&lt;br /&gt;
=Making a forum visible on the Board Index to guests but only accessible to Members=&lt;br /&gt;
&lt;br /&gt;
# On the Administration Control Panel go to the Forums tab and then on the left sidebar choose Forum Permissions&lt;br /&gt;
# On Forum Permissions choose the forum/forums you want to change and click Submit&lt;br /&gt;
# On Groups/Manage Groups section select the group Guests and click in Edit Permissions&lt;br /&gt;
# On Setting Permissions select No Access for the role and then click on Advanced Permissions &lt;br /&gt;
# On the tabs that open, for the Post tab, change the Can see forum option to Yes and click Apply Permissions&lt;br /&gt;
&lt;br /&gt;
Now, the selected forum/forums is/are listed on the Board Index but the content is only visible to registered users.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=339</id>
		<title>Aggregators</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=339"/>
				<updated>2013-05-25T19:22:04Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* StumbleUpon= */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Delicious=&lt;br /&gt;
===Export links===&lt;br /&gt;
http://export.delicious.com/settings/bookmarks/export&lt;br /&gt;
&lt;br /&gt;
=StumbleUpon=&lt;br /&gt;
===Export links===&lt;br /&gt;
External tool (eventually may not work) &lt;br /&gt;
&lt;br /&gt;
http://linklusion.com/su.php&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=338</id>
		<title>Aggregators</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=338"/>
				<updated>2013-05-25T19:21:41Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Delicious=&lt;br /&gt;
===Export links===&lt;br /&gt;
http://export.delicious.com/settings/bookmarks/export&lt;br /&gt;
&lt;br /&gt;
=StumbleUpon==&lt;br /&gt;
===Export links===&lt;br /&gt;
External tool (eventually may not work) &lt;br /&gt;
http://linklusion.com/su.php&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=337</id>
		<title>Web Tools</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=337"/>
				<updated>2013-05-25T19:20:32Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Aggregators */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[File Sharing, Syncing and Online Backup]]=&lt;br /&gt;
==[[Online Backup Services |Table of Online Services]]==&lt;br /&gt;
=[[Email Lists]]=&lt;br /&gt;
==[[Google Groups]]==&lt;br /&gt;
=[[Aggregators]]=&lt;br /&gt;
==Delicious==&lt;br /&gt;
==StumbleUpon==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=336</id>
		<title>Aggregators</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=336"/>
				<updated>2013-05-25T19:14:21Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Delicious]]=&lt;br /&gt;
===Export links===&lt;br /&gt;
http://export.delicious.com/settings/bookmarks/export&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=335</id>
		<title>Aggregators</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Aggregators&amp;diff=335"/>
				<updated>2013-05-25T19:12:52Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Back to the TOC&amp;#039;&amp;#039;&amp;#039; =Delicious== ===Export links=== http://export.delicious.com/settings/bookmarks/export&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Delicious]]==&lt;br /&gt;
===Export links===&lt;br /&gt;
http://export.delicious.com/settings/bookmarks/export&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=334</id>
		<title>Web Tools</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=334"/>
				<updated>2013-05-25T19:11:36Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[File Sharing, Syncing and Online Backup]]=&lt;br /&gt;
==[[Online Backup Services |Table of Online Services]]==&lt;br /&gt;
=[[Email Lists]]=&lt;br /&gt;
==[[Google Groups]]==&lt;br /&gt;
=[[Aggregators]]=&lt;br /&gt;
==[[Delicious]]==&lt;br /&gt;
==[[StumbleUpon]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=333</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=333"/>
				<updated>2013-05-25T19:09:52Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Web Tools */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
==[[Email Lists]]==&lt;br /&gt;
==[[Aggregators]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
===[[phpBB]]===&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=332</id>
		<title>Web Tools</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=332"/>
				<updated>2013-05-25T19:09:20Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[File Sharing, Syncing and Online Backup]]=&lt;br /&gt;
==[[Online Backup Services |Table of Online Services]]==&lt;br /&gt;
=[[Email Lists]]=&lt;br /&gt;
==[[Google Groups]]==&lt;br /&gt;
=[[Aggregators]]=&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=331</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=331"/>
				<updated>2013-05-25T19:06:14Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Web Tools */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
==[[Email Lists]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
===[[phpBB]]===&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Google_Groups&amp;diff=330</id>
		<title>Google Groups</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Google_Groups&amp;diff=330"/>
				<updated>2013-05-25T19:04:04Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Add new members=&lt;br /&gt;
&lt;br /&gt;
# Go to Google groups homepage, log in with your Google account and in My Groups go to the corresponding group page&lt;br /&gt;
# On the right hand side there is a menu in grey letters. Click in Manage&lt;br /&gt;
# Within Manage, on the left-hand sidebar there is a Members menu with sub-menus to Add, Invite, etc. new members &lt;br /&gt;
&lt;br /&gt;
One can only invite a certain number of email addresses at a time, I think by batches of 10 emails-people.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Google_Groups&amp;diff=329</id>
		<title>Google Groups</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Google_Groups&amp;diff=329"/>
				<updated>2013-05-25T18:05:56Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Add new members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
=Add new members=&lt;br /&gt;
&lt;br /&gt;
# Go to Google groups homepage, log in with your Google account and in My Groups go to the corresponding group page&lt;br /&gt;
# On the right hand side there is a menu in grey letters. Click in Manage&lt;br /&gt;
# Within Manage, on the left-hand sidebar there is a Members menu with sub-menus to Add, Invite, etc. new members &lt;br /&gt;
&lt;br /&gt;
One can only invite a certain number of email addresses at a time, I think by batches of 10 emails-people.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Google_Groups&amp;diff=328</id>
		<title>Google Groups</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Google_Groups&amp;diff=328"/>
				<updated>2013-05-25T18:04:10Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;  =Add new members=  1) Go to Google groups homepage, log in with your Google account and in My Groups go to the corresponding group page 2) On the right hand side there is a ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
=Add new members=&lt;br /&gt;
&lt;br /&gt;
1) Go to Google groups homepage, log in with your Google account and in My Groups go to the corresponding group page&lt;br /&gt;
2) On the right hand side there is a menu in grey letters. Click in Manage&lt;br /&gt;
3) Within Manage, on the left-hand sidebar there is a Members menu with sub-menus to Add, Invite, etc. new members &lt;br /&gt;
&lt;br /&gt;
One can only invite a certain number of email addresses at a time, I think by batches of 10 emails-people.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Email_Lists&amp;diff=327</id>
		<title>Email Lists</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Email_Lists&amp;diff=327"/>
				<updated>2013-05-25T17:56:55Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Back to the TOC&amp;#039;&amp;#039;&amp;#039;  Google Groups&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
[[Google Groups]]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=326</id>
		<title>Web Tools</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Web_Tools&amp;diff=326"/>
				<updated>2013-05-25T17:52:30Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[File Sharing, Syncing and Online Backup]]=&lt;br /&gt;
==[[Online Backup Services |Table of Online Services]]==&lt;br /&gt;
=[[Email Lists]]=&lt;br /&gt;
==[[Google Groups]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=325</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=325"/>
				<updated>2013-05-07T08:31:57Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;Front Page displays:&amp;#039; option to &amp;#039;Select a Static Page:&amp;#039; and choose in the drop down menu the &amp;#039;Sample Page&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;Article Settings:&amp;#039; uncheck &amp;#039;Allow people to post comments on new articles&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;Common Settings&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;Post name&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;Appearance/Themes/Add New&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;Pages&amp;#039; and &amp;#039;Menus&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;Appearance/Edit&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[http://wordpress.org/extend/plugins/ewww-image-optimizer EWWW Image Optimizer]&lt;br /&gt;
*[http://wordpress.org/extend/plugins/wp-google-fonts/ WP Google Fonts]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=PhpBB&amp;diff=324</id>
		<title>PhpBB</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=PhpBB&amp;diff=324"/>
				<updated>2013-05-06T21:33:01Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Back to the TOC&amp;#039;&amp;#039;&amp;#039;  =Creating Categories &amp;amp; Forums=   Following [http://area51.phpbb.com/phpBB/viewtopic.php?f=71&amp;amp;t=31344 Kevin Clark] explanation:  *T...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Creating Categories &amp;amp; Forums= &lt;br /&gt;
&lt;br /&gt;
Following [http://area51.phpbb.com/phpBB/viewtopic.php?f=71&amp;amp;t=31344 Kevin Clark] explanation:&lt;br /&gt;
&lt;br /&gt;
*The whole thing is the board.&lt;br /&gt;
*Inside that are categories. &lt;br /&gt;
*Inside those are forums. &lt;br /&gt;
*Inside the forums are topics.&lt;br /&gt;
*Inside the topics are posts.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
1) In forum management make a new forum.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Type: category&lt;br /&gt;
&lt;br /&gt;
No parent.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Here you can choose to copy permissions from another already created forum&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
2) Then make another forum.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Type:forum&lt;br /&gt;
&lt;br /&gt;
Parent: the category you just made.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;If you didn&amp;#039;t select to copy the permissions settings from another forum when you created your new one, you need to set them manually so everyone can see it&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Go to&lt;br /&gt;
&lt;br /&gt;
Admin control panel&amp;gt;Permissions&amp;gt;Groups forum permissions.&lt;br /&gt;
&lt;br /&gt;
Set the registered users to be able to see and post in it.&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=323</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=323"/>
				<updated>2013-05-06T21:25:58Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Content Management Systems */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
===[[phpBB]]===&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=322</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=322"/>
				<updated>2013-05-06T21:25:24Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Content Management Systems */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
====[[phpBB]]====&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Drupal&amp;diff=321</id>
		<title>Drupal</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Drupal&amp;diff=321"/>
				<updated>2013-05-06T17:34:31Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Back to the TOC&amp;#039;&amp;#039;&amp;#039; =Drupal Admin=  ==Changing Drupal installation folder name==  Following what [http://drupal.org/node/219932 VM] posted, adding the ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Drupal Admin=&lt;br /&gt;
&lt;br /&gt;
==Changing Drupal installation folder name==&lt;br /&gt;
&lt;br /&gt;
Following what [http://drupal.org/node/219932 VM] posted, adding the running of update.php&lt;br /&gt;
&lt;br /&gt;
*If using clean urls, turn them off&lt;br /&gt;
*if using page caching turn it off&lt;br /&gt;
*if using css aggregation turn it off&lt;br /&gt;
*clear you brwoser cache&lt;br /&gt;
*clear your DB cache tables&lt;br /&gt;
*rename the folder&lt;br /&gt;
*run update.php (e.g. visit yoursite.com/update.php)&lt;br /&gt;
*turn clean urls back on (if in use)&lt;br /&gt;
*turn page cacheing back on (if in use)&lt;br /&gt;
*turn css aggregation back on (if in use)&lt;br /&gt;
&lt;br /&gt;
also note that if you set up a $base_url in settings.php you will have to alter this to reflect the new structure.&lt;br /&gt;
&lt;br /&gt;
=[[Open Atrium]]=&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Joomla!&amp;diff=320</id>
		<title>Joomla!</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Joomla!&amp;diff=320"/>
				<updated>2013-05-06T17:27:19Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Joomla! Admin]]=&lt;br /&gt;
=[[Joomla! Themes]]=&lt;br /&gt;
=[[Joomla! Extensions]]=&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Linux&amp;diff=319</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Linux&amp;diff=319"/>
				<updated>2013-05-06T17:00:19Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Commands */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Administration=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;How to set up a Linux email .forward file correctly&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;(by [http://www.eddieoneverything.com/articles/linux-forward-file-not-working-make-sure-you-have-the-permissions-set-correctly.php Eddie])&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
1.  Create a file called “.forward” in your home directory.  If your username is “billg”, the file should (likely) be created at “/home/billg/.forward”.  Stick the email address you’d like to forward emails to in that file.  You can accomplish this quickly from the command line using the command “echo ‘billg@microsoft.com’ &amp;gt; /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
2.  After you’ve done this, make sure you set the file so that it’s not world-writeable!  (This is the step I overlooked).  “chmod 644 /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
That’s it – your email should be forwarded correctly.&lt;br /&gt;
&lt;br /&gt;
The reason it doesn’t work when the permissions aren’t set correctly is a security thing – just imagine the risks if anyone was able to write to your .forward file.  As a precaution, the system will ignore the .forward file if it is world writeable.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Note by Colin: Not only does the file have to have restricted permissions, but the directory containing the file has to have restricted permissions. Sendmail’s log was very helpful in figuring that out.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Commands=&lt;br /&gt;
===File manipulation===&lt;br /&gt;
====Archiving &amp;amp; Compression====&lt;br /&gt;
*zip/unzip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*tar&lt;br /&gt;
Extract excluding a folder&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tar -exclude &amp;lt;folder to skip&amp;gt; -xzf file.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Copying and moving files====&lt;br /&gt;
To include hidden files&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
 * .[^.]*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Linux&amp;diff=318</id>
		<title>Linux</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Linux&amp;diff=318"/>
				<updated>2013-05-06T16:54:22Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Commands */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=Administration=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;How to set up a Linux email .forward file correctly&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;(by [http://www.eddieoneverything.com/articles/linux-forward-file-not-working-make-sure-you-have-the-permissions-set-correctly.php Eddie])&amp;#039;&amp;#039; &lt;br /&gt;
&lt;br /&gt;
1.  Create a file called “.forward” in your home directory.  If your username is “billg”, the file should (likely) be created at “/home/billg/.forward”.  Stick the email address you’d like to forward emails to in that file.  You can accomplish this quickly from the command line using the command “echo ‘billg@microsoft.com’ &amp;gt; /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
2.  After you’ve done this, make sure you set the file so that it’s not world-writeable!  (This is the step I overlooked).  “chmod 644 /home/billg/.forward”&lt;br /&gt;
&lt;br /&gt;
That’s it – your email should be forwarded correctly.&lt;br /&gt;
&lt;br /&gt;
The reason it doesn’t work when the permissions aren’t set correctly is a security thing – just imagine the risks if anyone was able to write to your .forward file.  As a precaution, the system will ignore the .forward file if it is world writeable.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Note by Colin: Not only does the file have to have restricted permissions, but the directory containing the file has to have restricted permissions. Sendmail’s log was very helpful in figuring that out.&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
=Commands=&lt;br /&gt;
===Archiving &amp;amp; Compression===&lt;br /&gt;
*zip/unzip&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*tar&lt;br /&gt;
Extract excluding a folder&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tar -exclude &amp;lt;folder to skip&amp;gt; -xzf file.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Python&amp;diff=317</id>
		<title>Python</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Python&amp;diff=317"/>
				<updated>2013-05-04T01:40:38Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Back to the TOC&amp;#039;&amp;#039;&amp;#039; =How to percent-encode url parameters in python= &amp;lt;pre&amp;gt; python -c &amp;quot;import urllib, sys; print urllib.quote(sys.argv[1])&amp;quot; æ  python -...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;[[Table of Contents|Back to the TOC]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=How to percent-encode url parameters in python=&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
python -c &amp;quot;import urllib, sys; print urllib.quote(sys.argv[1])&amp;quot; æ&lt;br /&gt;
&lt;br /&gt;
python -c &amp;quot;import urllib, sys; print urllib.unquote(sys.argv[1])&amp;quot; %C3%A6&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[http://askubuntu.com/questions/53770/how-can-i-encode-and-decode-percent-encoded-strings-on-the-command-line Stefano Palazzo]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=316</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Table_of_Contents&amp;diff=316"/>
				<updated>2013-05-04T01:35:52Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;#039;&amp;#039;&amp;#039;Please only add here the titles of sections, not the Q&amp;amp;A entries themselves. The Q&amp;amp;As can be added in the specific pages of the titles.&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
=[[Computers]]=&lt;br /&gt;
==[[Windows]]==&lt;br /&gt;
==[[Mac]]==&lt;br /&gt;
==[[Linux]]==&lt;br /&gt;
=[[Programming]]=&lt;br /&gt;
==[[Python]]==&lt;br /&gt;
=[[Web Tools]]=&lt;br /&gt;
==[[File Sharing, Syncing and Online Backup]]==&lt;br /&gt;
&lt;br /&gt;
=[[Graphic Design]]=&lt;br /&gt;
=[[Web Design]]=&lt;br /&gt;
==[[Content Management Systems]]==&lt;br /&gt;
===[[Joomla!]]===&lt;br /&gt;
====[[Joomla! Admin]]====&lt;br /&gt;
====[[Joomla! Themes]]====&lt;br /&gt;
====[[Joomla! Extensions]]====&lt;br /&gt;
===[[WordPress| WordPress.org]]===&lt;br /&gt;
====[[WP in General| WP Admin]]====&lt;br /&gt;
====[[WP Themes]]====&lt;br /&gt;
====[[WP Plugins]]====&lt;br /&gt;
===[[Drupal]]===&lt;br /&gt;
====[[Open Atrium]]====&lt;br /&gt;
&lt;br /&gt;
==[[CMS Services]]==&lt;br /&gt;
===[[WordPress.com]]===&lt;br /&gt;
&lt;br /&gt;
==[[Wiki Platforms]]==&lt;br /&gt;
==[[Wiki Services]]==&lt;br /&gt;
&lt;br /&gt;
=[[Domain &amp;amp; Hosting Management]]=&lt;br /&gt;
==[[Domains]]==&lt;br /&gt;
==[[Hosting]]==&lt;br /&gt;
==[[Email]]==&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=315</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=315"/>
				<updated>2013-04-30T05:21:24Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Plugins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;Front Page displays:&amp;#039; option to &amp;#039;Select a Static Page:&amp;#039; and choose in the drop down menu the &amp;#039;Sample Page&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;Article Settings:&amp;#039; uncheck &amp;#039;Allow people to post comments on new articles&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;Common Settings&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;Post name&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;Appearance/Themes/Add New&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;Pages&amp;#039; and &amp;#039;Menus&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;Appearance/Edit&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[http://wordpress.org/extend/plugins/ewww-image-optimizer EWWW Image Optimizer]&lt;br /&gt;
*[http://wordpress.org/extend/plugins/wp-google-fonts/ WP Google Fonts]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=314</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=314"/>
				<updated>2013-04-30T02:26:43Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: /* Plugins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;Front Page displays:&amp;#039; option to &amp;#039;Select a Static Page:&amp;#039; and choose in the drop down menu the &amp;#039;Sample Page&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;Article Settings:&amp;#039; uncheck &amp;#039;Allow people to post comments on new articles&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;Common Settings&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;Post name&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;Appearance/Themes/Add New&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;Pages&amp;#039; and &amp;#039;Menus&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;Appearance/Edit&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[http://wordpress.org/extend/plugins/ewww-image-optimizer EWWW Image Optimizer]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	<entry>
		<id>http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=313</id>
		<title>Give to your WordPress blog a website-looking feeling</title>
		<link rel="alternate" type="text/html" href="http://wiki.josephluis.com/index.php?title=Give_to_your_WordPress_blog_a_website-looking_feeling&amp;diff=313"/>
				<updated>2013-04-30T02:26:14Z</updated>
		
		<summary type="html">&lt;p&gt;Josephluis: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Transform your present WordPress blog or start from scratch a WordPress site that looks and feels like a general website rather than a blog.&lt;br /&gt;
&lt;br /&gt;
==Pre-considerations ==&lt;br /&gt;
You may consider if a multi-site or even a mult-language installation is what you need. WordPress has special installations for those features.  &lt;br /&gt;
&lt;br /&gt;
==The process==&lt;br /&gt;
Once you have your WordPress site installed there are three general steps to transform it into a website that doesn&amp;#039;t look like your typical blog:&lt;br /&gt;
&lt;br /&gt;
* Modify general settings&lt;br /&gt;
* Choose an appropriate theme&lt;br /&gt;
* Play with the style and formatting&lt;br /&gt;
&lt;br /&gt;
=== Modify general settings ===&lt;br /&gt;
On your WP Dashboard do the following changes for the Settings&lt;br /&gt;
&lt;br /&gt;
==== Reading ====&lt;br /&gt;
&lt;br /&gt;
Change the &amp;#039;Front Page displays:&amp;#039; option to &amp;#039;Select a Static Page:&amp;#039; and choose in the drop down menu the &amp;#039;Sample Page&amp;#039; that comes by default with the installation. More about this later.&lt;br /&gt;
&lt;br /&gt;
With this step you are making a Page your front page, instead of the default list of posts.&lt;br /&gt;
&lt;br /&gt;
==== Discussion ==== &lt;br /&gt;
&lt;br /&gt;
In &amp;#039;Article Settings:&amp;#039; uncheck &amp;#039;Allow people to post comments on new articles&amp;#039; With this your are saving yourself time, avoiding to have to manually remove comments sections on your future pages. Leave it check if you want comments for all the pages you create.&lt;br /&gt;
&lt;br /&gt;
====Permalinks ====&lt;br /&gt;
Change the &amp;#039;Common Settings&amp;#039; to a format of your link addresses that makes more sense for your website. For example, the &amp;#039;Post name&amp;#039;&lt;br /&gt;
option is fine if you are not planning to have any blog posts at all or you don&amp;#039;t mind if they are not organized by date.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Choose an appropriate theme===&lt;br /&gt;
&lt;br /&gt;
This is and important step for achieving the purpose of giving to your WP site a non-blog looking.&lt;br /&gt;
&lt;br /&gt;
A good place where you can start your search of theme templates is within your Dashboard. Go to &amp;#039;Appearance/Themes/Add New&amp;#039; where you are giving Advanced options for a search of the different formats that the themes offer.&lt;br /&gt;
&lt;br /&gt;
If you want a more thorough search and info of these same themes go to the [http://wordpress.org/extend/themes/ WP Free Themes Directory]. Other sites also offer Premium/Commercial Themes. In fact, some of the free themes can be upgraded to Premium by paying for a license.&lt;br /&gt;
&lt;br /&gt;
A note of caution. A theme is not only worth it for its lookings. That is why, after installing a theme you should spend some time looking at the Theme Options, Widget, Background, Menus and Header sections of the Appearance to find out how user friendly and flexible the theme is for changes in the format.&lt;br /&gt;
&lt;br /&gt;
===Play with the style and formatting===&lt;br /&gt;
&lt;br /&gt;
Once you have made your choice of a theme you can start adding layout and content to it with the &amp;#039;Pages&amp;#039; and &amp;#039;Menus&amp;#039; sections of the Dasboard. As your website is taking shape you may have to play with the more intricate settings of the style and formatting.&lt;br /&gt;
&lt;br /&gt;
Some themes include a section where you can add your own CSS code to do these changes but sometimes you may have to go to &amp;#039;Appearance/Edit&amp;#039; to change the .css and even the .php files of your site. A word of caution here. Developers may update their theme and these updates may override your manual changes into the above mentioned files. The solution to this is &amp;quot;Child Themes&amp;quot;. You can find more info on the WP help website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hope you find the above helpful and good luck with your WP website transformation!&lt;br /&gt;
&lt;br /&gt;
==Checklist==&lt;br /&gt;
===Settings===&lt;br /&gt;
====General====&lt;br /&gt;
*Review Title and set Tagline&lt;br /&gt;
*Change Timezone&lt;br /&gt;
====Reading====&lt;br /&gt;
*Change front page to a static page(if applicable. Use Sample Page if it&amp;#039;s a new installation)&lt;br /&gt;
*Set Search Engine Visibility&lt;br /&gt;
====Discussion====&lt;br /&gt;
*Review Commenting options&lt;br /&gt;
====Permalinks====&lt;br /&gt;
*Review Permalinks options&lt;br /&gt;
===Appearance===&lt;br /&gt;
====Themes====&lt;br /&gt;
*Select theme or configure existent&lt;br /&gt;
&lt;br /&gt;
===Plugins===&lt;br /&gt;
*[EWWW Image Optimizer http://wordpress.org/extend/plugins/ewww-image-optimizer ]&lt;/div&gt;</summary>
		<author><name>Josephluis</name></author>	</entry>

	</feed>