<?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>IIXMedia.com - Blog &#187; Tutorial</title>
	<atom:link href="http://iixmedia.com/blog/category/tutorial/feed" rel="self" type="application/rss+xml" />
	<link>http://iixmedia.com/blog</link>
	<description>Indonesia Hosting &#38; Media Center</description>
	<lastBuildDate>Thu, 18 Mar 2010 09:13:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 Tips for Tune and Secure your cPanel Server</title>
		<link>http://iixmedia.com/blog/10-tips-for-tune-and-secure-your-cpanel-server.im</link>
		<comments>http://iixmedia.com/blog/10-tips-for-tune-and-secure-your-cpanel-server.im#comments</comments>
		<pubDate>Thu, 18 Mar 2010 09:13:58 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=233</guid>
		<description><![CDATA[Please note that these tips are suggestions only and cPanel takes no  responsibility for modifications to individual servers, or the security  practices of individual servers. Server security is a collection of  compromises, as any server that allows connections could be insecure.  These tips are to be followed at your own risk.
1) [...]]]></description>
			<content:encoded><![CDATA[<p>Please note that these tips are suggestions only and cPanel takes no  responsibility for modifications to individual servers, or the security  practices of individual servers. Server security is a collection of  compromises, as any server that allows connections could be insecure.  These tips are to be followed at your own risk.</p>
<div>1) <strong>Use secure passwords!</strong></div>
<div>Insecure  passwords are the most common security vulnerability for most servers.  If an account password is insecure and is compromised, client sites can  be defaced, infected, or used to spread viruses. Having secure passwords  is paramount to having a secure server.</div>
<div>You can edit  /etc/login.defs to configure many password options on your system. It is  well do*****ented.</div>
<div>Generally, a password utilizing at  least 8 characters including alphanumeric and grammatical symbols is  sufficient. Never use passwords based upon dictionary words or  significant dates. If you are uncertain about the security of a  password, then you can test it using <a href="http://www.openwall.com/john/">JTR cracker</a>. If a password can  be broken in a few hours, then it is probably too insecure and should  not be used. You can also install tools like <a href="http://www.openwall.com/passwdqc/">pam_passwdqc</a> to check the  strength of passwords.</div>
<div>2) <strong>Secure SSH </strong></div>
<div>Enable  public key authentication for SSH and disable password authentication <a href="http://www.cpanel.net/security/publickeyauth.htm">read more  &gt;&gt;</a></div>
<div>Move SSH access to a different port. People  are looking for port 22 as a possible way to access your servers. Moving  SSH to a different port will add a simple way to deter those without  specific knowledge of your server from easily discovering your SSH port.</div>
<div>You  can modify the port that SSH runs on within /etc/ssh/sshd_config.  Change the line that says #Port 22 to a different port such as: <strong>Port  1653</strong><em>. </em>Make sure to keep your current SSH session open  when testing the new port so you can change back to port 22 if the new  port doesn&#8217;t work.</div>
<div>You should always use SSHv2 only as  SSHv1 is not secure. Make sure to change the line in  /etc/ssh/sshd_config that says #Protocol 2,1 to <strong>Protocol 2</strong>.</div>
<div>You may also wish to set Shell Resource Limits for you  users to prevent applications and scripts from using all up your  resources and taking down your server. You can configure shell resource  limits in <em>/etc/security/limits.conf</em> on most Linux systems.</div>
<div>3)  <strong>Secure Apache</strong></div>
<div>The most readily available  way to access a web server, is of course, the web server application.  It is important to take steps to secure your Apache installation.</div>
<div>One  of the best tools for preventing malicious Apache use is mod_security.  This can be installed in <strong>Addon Modules</strong> in the <strong>cPanel</strong> section of WebHost Manager. You can find information about mod_security  at <a href="http://www.modsecurity.org/">http://www.modsecurity.org/</a>.</div>
<div>When  compiling Apache, you should include suexec to ensure that CGI  applications and scripts run as the user that owns / executes them. This  will help identify where malicious scripts are and who is running them.  It will also enforce permission and environment controls.</div>
<div>We  also recommend compiling Apache + PHP with PHPsuexec. PHPsuexec forces  all PHP scripts to run as the user who owns the script. This means that  you will be able to identify the owner of all PHP scripts running on  your server. If one is malicious, you will be able to find it&#8217;s owner  quickly and resolve the issue. To compile Apache + PHP with PHPsuexec,  select the PHPSuexec option in the Apache Upgrade interface in WHM or  when running /scripts/easyapache from the command line.</div>
<div>You  should enable PHP&#8217;s open_basedir protection. This protection will  prevent users from open files outside of their home directory with PHP.  This can be enabled in <strong>Tweak Security</strong> within WebHost  Manager.</div>
<div>You may also wish to include safe_mode for PHP  5.x and below. Safe_mode ensures that the owner of a PHP script matches  the owner of any files to be operated on. You can enable safe_mode by  changing the safe_mode = line in php.ini to <strong>safe_mode = On</strong>.</div>
<div>4) <strong>Secure your /tmp partition </strong></div>
<div>We  recommend that you use a separate partition for /tmp that is mounted  with<em> nosetuid</em>. Nosetuid will force a process to run with the  privileges of it&#8217;s executor. You may also wish to mount /tmp with <em>noexec</em> after installing cPanel. Check the mount man page for more information.</div>
<div>Also,  Running /scripts/securetmp will mount your /tmp partition to a  temporary file for extra security.</div>
<div>5) <strong>Upgrade  your mail to maildir format</strong></div>
<div>Maildir format adds  extra security and speed to your mail system. Newer installs use maildir  by default. If you&#8217;re running an older copy of cPanel, you&#8217;ll probably  want to upgrade using <em>/scripts/convert2maildir</em>. Make sure to  back up your current mail before converting to maildir, this can be done  within /scripts/convert2maildir. If you see <strong>maildir is enabled </strong>when  running /scripts/convert2maildir, you are already using maildir, and  will not need to convert.</div>
<div>6) <strong>Lock down your  system&#8217;s compilers</strong></div>
<div>Most users do not require the  use of C and C++ compilers. You can use the <strong>Compilers Tweak </strong>within  <strong>Tweak Security</strong> in WebHost Manager to turn off use of  the compilers for all unprivileged users, or to disable them for  specific users only. Many pre-packaged exploits require working  compilers. Disabling compilers will help protect against many exploits.</div>
<div>7)<strong> Turn off unused services and daemons</strong></div>
<div>Any service  or daemon that allows a connection to be established to your server is  away for hackers to gain access. To reduce security risks, you should  disable all services and daemons that are not being used.</div>
<div>For  Daemons on Linux:</div>
<div>Check /etc/xinetd.conf for services you  are not using. For example, cupsd (printing daemon) and nfs/statd  (network file system daemons) are not used on many systems.</div>
<div>For  Services:</div>
<div>Go to the <strong>Service Manager </strong>in  the <strong>Service Configuration</strong> section of WHM and disable  any services that you are not using.</div>
<div> <img src='http://iixmedia.com/blog/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> <strong>Monitor  your system</strong></div>
<div>It is important to be up to date on  what is going on with your system. Make sure that you know when accounts  are being created, what software is being installed, when software  needs updates, etc.</div>
<div>Check your system frequently to  ensure it is functioning in the way you expect. Make sure to check  things like:</div>
<div><strong>netstat -anp</strong> : Look for  programs attached to ports that you did not install / authorize</div>
<div><strong>find  / ( -perm -a+w ) ! -type l &gt;&gt; world_writable.txt</strong> <strong>: </strong>Look at world_writable.txt to see all world writable files and  directories. This will reveal locations where an attacker can store  files on your system. NOTE: Fixing permissions on some PHP/CGI scripts  that are not properly coded will break them.</div>
<div><strong>find /  -nouser -o -nogroup </strong><strong>&gt;&gt; no_owner.txt </strong>:  Look at no_owner for all files that do not have a user or group  associated with them. All files should be owned by a specific user or  group to restrict access to them.</div>
<div><strong>ls /var/log/</strong>:  There are many different logs on your system which can be valuable  resources. Check your system logs, apache logs, mail logs, and other  logs frequently to make sure your system is functioning as expected.</div>
<div>There  are many readily available utilities to monitor your system and to  detect rootkits, backdoors, etc. Here are some commonly available  utilities:</div>
<ul>
<li>Tripwire &#8211; Monitors checksums of files and  reports changes.<br />
http://tripwire.com or  http://sourceforge.net/projects/tripwire</li>
<li>Chrookit &#8211; Scans for  common rootkits, backdoors, etc.<br />
http://www.chkrootkit.org</li>
<li>Rkhunter  &#8211; Scans for common rootkits, backdoors, etc.<br />
http://www.rootkit.nl/projects/rootkit_hunter.html</li>
<li>Logwatch &#8211; Monitors and reports on daily system activity.<br />
http://logwatch.org</li>
</ul>
<div>9)<strong> Enable a Firewall</strong></div>
<div>Installing  a firewall to limit access to your server is useful. Removing all  unused software on your system is more useful. Before you have the  chance to remove all unused services and daemons, or the chance to  figure out which services / daemons are unused, you can enable a  firewall to prevent unwanted access.</div>
<div>The following will  show the ports cPanel and WHM need open to function properly and what  the port is used for:</div>
<div><a href="http://faq.cpanel.net/show.cgi?qa=104689180407630">http://faq.cpanel.net/show.cgi?qa=104689180407630</a></div>
<div>If  you are using APF, see:</div>
<div><a href="http://faq.cpanel.net/show.cgi?qa=108499296901804">http://faq.cpanel.net/show.cgi?qa=108499296901804</a></div>
<div>Please note that these ports are for all services that  can be used by cPanel and WHM, you may or may not be using all of these  services or other services and should adjust your rules accordingly.</div>
<div>Remember  to set a cron job to disable your firewall every 5 minutes when testing  your rules, or you may be locked out of your server.</div>
<div>10)  <strong>Stay up to date</strong></div>
<div>It is important to make  sure that you are running the latest stable versions of the software on  your system to ensure that it has been patched of any security issues  that past versions may be susceptible to. Make sure to keep on top of  updates for:</div>
<ul>
<li>Kernel</li>
<li>cPanel and WHM*</li>
<li>User  Applications (bulletin boards, CMS, blog engines, etc)**</li>
<li>System  Software*</li>
</ul>
<div>*These can be set to automatically update  in WebHost Manager under <strong>Update Config </strong>in the <strong>Server  Configuration</strong> section.</div>
<div>**You can upgrade all  cPAddon installations through <strong>Manage cPAddons</strong> in the <strong>cPanel</strong> section of WebHost Manager.</div>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/10-tips-for-tune-and-secure-your-cpanel-server.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sekarang orderan anda bisa disetup Otomatis dalam 3 langkah saja</title>
		<link>http://iixmedia.com/blog/sekarang-orderan-anda-bisa-disetup-otomatis-dalam-3-langkah-saja.im</link>
		<comments>http://iixmedia.com/blog/sekarang-orderan-anda-bisa-disetup-otomatis-dalam-3-langkah-saja.im#comments</comments>
		<pubDate>Fri, 03 Jul 2009 02:41:22 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Domain]]></category>
		<category><![CDATA[Fantastico]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Member]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[inovation]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=210</guid>
		<description><![CDATA[Bagaimana anda biasanya melakukan tahapan agar hostingan anda aktif?
Hmm, umumnya hosting lain mempunyai beberapa tahapan seperti berikut:

Melakukan order
Melakukan pembayaran
Konfirmasi Pembayaran
Menunggu aktifasi dari hosting bersangkutan
Dan mengecek informasi cPanel lewat email

Nah itu kan biasa&#8230;
Bagaimana kalau iixmedia menawarkan 3 langkah saja untuk anda:

Melakukan order
Melakukan pembayaran
Konfirmasi Pembayaran
Menunggu aktifasi dari hosting bersangkutan
Dan mengecek informasi cPanel lewat email

Artinya, anda cukup:

Melakukan order
Melakukan [...]]]></description>
			<content:encoded><![CDATA[<p>Bagaimana anda biasanya melakukan tahapan agar hostingan anda aktif?</p>
<p>Hmm, umumnya hosting lain mempunyai beberapa tahapan seperti berikut:</p>
<ol>
<li>Melakukan order</li>
<li>Melakukan pembayaran</li>
<li>Konfirmasi Pembayaran</li>
<li>Menunggu aktifasi dari hosting bersangkutan</li>
<li>Dan mengecek informasi cPanel lewat email</li>
</ol>
<p>Nah itu kan biasa&#8230;</p>
<p>Bagaimana kalau iixmedia menawarkan 3 langkah saja untuk anda:</p>
<ol>
<li>Melakukan order</li>
<li>Melakukan pembayaran</li>
<li><span style="text-decoration: line-through;">Konfirmasi Pembayaran</span></li>
<li><span style="text-decoration: line-through;">Menunggu aktifasi dari hosting bersangkutan</span></li>
<li>Dan mengecek informasi cPanel lewat email</li>
</ol>
<p>Artinya, anda cukup:</p>
<ol>
<li>Melakukan order</li>
<li>Melakukan pembayaran</li>
<li>Dan mengecek informasi cPanel lewat email</li>
</ol>
<p>Tanpa perlu konfirmasi kepada kami..</p>
<p>Nah ini baru bukan biasa&#8230; he2</p>
<p>Yap,</p>
<p>Saat ini anda dapat lebih menghemat waktu anda tanpa perlu menunggu kami aktifasi, karena sistem kami akan melakukan pengecekan pembayaran anda langsung ke bank pembayaran, sehingga apabila pembayaran anda terdeteksi maka pesanan anda akan langsung diaktifkan.</p>
<p>Adapun ketentuannya dalam setiap pembayaran anda harus menyertakan keterangan:</p>
<p><code>INVOICE-[nomor-invoice]</code></p>
<p>contoh:</p>
<p><code>INVOICE-2009</code></p>
<p>Gampang bukan <img src='http://iixmedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  jadi sangat menghemat waktu anda dan yang penting lebih simple</p>
<p>Sekali lagi saatnya hosting berinovasi dan tunggu inovasi lain dari kami <img src='http://iixmedia.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&#8212;-<br />
FYI: Saat ini tersedia hanya untuk transfer malalui bank BCA, untuk yang lainnya dalam pengerjaan</p>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/sekarang-orderan-anda-bisa-disetup-otomatis-dalam-3-langkah-saja.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mengoptimalisasi Website Dengan .htaccess</title>
		<link>http://iixmedia.com/blog/mengoptimalisasi-website-dengan-htaccess.im</link>
		<comments>http://iixmedia.com/blog/mengoptimalisasi-website-dengan-htaccess.im#comments</comments>
		<pubDate>Wed, 28 Jan 2009 09:43:39 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Optimize]]></category>
		<category><![CDATA[Tweak]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=84</guid>
		<description><![CDATA[Salah satu hal yang perlu dilakukan dan sering diabaikan oleh para pemilik situs adalah kurangnya optimalisasi sehingga situsnya kurang cepat di akses.
Berikut ini beberapa cara untuk mengoptimalkan website agar makin ringan di akses dengan menggunakan .htaccess.
Silahkan di masukkan line berikut ini pada .htaccess anda:
ExpiresActive On
ExpiresDefault A2592000
ExpiresDefault M2592000
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/png A2592000
]]></description>
			<content:encoded><![CDATA[<p>Salah satu hal yang perlu dilakukan dan sering diabaikan oleh para pemilik situs adalah kurangnya optimalisasi sehingga situsnya kurang cepat di akses.</p>
<p>Berikut ini beberapa cara untuk mengoptimalkan website agar makin ringan di akses dengan menggunakan .htaccess.</p>
<p>Silahkan di masukkan line berikut ini pada .htaccess anda:</p>
<blockquote><p><code>ExpiresActive On<br />
ExpiresDefault A2592000<br />
ExpiresDefault M2592000<br />
ExpiresByType image/gif A2592000<br />
ExpiresByType image/jpeg A2592000<br />
ExpiresByType image/png A2592000</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/mengoptimalisasi-website-dengan-htaccess.im/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installatron VS Fantastico</title>
		<link>http://iixmedia.com/blog/installatron-vs-fantastico-2.im</link>
		<comments>http://iixmedia.com/blog/installatron-vs-fantastico-2.im#comments</comments>
		<pubDate>Mon, 26 Jan 2009 07:08:37 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Fantastico]]></category>
		<category><![CDATA[Installatron]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Instalatron]]></category>
		<category><![CDATA[Installer]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=174</guid>
		<description><![CDATA[Mungkin sebagian anda yang mempunyai hosting sudah hapal dengan Fantastico. Tapi belum mengenal apa itu Installatron.
Installatron mempunyai fungsi yang sama dengan fantastico yaitu membantu untuk menginstallkan skrip anda sehingga tidak perlu lagi untuk melakukan upload dan melakukan konfigurasi awal.
Installatron dulunya merupakan installer gratis yang terbatas, namun sekarang Installatron hadir lebih lengkap dan secara fitur jauh [...]]]></description>
			<content:encoded><![CDATA[<p>Mungkin sebagian anda yang mempunyai hosting sudah hapal dengan Fantastico. Tapi belum mengenal apa itu Installatron.</p>
<p>Installatron mempunyai fungsi yang sama dengan fantastico yaitu membantu untuk menginstallkan skrip anda sehingga tidak perlu lagi untuk melakukan upload dan melakukan konfigurasi awal.</p>
<p>Installatron dulunya merupakan installer gratis yang terbatas, namun sekarang Installatron hadir lebih lengkap dan secara fitur jauh menggungguli Fantastico.<span id="more-174"></span></p>
<p>Berikut ini bisa anda lihat perbandingan fitur antara Installatron dengan Fantastico:<br />
<!--<br />
.features_table {<br />
width: 100%;<br />
}<br />
.features_table h3 {<br />
margin-top: 20px;<br />
}<br />
.features_table hr {<br />
margin: 10px 0;<br />
}<br />
.features_table td {<br />
vertical-align: top;<br />
}<br />
.features_name {<br />
font-weight: bold;<br />
white-space: nowrap;<br />
padding-right: 20px;<br />
text-transform: uppercase;<br />
font-size: 15px;<br />
}<br />
.features_new {<br />
color: #0f0;<br />
text-align: right;<br />
font-size: 20px;<br />
}<br />
.features_screenshot {<br />
padding-right: 20px;<br />
float: left;<br />
}<br />
.features_screenshot a {<br />
border: 2px solid #ddd;<br />
display: block;<br />
}<br />
.features_screenshot a:hover {<br />
border: 2px solid #bfb;<br />
display: block;<br />
}<br />
.features_screenshot img {<br />
width: 100px;<br />
height: 100px;<br />
}<br />
.features_description {<br />
padding-right: 20px;<br />
font-size: 12px;<br />
}<br />
.features_ticks {<br />
white-space: nowrap;<br />
}<br />
.features_minitick {<br />
background: url(http://installatron.com/images/feature_minitick.gif) no-repeat center left;<br />
padding-left: 12px;<br />
}<br />
.features_minicross {<br />
background: url(http://installatron.com/images/feature_minicross.gif) no-repeat center left;<br />
padding-left: 12px;<br />
}<br />
.features_miniunknown {<br />
background: url(http://installatron.com/images/feature_miniunknown.gif) no-repeat center left;<br />
padding-left: 12px;<br />
}<br />
--></p>
<table class="features_table" border="0">
<tbody>
<tr>
<td class="features_name">Compatible with cPanel/WHM, DirectAdmin and Plesk</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron works as a plugin for the <em>cPanel/WHM</em>, <em>DirectAdmin</em>, and <em>Plesk Panel</em> (Linux, FreeBSD, and Windows) web hosting control panels.</p>
<p><strong>FAQ</strong>: <a href="http://installatron.com/faq?s=SX0t-K6FtnIAAGftbNkAAAAA#better">How is Installatron better than Fantastico and Application Vault?</a></td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Hosted By Local Hardware</td>
<p><!-- @row - is 'Hosted By You' better? --></p>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_miniunknown">Fantastico</div>
<div class="features_miniunknown">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron is installed entirely on your server, guaranteeing Installatron will always be snappy and available to your users, even in the event our systems fail.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Compatible with all OS and Third-Party Software Configurations</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_miniunknown">Fantastico</div>
<div class="features_miniunknown">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron works on all web-hosting server configurations, including when other auto-installers are installed.</p>
<p><strong>FAQ</strong>: Yes, Installatron fully and automatically integrates with the <strong><a href="http://www.rvskin.com/">RVSkin</a></strong> cPanel theme.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<p><!--           - TOP-SHELF            --></p>
<tr>
<td colspan="2">
<h3>Top-Shelf Features</h3>
</td>
</tr>
<tr>
<td class="features_name">Automatically Import Installs From Fantastico, Application Vault,<br />
cPAddon Scripts, CPSkins Auto-Installer Pro,<br />
and CPSkins PSA-Installer Pro <span class="features_new">new!</span></td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description"><!--</p>
<div class='features_screenshot'><a href="/images/ss_converter.gif" mce_href="/images/ss_converter.gif"><img src="/images/ss_converter.gif" mce_src="/images/ss_converter.gif"></a></div>
<p>&#8211;>Installatron&#8217;s new converter tool can locate and convert installs from the current versions of <em>Fantastico</em>, <em>Application Vault</em>, <em>cPAddon Scripts</em>, <em>CPSkins Auto-Installer Pro</em>, and <em>CPSkins PSA-Installer Pro</em>.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Open Installer format &#8212; create your own installers!</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minitick">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron&#8217;s <a href="http://installatron.com/sdk?s=SX0t-K6FtnIAAGftbNkAAAAA">Installer SDK</a> allows anyone to create installers and upgraders for any web script.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Fully Brandable</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_theming.gif"><img src="http://installatron.com/images/ss_theming.gif" alt="" width="100" height="100" /></a></div>
<p>Integrate seamlessly with your control panel software by re-branding Installatron under a new name and/or theme.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Fast Installer Updates</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">We are regularly updating Installatron&#8217;s installers as new versions are released, with preference given to critical security releases and the most popular scripts. Any updated installers are automatically downloaded each night by a crontab process. <!-- alt wording: We are regularly updating Installatron's applications as new versions are released, with preference given to critical security releases and the most popular applications. --></td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Install Upgrading, Backup and Restore/Revert</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">As soon as an installer is updated, any existing installs can be upgraded to the new version.  Additionally, installs can be backed up at any time, and even reverted to existing backups.  <!-- alt wording: As soon as an application is updated, any instances can be upgraded to the new version. Additionally, application instances can be backed up at any time, and even reverted to existing backups. --></td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Control Panel Integration API <span class="features_new">new!</span></td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron&#8217;s <a href="http://installatron.com/controlpanelapi/">control panel integration API</a> allows the Installatron auto-installer system to be incorporated into just about any control panel or API.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<p><!--           - LICENSING            --></p>
<tr>
<td colspan="2">
<h3>Licensing</h3>
</td>
</tr>
<tr>
<td class="features_name">Free Single-Domain Edition <span class="features_new">new!</span></td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron is now <strong>free</strong> to use on a single domain (the first domain used by Installatron on your server). This allows you to test, and even use, Installatron on your administration user, or any other user, with complete freedom, and when you&#8217;re ready to share it with your other users you need only purchase a license.</p>
<p>Try it as long as you like!</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Monthly, Annual, and Lifetime Licensing</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron has the licensing option that best suits your needs.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<p><!--           - ADMINISTRATOR            --></p>
<tr>
<td colspan="2">
<h3>Administration</h3>
</td>
</tr>
<tr>
<td class="features_name">Access Groups</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minitick">Fantastico</div>
<div class="features_minitick">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_accessgroups.gif"><img src="http://installatron.com/images/ss_accessgroups.gif" alt="" width="100" height="100" /></a></div>
<p>Access Groups give administrators and resellers the ability to precisely control which users have access to which installers and features.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Fully Functional When Logged-In as Admin/Root or Reseller User</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minitick">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Administrators can log in as a user, through the admin/root or a reseller login, and use Installatron as though they had logged in directly as the user.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Reseller Control Panel</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">The reseller admin tool allows resellers to re-configure the majority of the Installatron&#8217;s settings for their users, include Branding, Install Overview, Message of the Day, Email settings, and Access Groups. The server administrator can optionally disable any of these settings for resellers.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Automatic Updating</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minitick">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron is kept uptodate with a nightly crontab process. Administrators can receive an email summary of the updates.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">User Install Upgrading from Administration</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_overview.gif"><img src="http://installatron.com/images/ss_overview.gif" alt="" width="100" height="100" /></a></div>
<p>Installatron&#8217;s <em>Install Overview</em> tool allows the administrator to forcibly upgrade any install (or multiple installs) on the server, without the need to log in as the user. Resellers are able to upgrade the installs of their users.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Automatic Handling of Incompatible Installers and Versions</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_requirements.gif"><img src="http://installatron.com/images/ss_requirements.gif" alt="" width="100" height="100" /></a></div>
<p>Installatron can automatically disable installers and versions that are incompatible with your server. And you can have Installatron automatically enable/disable, on a <em>per-install</em> level, any overridable settings required by an installer or version (for example, <em>register_globals</em> or <em>safe_mode</em>).</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Localization</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minitick">Fantastico</div>
<div class="features_minitick">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Installatron&#8217;s <a href="http://installatron.com/translator?s=SX0t-K6FtnIAAGftbNkAAAAA">Translator Tool</a> allows users to quickly and easily translate any any part of Installatron to any language. Already there are many highly developed translations.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Message of the Day</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">Administrators and Resellers can add a personalized message to Installatron, and configure where it will appear.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<p><!--           - USER            --></p>
<tr>
<td colspan="2">
<h3>User</h3>
</td>
</tr>
<tr>
<td class="features_name">Install Anywhere</td>
<p><!-- to any Domain, or Sub-Domain/Addon-Domain,<br />
and root or any sub-level directory --></p>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_installsettings.gif"><img src="http://installatron.com/images/ss_installsettings.gif" alt="" width="100" height="100" /></a></div>
<p>Installatron gives the user the ability to install to any location within the HTTP and HTTPS directories of all their domains, sub-domains, and addon-domains. This includes the root-directory and any sub-level directory. Additionally, Installatron can install inside HTTP Password Protected directories.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Install Upgrading</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minitick">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_backups.gif"><img src="http://installatron.com/images/ss_upgrade.gif" alt="" /></a></div>
<p>Users can upgrade their installs as new versions become avaiable.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Install Backup and Restore/Revert</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_backups.gif"><img src="http://installatron.com/images/ss_backups.gif" alt="" width="100" height="100" /></a></div>
<p>Users can backup their installs at any time, and even revert an install to any existing backup.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Upgrade Notifications</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_email.gif"><img src="http://installatron.com/images/ss_email.gif" alt="" width="100" height="100" /></a></div>
<p>Users can receive notification emails when new versions of their installed software becomes available.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Script Browser</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_onescript.gif"><img src="http://installatron.com/images/ss_onescript.gif" alt="" width="100" height="100" /></a></div>
<p>Users can browse the scripts available for installing in Installatron, find information about each script and link to pages like the homepage, documentation, online demos and FAQs, and support forums.</td>
</tr>
<tr>
<td colspan="2">
<hr /></td>
</tr>
<tr>
<td class="features_name">Installed-Scripts Manager Tool</td>
<td class="features_ticks" rowspan="2">
<div class="features_minitick"><strong>Installatron</strong></div>
<div class="features_minicross">Fantastico</div>
<div class="features_minicross">Application Vault</div>
</td>
</tr>
<tr>
<td class="features_description">
<div class="features_screenshot"><a href="http://installatron.com/images/ss_installs.gif"><img src="http://installatron.com/images/ss_installs.gif" alt="" width="100" height="100" /></a></div>
<p>Users can view any install they have in Installatron, link directly to the installed script and its <em>administration</em> and <em>configuration</em> tools, view its files and databases, and view information about the install. Installs can be upgraded, backed up, and uninstalled.</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/installatron-vs-fantastico-2.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Daftar Skrip yang bisa diinstal dengan Installatron</title>
		<link>http://iixmedia.com/blog/daftar-skrip-yang-bisa-diinstal-dengan-installatron.im</link>
		<comments>http://iixmedia.com/blog/daftar-skrip-yang-bisa-diinstal-dengan-installatron.im#comments</comments>
		<pubDate>Sun, 25 Jan 2009 10:57:30 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Installatron]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[inovation]]></category>
		<category><![CDATA[inovasi]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=47</guid>
		<description><![CDATA[&#160;





Aardvark   Topsites
LimeSurvey
phpMyFAQ


Advanced   Guestbook
Magento
PHProjekt


Advanced   Poll
Mambo
phpShop


b2evolution
MediaWiki
Pivot


CaLogic   Calendar
Moodle
PostNuke


Code   Igniter
Noah&#8217;s Classifieds
Power File Manager


Contact   Form
ocPortal
Search   Engine Project


Coppermine
OpenX
Simple   Machines Forum


Coranto
osCommerce
Simple Poll


Crafty   Syntax Live Help
osTicket
SiteBar


CubeCart
PHP-Nuke
Site Recommender


Drupal
phpBB
Soholaunch


Feed On   Feeds
phpCOIN
SugarCRM


Flat   Calendar
phpESP
WebCards


Gallery 1
php File Manager
WordPress


Gallery 2
phpFormGenerator
XMB   Forum


GBook
PHPLinks
Xoops


Help   Center Live
PHPlist



iTron [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<table style="border-collapse: collapse;" border="0" cellspacing="3" cellpadding="3" width="100%">
<col style="width: 122pt;" width="163"></col>
<col style="width: 48pt;" span="2" width="64"></col>
<tbody>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt; width: 122pt;" width="163" height="20"><a href="http://installatron.com/scripts#aardvarkts" target="_blank">Aardvark   Topsites</a></td>
<td class="xl65" style="width: 48pt;" width="64"><a href="http://installatron.com/scripts#limesurvey" target="_blank">LimeSurvey</a></td>
<td class="xl65" style="width: 48pt;" width="64"><a href="http://installatron.com/scripts#phpmyfaq" target="_blank">phpMyFAQ</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#advancedguestbook" target="_blank">Advanced   Guestbook</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#magento" target="_blank">Magento</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phprojekt" target="_blank">PHProjekt</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#advancedpoll" target="_blank">Advanced   Poll</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#mambo" target="_blank">Mambo</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phpshop" target="_blank">phpShop</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#b2evolution" target="_blank">b2evolution</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#mediawiki" target="_blank">MediaWiki</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#pivot" target="_blank">Pivot</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#calogic" target="_blank">CaLogic   Calendar</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#moodle" target="_blank">Moodle</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#postnuke" target="_blank">PostNuke</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#codeigniter" target="_blank">Code   Igniter</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#classifieds" target="_blank">Noah&#8217;s Classifieds</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#ipfilemanager" target="_blank">Power File Manager</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#contactform" target="_blank">Contact   Form</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#ocportal" target="_blank">ocPortal</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#tsep" target="_blank">Search   Engine Project</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#coppermine" target="_blank">Coppermine</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#openads" target="_blank">OpenX</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#smf" target="_blank">Simple   Machines Forum</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#coranto" target="_blank">Coranto</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#oscommerce" target="_blank">osCommerce</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#simplepoll" target="_blank">Simple Poll</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#cslivehelp" target="_blank">Crafty   Syntax Live Help</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#osticket" target="_blank">osTicket</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#sitebar" target="_blank">SiteBar</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#cubecart" target="_blank">CubeCart</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phpnuke" target="_blank">PHP-Nuke</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#siterecommender" target="_blank">Site Recommender</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#drupal" target="_blank">Drupal</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phpbb" target="_blank">phpBB</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#soholaunch" target="_blank">Soholaunch</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#feedonfeeds" target="_blank">Feed On   Feeds</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phpcoin" target="_blank">phpCOIN</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#sugarcrm" target="_blank">SugarCRM</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#flatcalendar" target="_blank">Flat   Calendar</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phpesp" target="_blank">phpESP</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#webcards" target="_blank">WebCards</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#gallery" target="_blank">Gallery 1</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phpfilemanager" target="_blank">php File Manager</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#wordpress" target="_blank">WordPress</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#gallerytwo" target="_blank">Gallery 2</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phpformgenerator" target="_blank">phpFormGenerator</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#xmb" target="_blank">XMB   Forum</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#gbook" target="_blank">GBook</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phplinks" target="_blank">PHPLinks</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#xoops" target="_blank">Xoops</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#helpcenterlive" target="_blank">Help   Center Live</a></td>
<td class="xl65"><a href="http://installatron.com/scripts#phplist" target="_blank">PHPlist</a></td>
<td></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#itronclock" target="_blank">iTron Clock</a></td>
<td class="xl65" colspan="2"><a href="http://installatron.com/scripts#phpmychat" target="_blank">phpMyChat</a></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl65" style="height: 15pt;" height="20"><a href="http://installatron.com/scripts#joomla" target="_blank">Joomla</a></td>
<td class="xl65" colspan="2"><a href="http://installatron.com/scripts#phpmycounter" target="_blank">phpMyCounter</a></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/daftar-skrip-yang-bisa-diinstal-dengan-installatron.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menginstall skrip dengan menggunakan Installatron</title>
		<link>http://iixmedia.com/blog/menginstall-skrip-dengan-menggunakan-installatron.im</link>
		<comments>http://iixmedia.com/blog/menginstall-skrip-dengan-menggunakan-installatron.im#comments</comments>
		<pubDate>Sun, 25 Jan 2009 10:41:59 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Installatron]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[inovation]]></category>
		<category><![CDATA[inovasi]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=44</guid>
		<description><![CDATA[Menginstall script yang ada pada instalatron tidaklah susah. Setelah mempelajari bagaimana cara mengakses instalatron dan juga mengenal navigasi intsalatron maka akan menjadi lebih mudah untuk selanjutnya.
Yang perlu dilakukan untuk menginstall script dengan menggunakan instalatron adalah:

Temukan menu New Install atau scripts pada navigasi (bagian atas) Instalatron. Klik gambar untuk memperbesar:
Setelah anda klik maka anda akan dihantar [...]]]></description>
			<content:encoded><![CDATA[<p>Menginstall script yang ada pada instalatron tidaklah susah. Setelah mempelajari bagaimana cara mengakses instalatron dan juga mengenal navigasi intsalatron maka akan menjadi lebih mudah untuk selanjutnya.</p>
<p>Yang perlu dilakukan untuk menginstall script dengan menggunakan instalatron adalah:</p>
<ol>
<li>Temukan menu New Install atau scripts pada navigasi (bagian atas) Instalatron. Klik gambar untuk memperbesar:<br /><a title="New Install" rel="lightbox[install]" href="http://iixmedia.com/member/images/tutorial/installatron/installL.jpg"><img style="margin: 5px;" title="New Install" src="http://iixmedia.com/member/images/tutorial/installatron/installS.jpg" alt="New Install" width="353" height="70" /></a></li>
<li>Setelah anda klik maka anda akan dihantar ke halaman dimana anda bisa memilih skrip yang disediakan Installatron. Untuk list lengkap bisa anda temukan pada post blog &#8220;Daftar Skrip Instalatron&#8221;.</li>
<li>Untuk menginstall salah satu skrip anda tinggal mengklik salah satu skrip pada list. Klik gambar untuk memperbesar:<br /><a title="List Scripts" rel="lightbox[install]" href="http://iixmedia.com/member/images/tutorial/installatron/scriptL.jpg"><img style="margin: 5px;" title="List Scripts" src="http://iixmedia.com/member/images/tutorial/installatron/scriptS.jpg" alt="List Scripts" width="296" height="99" /></a></li>
<li>Setelah anda klik salah satu skrip maka akan muncul halaman instalasi.<br />Pada halaman ini anda dapat membaca beberapa informasi, misalkan tentang atau penjelasan dari skrip yang akan diisntall, yang membuat, dan juga alamat situs skrip tersebut.<br />Salah satu yang unik dari instalatron ini adalah kita dapat memilih beberapa versi dari skrip yang akan diisntall sehingga ini tentu akan berguna jika anda ingin mencoba skrip dengan versi dahulu. Klik gambar untuk memperbesar:<br /><a title="Script Logs" rel="lightbox[install]" href="http://iixmedia.com/member/images/tutorial/installatron/sLogL.jpg"><img style="margin: 5px;" title="Script Logs" src="http://iixmedia.com/member/images/tutorial/installatron/sLogS.jpg" alt="Script Logs" width="278" height="93" /></a></li>
<li>Jika memang anda sudah siap melakukan installasi anda tinggal klik tombol install. Klik untuk memperbesar gambar:<br /><a title="Install Script" rel="lightbox[install]" href="http://iixmedia.com/member/images/tutorial/installatron/iScriptL.jpg"><img style="margin: 5px;" title="Install Script" src="http://iixmedia.com/member/images/tutorial/installatron/iScriptS.jpg" alt="Install Script" width="144" height="76" /></a></li>
<li>Maka pada halaman berikut anda akan diminta memilih versi dari skrip. Secara default pilihan instalatron ada pada skrip keluaran terbaru. Jadi jika anda ingin memakai skrip baru anda tidak perlu untuk merubah versinya. Perhatikan gambar berikut(klik untuk memperbesar):<br /><a title="Choose Version" rel="lightbox[install]" href="http://iixmedia.com/member/images/tutorial/installatron/versiL.jpg"><img style="margin: 5px;" title="Choose Version" src="http://iixmedia.com/member/images/tutorial/installatron/versiS.jpg" alt="Choose Version" width="390" height="100" /></a></li>
<li>Pada bagian bawah anda akan diminta untuk menyetujui agreement dari skrip yang akan diisintall tersebut. Anda tinggal mencentangnya. Perhatikan gambar (klik untuk memperbesarnya):<br /><a title="GPL" rel="lightbox[install]" href="http://iixmedia.com/member/images/tutorial/installatron/gplL.jpg"><img style="margin: 5px;" title="GPL" src="http://iixmedia.com/member/images/tutorial/installatron/gplS.jpg" alt="GPL" width="335" height="110" /></a></li>
<li>Setelah menyetujui anda tinggal klik tombol Continue, dan berikutnya anda akan dihantar ke halaman konfigurasi. Perhatikan gambar untuk lebih detail, klik untuk memperbesar:<br /><a title="Configuration" rel="lightbox[install]" href="http://iixmedia.com/member/images/tutorial/installatron/confL.jpg"><img style="margin: 5px;" title="Configuration" src="http://iixmedia.com/member/images/tutorial/installatron/confS.jpg" alt="Configuration" width="324" height="111" /></a><br />Adapun yang perlu diketahui pada halaman konfigurasi adalah:
<ol>
<li>Select a domain &#8211; ini berfungsi untuk menentukan akan diisntal di domain atau subdomain manakah skrip tersebut</li>
<li>Enter a path &#8211; memberitahukan di folder manakah akan diisntall skrip ada domain atau subdomain yang sudah dipilih. Tinggalkan dalam keadaan kosong jika anda ingin menginstall langsung dibawah subdomain atau domain.</li>
<li>Database management (ditinggalkan saja).</li>
</ol>
</li>
<li>Setelah selesai anda tinggal mengklik tombol Continue dan ikuti instruski tergantung masing-masing skrip.</li>
</ol>
<p>Selamat mencoba.</p>
<p><span style="font-size: xx-small;">Ditulis oleh: Ahlul Faradish Resha (CEO IIXMEDIA)<br />http://ahlul.web.id<br />[Note: Anda diizinkan untuk menyalin semua dari tutorial ini asalkan tidak lupa untuk menuliskan sumbernya]</span></p>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/menginstall-skrip-dengan-menggunakan-installatron.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mengenal Navigasi pada Installatron</title>
		<link>http://iixmedia.com/blog/mengenal-navigasi-pada-installatron.im</link>
		<comments>http://iixmedia.com/blog/mengenal-navigasi-pada-installatron.im#comments</comments>
		<pubDate>Sat, 24 Jan 2009 14:40:21 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Installatron]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=32</guid>
		<description><![CDATA[Pada tutorial sebelumnya kita sudah mengetahui bagaimana cara mengakses Installatron.
Pada tutorial kali ini kita akan mempelajari tentang fungsi-fungsi dari navigasi yang ada pada halaman Installatron. Silahkan anda perhatikan gambar dibawah ini, dan klik pada gambar untuk melihat gambar yang lebih besar.

Bisa anda perhatikan pada gambar terdapat pada bagian atas beberapa link atau navigasi berikut:

return to [...]]]></description>
			<content:encoded><![CDATA[<p>Pada <a title="Menggunakan Script Installer (Installatron)" href="http://iixmedia.com/member/knowledgebase/4/Menggunakan_Script_Installer_Installatron.html">tutorial sebelumnya</a> kita sudah mengetahui bagaimana cara mengakses Installatron.</p>
<p>Pada tutorial kali ini kita akan mempelajari tentang fungsi-fungsi dari navigasi yang ada pada halaman Installatron. Silahkan anda perhatikan gambar dibawah ini, dan klik pada gambar untuk melihat gambar yang lebih besar.</p>
<p><a title="Navigasi Installatron" rel="lightbox" href="http://iixmedia.com/member/images/tutorial/installatron/navL.jpg"><img style="margin: 5px;" title="Navigasi Installatron" src="http://iixmedia.com/member/images/tutorial/installatron/navS.jpg" alt="Navigasi Installatron" width="346" height="96" /></a></p>
<p>Bisa anda perhatikan pada gambar terdapat pada bagian atas beberapa link atau navigasi berikut:</p>
<ul>
<li>return to cpanel &#8211; berfungsi untuk kembali kehalaman cPanel</li>
<li>switch to embedded &#8211; berfungsi agar installatron ditampilkan di dalam bingkai cPanel</li>
<li>scripts &#8211; berfungsi untuk menghantarkan kita ke halaman instalasi skrip</li>
<li>administration &#8211; berfungsi untuk mengelola installatron (hanya akan muncul jika account adalah reseller)</li>
<li>help &#8211; akan menghantarkan anda ke halaman dokumentasi dan bantuan</li>
</ul>
<p>Pada bagian bawah dari navigasi atas anda akan menemukan navigasi berikut:</p>
<ul>
<li>Intro &#8211; ini hanya halaman depan saja</li>
<li>New Install &#8211; sama dengan navigasi sebelumnya (scripts), berfungsi untuk mengakses halaman instalasi skrip</li>
<li>Backups &#8211; melakukan backup terhadap skrip yang telah diinstall</li>
<li>Intalled Scripts &#8211; mengedit / menghapus skrip yang telah terinstall</li>
</ul>
<p><span style="font-size: xx-small;">Ditulis oleh: Ahlul Faradish Resha (CEO IIXMEDIA)<br />http://ahlul.web.id<br />[Note: Anda diizinkan untuk menyalin semua dari tutorial ini asalkan tidak lupa untuk menuliskan sumbernya]</span></p>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/mengenal-navigasi-pada-installatron.im/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Menggunakan Script Installer (Installatron)</title>
		<link>http://iixmedia.com/blog/menggunakan-installatron.im</link>
		<comments>http://iixmedia.com/blog/menggunakan-installatron.im#comments</comments>
		<pubDate>Sat, 24 Jan 2009 14:38:06 +0000</pubDate>
		<dc:creator>Webmaster</dc:creator>
				<category><![CDATA[Installatron]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://iixmedia.com/blog/?p=29</guid>
		<description><![CDATA[Installatron adalah salah satu script installer atau software yang dibuat khusus untuk menginstalkan script dengan mudah di cPanel Hosting.
Installatron mempunyai fasilitas yang lebih banyak ketimbang installer lainnya. Feature yang dimiliki oleh installatron bisa dilihat di halaman situs installatron &#8211; http://installatron.com/features.
Untuk mengakses Instalatron tidaklah susah, karena anda akan dipandu dengan berbagai keterangan dan design yang juga [...]]]></description>
			<content:encoded><![CDATA[<p>Installatron adalah salah satu script installer atau software yang dibuat khusus untuk menginstalkan script dengan mudah di cPanel Hosting.</p>
<p>Installatron mempunyai fasilitas yang lebih banyak ketimbang installer lainnya. Feature yang dimiliki oleh installatron bisa dilihat di halaman situs installatron &#8211; <a title="Fitur Installatron" href="http://installatron.com/features">http://installatron.com/features</a>.</p>
<p>Untuk mengakses Instalatron tidaklah susah, karena anda akan dipandu dengan berbagai keterangan dan design yang juga rapi dari penyedia installatron. Jika kita jabarkan perpoint bisa seperti berikut ini:</p>
<ol>
<li>Akseslah cPanel anda.</li>
<li>Temukan icon Installatron pada Box &#8220;Sofware / Services&#8221;. <br /><a title="Icon Installatron" rel="lightbox[installatron]" href="http://iixmedia.com/member/images/tutorial/installatron/iconInstallatron.jpg"><img style="margin: 5px;" title="Icon Installatron" src="http://iixmedia.com/member/images/tutorial/installatron/iconI.jpg" alt="Icon Installatron" width="83" height="82" /></a></li>
<li>Atau anda juga bisa ketikkan Installatron pada box &#8220;Find&#8221; pada pojok kiri atas cPanel anda.<br /><a title="Kotak Find" rel="lightbox[installatron]" href="http://iixmedia.com/member/images/tutorial/installatron/findL.jpg"><img style="margin: 5px;" title="Kotak Find" src="http://iixmedia.com/member/images/tutorial/installatron/findS.jpg" alt="Berfungsi untuk menemukan sesuatu di navigasi cPanel" width="234" height="62" /></a></li>
<li>Klik pada icon Installatron untuk mengakses Installatron, maka anda akan dihantarkan ke halaman installatron.</li>
</ol>
<p>Selanjutnya anda akan berada pada jendela instalatron dan siap menggunakannya untuk menginstall skrip kesayangan anda.</p>
<p><span style="font-size: xx-small;"><br /></span></p>
<p><span style="font-size: xx-small;">Ditulis oleh: Ahlul Faradish Resha (CEO IIXMEDIA)<br />http://ahlul.web.id<br />[Note: Anda diizinkan untuk menyalin semua dari tutorial ini asalkan tidak lupa untuk menuliskan sumbernya]</span></p>
]]></content:encoded>
			<wfw:commentRss>http://iixmedia.com/blog/menggunakan-installatron.im/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

