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

<channel>
	<title>link2caro &#187; Development</title>
	<atom:link href="http://link2caro.net/it/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://link2caro.net</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 09:41:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>ssh-agent with cygwin on Windows</title>
		<link>http://link2caro.net/read/ssh-agent-with-cygwin-on-windows/</link>
		<comments>http://link2caro.net/read/ssh-agent-with-cygwin-on-windows/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 11:50:34 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh-agent]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=712</guid>
		<description><![CDATA[Modify your .bashrc in your home directory in cygwin Add a variable into your environment variables As in this screenshot You can add the path to the directory /bin, /usr/sbin, /usr/local/bin into your PATH variable of windows too, so that you can use most of cygwin commands directly from Command Prompt. The most useful commands [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Modify your .bashrc in your home directory in cygwin</li>
</ul>
<pre class="brush: bash; title: ; notranslate">export SSH_AUTH_SOCK=/tmp/.ssh-socket
ssh-add -l 2&gt;&amp;1 &amp;gt;/dev/null

if [ $? = 2 ]; then
# Exit status 2 means couldn't connect to ssh-agent; start one now
ssh-agent -a $SSH_AUTH_SOCK &gt; /tmp/.ssh-script
. /tmp/.ssh-script
echo $SSH_AGENT_PID &gt; /tmp/.ssh-agent-pid
echo &quot;Run ssh-add &lt;Private Key&gt; to add your key to ssh-agent&quot;
ssh-add ~/.ssh/id_rsa
fi

function kill-agent {
pid=`cat /tmp/.ssh-agent-pid`
kill $pid
}</pre>
<ul>
<li>Add a variable into your environment variables</li>
</ul>
<p>As in this screenshot <img class="aligncenter size-medium wp-image-729" title="Environment variables" src="http://files.link2caro.net/2010/11/Capture-500x230.png" alt="" width="500" height="230" /></p>
<p>You can add the path to the directory /bin, /usr/sbin, /usr/local/bin into your PATH variable of windows too, so that you can use most of cygwin commands directly from Command Prompt. The most useful commands for me are <strong>ssh</strong>,<strong> rsync </strong>and <strong>tail</strong>.</p>
<p>You can create a startup batch which launches <strong>bash</strong> when your PC starts up, so that it will start automatically the ssh-agent and register your private keys.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/ssh-agent-with-cygwin-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0</title>
		<link>http://link2caro.net/read/wordpress-3-0/</link>
		<comments>http://link2caro.net/read/wordpress-3-0/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 09:41:15 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=716</guid>
		<description><![CDATA[&#160; WordPress 3.0 đã chính thức được phát hành ngày 17/06/2010 với nhiều tính năng mới nổi bật cho cả người dùng bình thường lẫn người dùng chuyên nghiệp (lập trình viên) Một tính năng nổi bật nhất đó là bạn có thể cắt, chỉnh sửa ảnh của bạn trực tiếp trong WordPress (như hình [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img class="aligncenter" title="Chỉnh sửa ảnh  trong WordPress" src="http://files.link2caro.net/2010/06/ss4.png" alt="" width="466" height="303" /></p>
<p><img class="aligncenter size-medium wp-image-722" title="Chỉnh sửa ảnh trong WordPress 3.0" src="http://files.link2caro.net/2010/06/ss5-500x349.png" alt="" width="500" height="349" /></p>
<p style="text-align: left;">WordPress 3.0 đã chính thức được phát hành ngày 17/06/2010 với nhiều tính năng mới nổi bật cho cả người dùng bình thường lẫn người dùng chuyên nghiệp (lập trình viên)</p>
<p style="text-align: left;">Một tính năng nổi bật nhất đó là bạn có thể cắt, chỉnh sửa ảnh của bạn trực tiếp trong WordPress (như hình minh họa)</p>
<p style="text-align: left;">Bạn có thể tham khảo các tính năng mới của WordPress 3.0 tại đây:</p>
<p style="text-align: left;">http://codex.wordpress.org/Version_3.0</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OSX &#8211; rsync to support iconv</title>
		<link>http://link2caro.net/read/mac-osx-rsync/</link>
		<comments>http://link2caro.net/read/mac-osx-rsync/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 17:24:28 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[compilation]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/read/mac-osx-rsync-to-support-iconv/</guid>
		<description><![CDATA[The rsync tool that comes in-the-box with OSX does not support iconv, so that you cannot activate this option in order to void any encoding issue when syncing with rsync. To use this option, you need to install XCode to compile rsync, by default on OSX 10.6, with default options (64-bit compilation) you don&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p>The rsync tool that comes in-the-box with OSX does not support iconv, so that you cannot activate this option in order to void any encoding issue when syncing with rsync.<br />
To use this option, you need to install XCode to compile rsync, by default on OSX 10.6, with default options (64-bit compilation) you don&#8217;t have iconv enabled, you just need to precise rsync to compile in 32-bit mode and you are good to sync in UTF-8 now</p>
<p>If you sync from your Mac use</p>
<p style="padding-left: 30px;"><code>rsync --iconv=UTF8-MAC,UTF8</code></p>
<p><code>$ CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 ./configure --prefix=/usr/local<br />
$ CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 sudo make install</code></p>
<p>If you don&#8217;t want to install XCode, you can download a compiled version here: <a href="http://files.link2caro.net/2010/04/rsync.tar.gz">rsync-3.0.7 (compiled on OSX 10.6.3)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/mac-osx-rsync/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>jQuery 1.4 for WordPress</title>
		<link>http://link2caro.net/read/jquery-1-4-for-wordpress/</link>
		<comments>http://link2caro.net/read/jquery-1-4-for-wordpress/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 21:59:45 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=683</guid>
		<description><![CDATA[If you want to test out jQuery 1.4 with your current WordPress installation, you just need to add this code into functions.php of your theme if( !is_admin()){ wp_deregister_script('jquery'); wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js', false, 'latest'); wp_enqueue_script('jquery'); }]]></description>
			<content:encoded><![CDATA[<p><a href="http://files.link2caro.net/2010/02/jquery.gif" rel="lightbox[683]"></a><a href="http://files.link2caro.net/2010/02/jquery.png" rel="lightbox[683]"><img class="alignright size-full wp-image-685" title="jquery" src="http://files.link2caro.net/2010/02/jquery.png" alt="" width="239" height="101" /></a>If you want to test out jQuery 1.4 with your current WordPress installation, you just need to add this code into functions.php of your theme</p>
<p><code>if( !is_admin()){<br />
wp_deregister_script('jquery');<br />
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js', false, 'latest');<br />
wp_enqueue_script('jquery');<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/jquery-1-4-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3: New Features</title>
		<link>http://link2caro.net/read/php-5-3-new-features/</link>
		<comments>http://link2caro.net/read/php-5-3-new-features/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 07:57:47 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=631</guid>
		<description><![CDATA[Some interesting new features: Namespaces Late static binding Closures One-expression tenary operator Much better Windows support Since PHP 5.3, it is possible to leave out the middle part of the ternary operator. Expression expr1 ?: expr3 returns expr1 if expr1 evaluates to TRUE, and expr3 otherwise.]]></description>
			<content:encoded><![CDATA[<p>Some interesting new features:<a href="http://files.link2caro.net/2009/07/php.gif" rel="lightbox[631]"><img class="alignright size-full wp-image-632" title="php" src="http://files.link2caro.net/2009/07/php.gif" alt="php" width="120" height="67" /></a></p>
<ul>
<li><a href="http://php.net/manual/en/language.namespaces.faq.php">Namespaces</a></li>
<li><a href="http://php.net/lsb">Late static binding</a></li>
<li><a href="http://php.net/closures">Closures</a></li>
<li><a href="http://php.net/ternary">One-expression tenary operator </a></li>
<li><a href="http://windows.php.net/">Much better Windows support</a><br />
Since PHP 5.3, it is possible to leave out the middle part of the ternary      operator. Expression <em>expr1 ?: expr3</em> returns      <span>expr1</span> if <span>expr1</span> evaluates to <strong><tt>TRUE</tt></strong>, and <span>expr3</span> otherwise.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/php-5-3-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPVN &#8211; Username Changer</title>
		<link>http://link2caro.net/read/wpvn-username-changer/</link>
		<comments>http://link2caro.net/read/wpvn-username-changer/#comments</comments>
		<pubDate>Sun, 10 May 2009 18:09:14 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=576</guid>
		<description><![CDATA[If you have any feedback for this plugin please leave your feedback here!]]></description>
			<content:encoded><![CDATA[<p>If you have any feedback for this plugin please leave your feedback here!</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-username-changer/feed/</wfw:commentRss>
		<slash:comments>48</slash:comments>
		</item>
		<item>
		<title>WPVN-HideText</title>
		<link>http://link2caro.net/read/wpvn-hidetext/</link>
		<comments>http://link2caro.net/read/wpvn-hidetext/#comments</comments>
		<pubDate>Sat, 02 May 2009 23:14:56 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=544</guid>
		<description><![CDATA[This plugin is used to hide some content in a Post or a Page by a link, when you click the entire hidden content will appear. The link is not toggle between Show/Hide for this version, I will implement that function soon. Use: case insensitive [ hide[=Text to be displayed instead of default text]]TEXT[/hide ] [...]]]></description>
			<content:encoded><![CDATA[<p>This plugin is used to hide some content in a Post or a Page by a link, when you click the entire hidden content will appear.</p>
<p>The link is not toggle between Show/Hide for this version, I will implement that function soon.</p>
<p>Use: case insensitive</p>
<p><code>[ hide[=Text to be displayed instead of default text]]TEXT[/hide ]</code></p>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/wp-hidetext/">http://wordpress.org/extend/plugins/wp-hidetext/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-hidetext/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>WPVN Unload Hooks</title>
		<link>http://link2caro.net/read/wpvn-unload-hooks/</link>
		<comments>http://link2caro.net/read/wpvn-unload-hooks/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:16:26 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=495</guid>
		<description><![CDATA[http://wordpress.org/extend/plugins/wpvn-unload-hooks/]]></description>
			<content:encoded><![CDATA[<p>http://wordpress.org/extend/plugins/wpvn-unload-hooks/</p>

<a href='http://link2caro.net/read/wpvn-unload-hooks/screenshot-3/' title='screenshot-3'><img width="150" height="150" src="http://files.link2caro.net/2009/04/screenshot-3-150x150.png" class="attachment-thumbnail" alt="screenshot-3" title="screenshot-3" /></a>
<a href='http://link2caro.net/read/wpvn-unload-hooks/screenshot-2/' title='screenshot-2'><img width="150" height="150" src="http://files.link2caro.net/2009/04/screenshot-2-150x150.png" class="attachment-thumbnail" alt="screenshot-2" title="screenshot-2" /></a>
<a href='http://link2caro.net/read/wpvn-unload-hooks/screenshot-1/' title='screenshot-1'><img width="150" height="150" src="http://files.link2caro.net/2009/04/screenshot-1-150x150.png" class="attachment-thumbnail" alt="screenshot-1" title="screenshot-1" /></a>

]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-unload-hooks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WP-AVIM-Reloaded</title>
		<link>http://link2caro.net/read/wp-avim-reloaded/</link>
		<comments>http://link2caro.net/read/wp-avim-reloaded/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 13:41:15 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=455</guid>
		<description><![CDATA[http://wordpress.org/extend/plugins/wp-avim-reloaded/ Với vài tính năng mới Sử dụng AVIM định hướng đối tượng để tránh các xung đột về javascript. Sửa cookie có path=/, thêm cookie AVIM_hidden để nhớ chế độ ẩn hiện. Có một bug nhỏ sau khi up lên svn mình mới để ý, nếu bạn lỡ tay ẩn bộ gõ đi ở [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/wp-avim-reloaded/">http://wordpress.org/extend/plugins/wp-avim-reloaded/</a></p>
<p>Với vài tính năng mới <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Sử dụng AVIM định hướng đối tượng để tránh các xung đột về javascript. Sửa cookie có path=/, thêm cookie AVIM_hidden để nhớ chế độ ẩn hiện. Có một bug nhỏ sau khi up lên svn mình mới để ý, nếu bạn lỡ tay ẩn bộ gõ đi ở trang có bảng điểu khiển ẩn được, trong trang có bảng điều khiển cố định, bạn không thể cho nó hiện ra lại, bạn buộc phải quay lại trang nào có bảng kiểu floating để hiện lại bảng điều khiển cố định.</p>
<p><span style="text-decoration: line-through;">Thêm phím Esc thay thế cho F12 (Mac thingy <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) &#8211; ngồi ấn F12 mãi chẳng được <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  )</span><br />
-&gt; Alt+F12<span style="text-decoration: line-through;"><br />
</span></p>
<p><span id="more-455"></span></p>
<p>Screen nè:</p>
<p><img src="http://wordpress.org/extend/plugins/wp-avim-reloaded/screenshot-1.png" alt="" /><br />
<img src="http://wordpress.org/extend/plugins/wp-avim-reloaded/screenshot-2.png" alt="" /><br />
<img src="http://wordpress.org/extend/plugins/wp-avim-reloaded/screenshot-3.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wp-avim-reloaded/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>AVIM-Reloaded</title>
		<link>http://link2caro.net/read/avim-reloaded/</link>
		<comments>http://link2caro.net/read/avim-reloaded/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 03:09:35 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=452</guid>
		<description><![CDATA[Hôm trước có người kêu cái AVIM này không có cookie cho chế độ ẩn đi nên giờ mình sửa một chút AVIM để thêm cookie cho việc ẩn hiện bảng điều khiển. Nếu trong thời gian tới CA RO rảnh, CA RO sẽ sửa lại dùng cookie theo hệ nhị phân để giảm số [...]]]></description>
			<content:encoded><![CDATA[<p>Hôm trước có người kêu cái AVIM này không có cookie cho chế độ ẩn đi nên giờ mình sửa một chút AVIM để thêm cookie cho việc ẩn hiện bảng điều khiển.</p>
<p style="text-align: left;">Nếu trong thời gian tới CA RO rảnh, CA RO sẽ sửa lại dùng cookie theo hệ nhị phân để giảm số cookie từ 5 xuống 2 (CA RO ghét nhìn thấy nhiều cookie <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  nản lắm, những lúc code gì cần cookie tìm mãi mới ra cái cookie của mình)</p>
<p style="text-align: left;">&#8211;</p>
<p style="text-align: left;">Updated: 29-03-2009</p>
<p style="text-align: left;"><a href="http://files.link2caro.net/2009/03/picture-14.png" rel="lightbox[452]"><img class="alignnone size-medium wp-image-478" title="picture-14" src="http://files.link2caro.net/2009/03/picture-14-300x37.png" alt="picture-14" width="300" height="37" /></a></p>
<p><a href="http://files.link2caro.net/2009/03/avim-20090327.zip"></a><a href="http://files.link2caro.net/2009/03/avimr-20090329.zip">avimr-20090329</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/avim-reloaded/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing Subversion on Ubuntu</title>
		<link>http://link2caro.net/read/install-subversion-ubuntu/</link>
		<comments>http://link2caro.net/read/install-subversion-ubuntu/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 14:32:05 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web&Dev]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/ubuntu/</guid>
		<description><![CDATA[Assuming that apache is installed! Install packages apt-get install subversion libapache2-svn libapache-mod-dav Enable SSL a2enmod Add &#8220;Listen 443&#8243; into httpd.conf if needed. Install SSL apt-get install ssl-cert mkdir /etc/apache2/ssl /usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/site-name.crt Adding Basic Authentication: htpasswd2 -c -m /home/path-to/svn/project/.htpasswd username Configure site cp /etc/apache2/sites-available/default /etc/apache2/sites-available/site-name nano /etc/apache2/sites-available/site-name &#60;VirtualHost IP_ADDRESS:443&#62; ServerName hostname DocumentRoot /home/path-to/svn SSLEngine on [...]]]></description>
			<content:encoded><![CDATA[<p>Assuming that apache is installed!</p>
<ol>
<li><span style="color: #800000;"><strong>Install packages</strong></span><br />
apt-get install subversion libapache2-svn libapache-mod-dav</li>
<li><span style="color: #800000;"><strong>Enable SSL</strong></span><br />
a2enmod<br />
Add &#8220;Listen 443&#8243; into httpd.conf if needed.</li>
<li><span style="color: #800000;"><strong>Install SSL</strong></span><br />
apt-get install ssl-cert<br />
mkdir /etc/apache2/ssl<br />
/usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/<strong>site-name.crt</strong></li>
<li><span style="color: #800000;"><strong>Adding Basic Authentication:</strong></span><br />
htpasswd2 -c -m /home/path-to/svn/project/.htpasswd <strong><em>username</em></strong></li>
<li><span style="color: #800000;"><strong>Configure site</strong></span><br />
cp /etc/apache2/sites-available/default /etc/apache2/sites-available/<strong>site-name</strong><br />
nano /etc/apache2/sites-available/site-name</p>
<blockquote><p>&lt;VirtualHost IP_ADDRESS:443&gt;<br />
ServerName <strong>hostname</strong><br />
DocumentRoot /home/path-to/svn</p>
<p>SSLEngine on<br />
SSLCertificateFile /etc/apache2/ssl/<strong>site-name.crt</strong><br />
SSLProtocol all<br />
SSLCipherSuite HIGH:MEDIUM</p>
<p>&lt;Directory &#8220;/home/path-to/svn&#8221;&gt;<br />
Options FollowSymLinks MultiViews<br />
AllowOverride All<br />
Order allow,deny<br />
Allow from All<br />
SSLRequireSSL<br />
&lt;/Directory&gt;</p>
<p>### project<br />
&lt;Location &#8220;/svn/project&#8221;&gt;<br />
AuthType Basic<br />
AuthName &#8220;Subversion Login&#8221;<br />
AuthUserFile /home/path-to/svn/project/<strong>.htpasswd</strong><br />
Require valid-user<br />
&lt;/Location&gt;<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p><code>a2ensite <em>$SITENAME</em><br />
/etc/init.d/apache2 restart</code></li>
<li><span style="color: #800000;"><strong>Adding repository</strong></span><br />
mkdir /home/path-to/svn<br />
svnadmin create /home/path-to/svn/repos<br />
chown -R www-data:www-data /home/path-to/svn/repos<br />
chmod -R g+ws /home/path-to/svn/repos</li>
<li><span style="color: #800000;"><strong>Enabling SVN</strong></span><br />
Edit /etc/apache2/mods-available/dav_svn.conf<br />
<code>DAV svn<br />
SVNParentPath /home/path-to/svn (for multi repositories)<br />
SVNPath /home/path-to/svn (for single repository)</code>For non-anonymous access comment out:<br />
<code>#&lt;LimitExcept GET PROPFIND OPTIONS REPORT&gt;<br />
#&lt;/LimitExcept&gt;</code></li>
<li><span style="color: #800000;"><strong>Finalization</strong></span><br />
<code>/etc/init.d/apache2 restart</code></li>
<li><span style="color: #800000;"><strong>Initial Import and Checkout</strong></span><code><br />
svn import --username <em><strong>username</strong> <strong>files</strong></em> https://hostname/svn/<em>repos</em>/testdir -m “Testing”</code><code><br />
svn co --username <em><strong>username</strong> </em>https://hostname/svn<em>/repos</em></code></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/install-subversion-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server CE (Community Edition)</title>
		<link>http://link2caro.net/read/zend-server-ce-community-edition/</link>
		<comments>http://link2caro.net/read/zend-server-ce-community-edition/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 01:35:05 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=402</guid>
		<description><![CDATA[Today, after a long time messing up with XAMPP, MAMP and the Web Sharing &#8211; or default Web Server of Mac OS X, I found out a very new product which is free to &#8220;grand&#8221; public: Zend Server CE (Community Edition). There are Linux, Windows and Mac OS X versions. The versions for Unix-like OS [...]]]></description>
			<content:encoded><![CDATA[<p>Today, after a long time messing up with XAMPP, MAMP and the Web Sharing &#8211; or default Web Server of Mac OS X, I found out a very new product which is free to &#8220;grand&#8221; public: Zend Server CE (Community Edition). There are Linux, Windows and Mac OS X versions. The versions for Unix-like OS has a particularity is that the listening port is 10088 by default but not 80. The Windows version I have not tested yet, let that for tomorow, uses the defaul port 80; and Debian-based OS (Ubuntu) is for tomorow too.</p>
<p>It&#8217;s a bit late now, so I just head into the main point why I am writing this post <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  I wanted to change the default port to 80 on my Mac, ok, it&#8217;s a piece of cake, try <strong><em><span style="text-decoration: line-through;">/ZendServer</span> /usr/local/zend/apache2/conf/httpd.conf</em></strong> (I like the file structure of Zend Server, it&#8217;s way more familiar than other stuffs I cited above). After changing the Apache conf, I cannot make Zend AdminInterface (run on lighttpd) work with the Apache on new port, and I searched for a while and Eureka! found the config file here: <span style="text-decoration: line-through;"><strong><em>/ZendServer/gui/application/data/zwas.ini</em></strong></span> <strong>/usr/local/zend/gui/application/data/zend-server.ini</strong><strong> <em>(Since 4.0.1)</em></strong><span style="text-decoration: line-through;"><strong><em><br />
</em></strong></span></p>
<blockquote><p>[zendServer]<br />
version = 4.0.2<br />
build = ZEND_SERVER_GUI_4_0_22_20090426<br />
packageBuild = INSTALLATION_PLACEHOLDER_PACKAGE_BUILD_NUMBER<br />
rewriteEnabled = On</p>
<p>[userServer]<br />
<strong>url = http://127.0.0.1:10088/ZendServer (in my case I change it to http://127.0.0.1/ZendServer)<br />
</strong></p>
<p>&#8230;.</p></blockquote>
<p>Last thing, you need to make an alias of <span style="text-decoration: line-through;"><strong><em>/ZendServer/apache2/htdocs/ZendServer</em></strong></span><strong><em> </em></strong><strong>/usr/local/zend/apache2/htdocs</strong> in the new DocumentRoot to make sure that Apache can start correctly. (it&#8217;s actually an alias of <strong><em><span style="text-decoration: line-through;">/</span><span style="text-decoration: line-through;">ZendServer</span> /usr/local/zend/gui/UserServer</em></strong> as in the ini file it says.)</p>
<p><span style="text-decoration: underline;">To Linux Users:</span> If you have already have a running apache, when you install ZendServer, it will use your current apache server <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and things work just as smooth as it should be after a 3 minutes and 5 command lines installation <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  (tested on Ubuntu 8.10, the server which hosts this blog)</p>
<p>Hope this post help some one out there, tomorrow I will update more about this Zend Server.</p>
<p>At this time I have the problem with mysql.sock on Mac, as always <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>Updated: ZendServer 4.0.2 has MySQL on its own, it&#8217;s now the best thing out there for Mac in my taste, pity that Zend still does not make 64bit version for Windows <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>

<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-68/' title='picture-68'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-68-150x150.png" class="attachment-thumbnail" alt="picture-68" title="picture-68" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-69/' title='picture-69'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-69-150x150.png" class="attachment-thumbnail" alt="picture-69" title="picture-69" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-70/' title='picture-70'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-70-150x150.png" class="attachment-thumbnail" alt="picture-70" title="picture-70" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-71/' title='picture-71'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-71-150x150.png" class="attachment-thumbnail" alt="picture-71" title="picture-71" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-72/' title='picture-72'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-72-150x150.png" class="attachment-thumbnail" alt="picture-72" title="picture-72" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-73/' title='picture-73'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-73-150x150.png" class="attachment-thumbnail" alt="picture-73" title="picture-73" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-74/' title='picture-74'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-74-150x150.png" class="attachment-thumbnail" alt="picture-74" title="picture-74" /></a>

]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/zend-server-ce-community-edition/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WPVN-MediaTek</title>
		<link>http://link2caro.net/read/wpvn-mediatek/</link>
		<comments>http://link2caro.net/read/wpvn-mediatek/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 11:01:25 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=506</guid>
		<description><![CDATA[I made a media player plugin for WordPress which enables to embed an FLV and ,MP3 and YouTube link into player in Posts or Pages. If you do not put [=title], the file name will be put before the player. 2009.04.27: New version: 1.3.0 Updated player to v4.4 YouTube supported Media Button above the text [...]]]></description>
			<content:encoded><![CDATA[<p>I made a media player plugin for WordPress which enables to embed an FLV <del datetime="2009-04-26T23:53:02+00:00">and </del>,MP3 and YouTube link into <del datetime="2009-04-26T23:53:02+00:00">player in</del> Posts or Pages.</p>
<p>If you do not put <strong>[=title]</strong>,<strong> </strong>the file name will be put before the player.</p>
<p><strong>2009.04.27</strong>: New version: 1.3.0<br />
Updated player to v4.4<br />
YouTube supported<br />
Media Button above the text editor, so simple to add new media link now <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Uses: (case insensitive for the whole tag, not for each character)<br />
<code><br />
[ mp3[=title]]URL[/mp3 ]<br />
[ flv[=title]]URL[/flv ]<br />
[ yt[=title]]URL[/yt]</code></p>
<p><a href="http://svn.wordpressvn.net/link2caro/link2caro/wordpress/plugins/wpvn-mediatek/wpvn-mediatek.zip" target="_blank">WPVN-MediaTek 1.3</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-mediatek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 5/78 queries in 0.619 seconds using apc
Object Caching 1627/1814 objects using apc

Served from: link2caro.net @ 2012-02-09 00:13:35 -->
