<?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>Code Jutsu</title>
	<atom:link href="http://www.montolz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.montolz.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 09 Mar 2010 03:26:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>PHP Short Open Tag</title>
		<link>http://www.montolz.com/php-short-open-tag/</link>
		<comments>http://www.montolz.com/php-short-open-tag/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 03:38:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Short Open Tag]]></category>

		<guid isPermaLink="false">http://www.montolz.com/?p=69</guid>
		<description><![CDATA[Mungkin kita sudah tahu semua kalau kita mau memulai ngoding PHP kita harus membukanya dengan tag &#60;?php dan menutupnya dengan ?&#62; . Namun kadang kala mungkin ada yang membuka tag php dengan &#60;? dan menutup dengan ?&#62; . Apakah yang membedakan ?
Sebenarnya ini tergantung dari settingan php dalam server kita. Lebih tepatnya settingan ini terdapat [...]]]></description>
			<content:encoded><![CDATA[<p>Mungkin kita sudah tahu semua kalau kita mau memulai ngoding PHP kita harus membukanya dengan tag &lt;?php dan menutupnya dengan ?&gt; . Namun kadang kala mungkin ada yang membuka tag php dengan &lt;? dan menutup dengan ?&gt; . Apakah yang membedakan ?</p>
<p>Sebenarnya ini tergantung dari settingan php dalam server kita. Lebih tepatnya settingan ini terdapat dalam file php.ini. Jika kita menggunakan xampp file ini terdapat dalam directory &#8220;xampp\apache\bin\php.ini&#8221;.</p>
<p>Agar kita bisa melakukan open tag dengan &lt;?php ataupun dengan &lt;? lakukan settingan seperti dibawah ini</p>
<ol>
<li>Buka file php.ini</li>
<li>Cari string &#8220;short_open_tag&#8221;</li>
<li>Jika anda menemukan string &#8220;;short_open_tag&#8221; di awali dengan titik koma. Lakukan terus pencarian sampai ditemukan string &#8220;short_open_tag&#8221;.</li>
<li>Setelah menemukan string tersebut ganti short_open_tag = off menjadi short_open_tag = on</li>
<li>Selesai. Restart server PHP.</li>
</ol>
<p>Manfaat settingan ini adalah sebagai berikut.</p>
<p>Misal jika kita ingin mencetak variable $x kitabiasanya menggunakan echo seperti dibawah ini.<br />
<code>&lt;?php<br />
echo $x;<br />
?&gt;<br />
</code><br />
Tapi jika kita sudah melakukan setting seperti cara diatas kita bisa melakukan print variabel $x dengan cara sebagai berikut :<br />
<code>&lt;?=$x?&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.montolz.com/php-short-open-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menghitung Jumlah Karakter Dalam String Oracle</title>
		<link>http://www.montolz.com/menghitung-jumlah-karakter-dalam-string-oracle/</link>
		<comments>http://www.montolz.com/menghitung-jumlah-karakter-dalam-string-oracle/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 02:38:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Menghitung Jumlah Karakter Dalam String Oracle]]></category>

		<guid isPermaLink="false">http://www.montolz.com/?p=49</guid>
		<description><![CDATA[Jika kita mau menghitung panjang string dalam database oracle mungkin sangat mudah, yaitu dengan menggunakan length seperti contoh dibawah ini:
SELECT LENGTH('Hello World') FROM DUAL;
Mungkin teman-teman sudah tau semua ya &#8230; Tapi bagaimana kalau kita ingin menghitung jumlah karakter l saja ???
Mungkin kita bisa menggunakan bantuan fungsi lain yaitu fungsi replace. Pertama yang harus kita lakukan [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Jika kita mau menghitung panjang string dalam database oracle mungkin sangat mudah, yaitu dengan menggunakan <span style="color: #808080;"><em>length</em></span> seperti contoh dibawah ini:</p>
<p><code>SELECT LENGTH('Hello World') FROM DUAL;</code></p>
<p style="text-align: justify;">Mungkin teman-teman sudah tau semua ya &#8230; Tapi bagaimana kalau kita ingin menghitung jumlah karakter <em><span style="color: #808080;">l</span></em> saja ???</p>
<p style="text-align: justify;">Mungkin kita bisa menggunakan bantuan fungsi lain yaitu fungsi <span style="color: #808080;"><em>replace</em></span>. Pertama yang harus kita lakukan adalah menghitung jumlah karakter tanpa huruf <em><span style="color: #808080;">l</span></em>. Syntax nya adalah sebagai berikut :</p>
<p><code>SELECT LENGTH(REPLACE('Hello World', 'l', null)) FROM DUAL</code></p>
<p style="text-align: justify;">Karakter <span style="color: #808080;"><em>l</em></span> di replace dengan <span style="color: #808080;"><em>null</em></span> kemudian di hitung panjang karakternya.</p>
<p style="text-align: justify;">Kita dapat mencari jumlah karakter <span style="color: #808080;"><em>l</em></span> saja dengan cara menghitung jumlah semua karakter dikurangi dengan jumlah karakter tanpa <span style="color: #808080;"><em>l</em></span>. Syntax lengkapnya adalah sebagai berikut :</p>
<p><code>SELECT LENGTH('Hello World') - LENGTH(REPLACE('Hello world', 'l', null)) FROM DUAL</code></p>
<p>Mudah kan ?? heheee&#8230;..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.montolz.com/menghitung-jumlah-karakter-dalam-string-oracle/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Error After Wordpress Plugin Installed</title>
		<link>http://www.montolz.com/error-after-wordpress-plugin-installed/</link>
		<comments>http://www.montolz.com/error-after-wordpress-plugin-installed/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 09:46:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Error After Wordpress Plugin Installed]]></category>
		<category><![CDATA[error wordpress plugin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.montolz.com/?p=40</guid>
		<description><![CDATA[In installing wordpress plugin will not always succeed. This could be due to differences between the versions of wordpress and plugins. For that I will provide a solution if there is failure to install the wordpress plugin.

 Login into your wordpress database.
You can use phpmyadmin or other tool. Find &#8220;Option&#8221; tables.
Find the line that the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In installing wordpress plugin will not always succeed. This could be due to differences between the versions of wordpress and plugins. For that I will provide a solution if there is failure to install the wordpress plugin.</p>
<ol>
<li> Login into your wordpress database.</li>
<li>You can use phpmyadmin or other tool. Find &#8220;Option&#8221; tables.</li>
<li>Find the line that the contents of &#8220;active plugins&#8221;. It is a list of active plugins.</li>
<li>Delete all the contents of the list. All plugins will be in a state of inactivity.</li>
<li>Perform reactivation of plugins that can work well.</li>
</ol>
<p style="text-align: justify;">Done ! your  wordpress can walk again as before</p>
]]></content:encoded>
			<wfw:commentRss>http://www.montolz.com/error-after-wordpress-plugin-installed/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Cpanel Port Blocked</title>
		<link>http://www.montolz.com/cpanel-port-blocked/</link>
		<comments>http://www.montolz.com/cpanel-port-blocked/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 05:04:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cpanel Port Blocked]]></category>
		<category><![CDATA[cpanel block]]></category>
		<category><![CDATA[cpanel blocked]]></category>
		<category><![CDATA[cpanel port]]></category>

		<guid isPermaLink="false">http://www.montolz.com/?p=9</guid>
		<description><![CDATA[When we are hosting a website, we can access a cpanel feature to manage a website. In other way, we can&#8217;t access cpanel because of the cpanel port blocked by network administrator for security reason.
Now i will explain how to resolve it.
The first time you must go to the place that you can access cpanel. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">When we are hosting a website, we can access a cpanel feature to manage a website. In other way, we can&#8217;t access cpanel because of the cpanel port blocked by network administrator for security reason.<br />
Now i will explain how to resolve it.<br />
The first time you must go to the place that you can access cpanel. Open it !. Create a new subdomain for your new cpanel (for example mpanel.yourdomain.com).<br />
Usually, by default, cpanel address located at cpanel.yourdomain.com or yourdomain.com/cpanel. Download cpanel proxy from cpanelproxy.net or you can download <a href="http://www.ziddu.com/download/8277594/cPanelProxy.zip.html" target="_blank">here</a>. Upload cPanelProxy.zip to your new subdomain root directory. Extract it.<br />
Open and edit file cpanelproxy.php. Assume your new subdomain is mpanel.yourdomain.com<br />
Change this code<br />
<code>$cpanelhost = 'cpanel.'.$hostpostfix;</code><br />
To<br />
<code>$cpanelhost = 'mpanel.'.$hostpostfix;</code><br />
Now you can access your new cpanel at mpanel.yourdomain.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.montolz.com/cpanel-port-blocked/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress With More One Language (without plugin)</title>
		<link>http://www.montolz.com/wordpress-with-more-one-language-without-plugin/</link>
		<comments>http://www.montolz.com/wordpress-with-more-one-language-without-plugin/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 04:33:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress With More One Language (without plugin)]]></category>
		<category><![CDATA[Language]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.montolz.com/?p=7</guid>
		<description><![CDATA[In this session i will explain how to configure wordpress article with more one language. It is very simple, didn&#8217;t need a plugin, using google translate
Now i will explain it :
Copy the article that you want to translate in google translate textbox. Chose a language in Translate from and Translate into. Click translate button. Copy [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">In this session i will explain how to configure wordpress article with more one language. It is very simple, didn&#8217;t need a plugin, using google translate<br />
Now i will explain it :<br />
Copy the article that you want to translate in google translate textbox. Chose a language in Translate from and Translate into. Click translate button. Copy all of translate result to your wordpress Post Editor. And Finish !!!! Publish your post.<br />
The other language will appear as a tooltip with other language.<br />
The advantages of using my way is you can use more than one language translate in your wordpress blog, but in one article only can use two language.<br />
If you use a plugin it only can translate one language in all of your wordpress blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.montolz.com/wordpress-with-more-one-language-without-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
