<?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>Personal Web Tech Development &#187; Programming</title>
	<atom:link href="http://suraja.com/website/category/website-development/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://suraja.com</link>
	<description>My other personal approach on tech and website development</description>
	<lastBuildDate>Tue, 17 Jan 2012 20:23:50 +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>Free Web Server Using Linux and Apache Ebook</title>
		<link>http://suraja.com/website/website-development/free-web-server-using-linux-and-apache-ebook.html</link>
		<comments>http://suraja.com/website/website-development/free-web-server-using-linux-and-apache-ebook.html#comments</comments>
		<pubDate>Tue, 12 May 2009 23:17:33 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://suraja.com/website/uncategorized/free-web-server-using-linux-and-apache-ebook.html</guid>
		<description><![CDATA[Free Web Server Using Linux &#038; Apache Ebook is everything you need to learn to build and maintain your Linux servers, and to deploy Web applications to them. This is a Free 191 Page Preview. Whether you&#8217;re planning on running Linux at home, or on a leased Web Server, this book will walk you step-by-step [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://suraja.com/wp-content/free-server-ebook.jpg' alt='Free webserver ebook' /><strong>Free Web Server Using Linux &#038; Apache Ebook is everything you need to learn to build and maintain your Linux servers, and to deploy Web applications to them. This is a Free 191 Page Preview.</strong></p>
<p>Whether you&#8217;re planning on running Linux at home, or on a leased Web Server, this book will walk you step-by-step through all of the common administration tasks, from managing traffic reporting to log-file rotation. This guide even includes step-by-step instructions on installing Linux (Fedora 4), Apache 2.0, PHP 5 and MySQL 4.1 on a home or office development server, so you can test all of your applications before rolling them out.<span id="more-270"></span></p>
<p>Feel free to get this <a href="http://www.tradepub.com/free/w_sitb05/prgm.cgi" rel="nofollow">tutorial ebook</a>, offer limited</p>
]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/website-development/free-web-server-using-linux-and-apache-ebook.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql database forum error: max_user_connections</title>
		<link>http://suraja.com/website/website-development/mysql-database-forum-error-max_user_connections.html</link>
		<comments>http://suraja.com/website/website-development/mysql-database-forum-error-max_user_connections.html#comments</comments>
		<pubDate>Tue, 25 Nov 2008 23:40:58 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Working Around]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://suraja.com/website/website-development/mysql-database-forum-error-max_user_connections.html</guid>
		<description><![CDATA[Sometimes I got this database error message from one of my website forum : &#8220;mysql_connect() [function.mysql-connect]: User mydatabase already has more than &#8216;max_user_connections&#8217; active connections&#8221; The error of max user connections that occurred happens when an account on the server is opening to many connections to mysql on the server. This happens sometimes with poorly [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://suraja.com/wp-content/mysql-error.jpg' alt='Picture of error mysql database error image' /><strong>Sometimes I got this database error message from one of my website forum : &#8220;mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User mydatabase already has more than &#8216;max_user_connections&#8217; active connections&#8221;</strong></p>
<p>The error of max user connections that occurred happens when an account on the server is opening to many connections to mysql on the server. This happens sometimes with poorly written code that leaves connections open and keeps opening more connections. When one account does this it affects the entire mysql server resulting in the error you received and is only fixed when we find the issue and stop those lingering connections. Please note the same at your end.</p>
<p><strong>It seems that the forum script is generating too many mysql connections at a time.</strong> <span id="more-210"></span>I would like to suggest you a couple of things which you should always keep in mind.</p>
<p>1. Check that your PHP code and any other tools always close connections &#8211; many database servers require this, and it is good practice.</p>
<p>2. Use mysql_connect() instead of mysql_pconnect() unless you have a good reason to do so.</p>
<p>3. Always put a mysql_close() in the scripts you are using.</p>
<p>Hope it helps!</p>
<h4>Incoming search:</h4> <a href="http://suraja.com/website/website-development/mysql-database-forum-error-max_user_connections.html" title="mysql connection max_user_connections">mysql connection max_user_connections</a>]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/website-development/mysql-database-forum-error-max_user_connections.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change .htm/.html into PHP or ASP pages</title>
		<link>http://suraja.com/website/website-development/how-to-change-htmhtml-into-php-or-asp-pages.html</link>
		<comments>http://suraja.com/website/website-development/how-to-change-htmhtml-into-php-or-asp-pages.html#comments</comments>
		<pubDate>Sun, 20 Jul 2008 17:37:20 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[asp]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://suraja.com/website/website-development/how-to-change-htmhtml-into-php-or-asp-pages.html</guid>
		<description><![CDATA[If you have a website with lots of .htm or .html pages indexed on Google (or other search engine) and they have many backlinks, I&#8217;m sure you won&#8217;t let them deleted just because you want to serve dynamic content and change their extension to PHP or ASP pages. That&#8217;s enough reason why you have to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>If you have a website with lots of .htm or .html pages indexed on Google (or other search engine) and they have many backlinks, I&#8217;m sure you won&#8217;t let them deleted just because you want to serve dynamic content and change their extension to PHP or ASP pages.</strong> That&#8217;s enough reason why you have to read the tutor below on how to interpret .htm/.html into PHP or ASP pages in order to make them could serve dynamic content.<br />
That could be done without changing the extention on the Apache Web Server for PHP or IIS Web Server for ASP.</p>
<p><strong>Change .htm/.html to PHP pages</strong><br />
You could tell your Apache Web Server to interpret your .htm/.html files as .php files and serve dynamic content. Just add the following code:<br />
<em>AddType application/x-httpd.php .html .htm</em></p>
<p>On some Apache servers, they might require the following code line:<span id="more-150"></span><br />
<em>AddHandler x-httpd.php .html </em></p>
<p>or<br />
<em>addtype application/x-httpd-php .html<br />
AddHandler x-httpd-php .html</em></p>
<p>Now test your pages by running this simple php code between < body> < /body> of your html pages:<br />
<em>< ?php echo 'Hello PHP World!'; ? ></em></p>
<p>If you open the page in a browser and it displays < ?php echo 'Hello PHP World!'; ? > in the page, means that something wrong with the code, try to check the installation code again. If it only displays Hello PHP World! means that you&#8217;ve done a great job!</p>
<p><strong>Change .htm/.html to ASP pages</strong><br />
This is how to interpret a .htm/.html file as a .ASP file on your IIS Web Server.<br />
Open IIS, then open the website that you would like to change.<br />
Select Properties and on the Virtual Directory Tab, make sure you have an Application with Execute Permissions: &#8220;Script Only&#8221; or &#8220;Scripts and Executables&#8221;<br />
Then click on the Configuration Button</p>
<p><img src='http://suraja.com/wp-content/html-to-asp.jpg' alt='Picture of change html to asp' /></p>
<p><img src='http://suraja.com/wp-content/htm-to-asp.jpg' alt='Image of change htm to asp picture' /></p>
<p>Copy the Path from the .asp Application Mapping, and click Add.</p>
<p><img src='http://suraja.com/wp-content/html-asp-iis.jpg' alt='Picture of HTML to ASP on IIS' /></p>
<p>Enter the Executable Path and extension (.htm), and click OK<br />
Then you might have to restart the website.</p>
<p>Repeat the process for .html extentions</p>
<p>Your .htm pages will now be dynamic and able to interpret ASP Commands. You can validate that it is working by adding a simple script to the Body of your .htm page:</p>
<p><% Response.Write ("Hello ASP World") %></p>
<p>If you open the page in a browser and it displays <?php echo 'Hello ASP World!'; ?> in the page it didn&#8217;t parse the page correctly. If it only displays Hello ASP World! it parsed the page correctly.<br />
If you are on a shared hosting server you will have to get your hosting company to do this for you. If they can&#8217;t or won&#8217;t you may have to get a Dedicated or Virtual Dedicated server.</p>
]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/website-development/how-to-change-htmhtml-into-php-or-asp-pages.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Choose Free Hosting PHP</title>
		<link>http://suraja.com/website/website-development/how-to-choose-free-hosting-php.html</link>
		<comments>http://suraja.com/website/website-development/how-to-choose-free-hosting-php.html#comments</comments>
		<pubDate>Mon, 30 Jun 2008 15:31:40 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[webhosting]]></category>

		<guid isPermaLink="false">http://suraja.com/website/website-development/how-to-choose-free-hosting-php.html</guid>
		<description><![CDATA[It’s great if you could find a good list of Free Hosting PHP, or any cheap hosting php. There are many directory list of free hosting PHP on Google. There are some factors that you should consider on choosing free hosting php: Adverts Yes, it’s not free anyway, they need money to run the server, [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://suraja.com/website/website-development/how-to-choose-free-hosting-php.html/picture-of-free-hosting-php/' rel='attachment wp-att-73' title='Picture of Free Hosting PHP'><img src='http://suraja.com/wp-content/free-hosting.jpg' alt='Picture of Free Hosting PHP' /></a>It’s great if you could find a good list of Free Hosting PHP, or any cheap hosting php. There are many directory list of free hosting PHP on Google.</p>
<p><strong>There are some factors that you should consider on choosing free hosting php:</strong></p>
<p><strong>Adverts</strong><br />
Yes, it’s not free anyway, they need money to run the server, that why they will put their adverts on your website that hosted on their free hosting.<br />
Most free hosting put banners, and some use text link ads. Choose which that could fit to your layout.<span id="more-72"></span></p>
<p><strong>PHP Version</strong><br />
Check their PHP Version, this is important if you want to do php coding script. Learn about this PHP Version at php.net.</p>
<p><strong>Mysql Database Version</strong><br />
This is another importent thing to check. Beeter if they already use MySQL 4.1.x version.</p>
<p><strong>allow_url_fopen</strong><br />
Check if they enable allow_url_fopen on their free hosting php. This option available since PHP 4.0.4 version. This option enables the URL-aware fopen wrappers that enable accessing URL object like files. It would normally allow a programmer to open, include or otherwise use a remote file using a URL rather than a local file path, related to security reasons.</p>
<p><strong>safe_mode</strong><br />
Check this safe_mode, on/off. This setting is primarily intended to provide file access limits to prevent users from accessing files that do no belong to them. It is an attempt to solve the shared-server security problem.</p>
<p><strong>max_execution_time</strong><br />
max_execution_time sets the maximum time in seconds a script is allowed to run before it is terminated by the parser. This helps prevent poorly written scripts from tying up the server. The default setting is 30, if this is reached, the script returns a fatal error.</p>
<p><strong>GD Support</strong><br />
GD is a graphics library. GD is a package that can be used through PHP if it’s compiled with GD-support. Depending on what version of PHP you have on your free hosting php, you might have different support for functions in GD.</p>
<p><strong>Upload</strong><br />
You will need upload tools to upload your file to your free hosting php. Mostly use 2 kinds of upload tools: FTP and Web, but some only allow FTP.</p>
<p>Happy searching!</p>
]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/website-development/how-to-choose-free-hosting-php.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to avoid WordPress Remote SQL Injection</title>
		<link>http://suraja.com/website/website-development/how-to-avoid-wordpress-remote-sql-injection.html</link>
		<comments>http://suraja.com/website/website-development/how-to-avoid-wordpress-remote-sql-injection.html#comments</comments>
		<pubDate>Thu, 26 Jun 2008 10:18:00 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[vulnerable]]></category>

		<guid isPermaLink="false">http://suraja.com/website/website-development/how-to-avoid-wordpress-remote-sql-injection.html</guid>
		<description><![CDATA[WordPress Remote SQL Injection could be a pre-disaster for your WordPress blog, it has been discovered a SQL Injection vulnerability that allows an attacker to retrieve remotely any user credentials from a vulnerable site, this bug is caused because of early database escaping and the lack of validation in query string like parameters. Wordpress Remote [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://suraja.com/website/website-development/how-to-avoid-wordpress-remote-sql-injection.html/picture-of-wordpress-remote-sql-injection/' rel='attachment wp-att-138' title='Picture of WordPress Remote SQL Injection'><img src='http://suraja.com/wp-content/wordpress-sql-injection.jpg' alt='Picture of WordPress Remote SQL Injection' /></a><strong>WordPress Remote SQL Injection could be a pre-disaster for your WordPress blog, it has been discovered a SQL Injection vulnerability that allows an attacker to retrieve remotely any user credentials from a vulnerable site, this bug is caused because of early database escaping and the lack of validation in query string like parameters.</strong><br />
Wordpress Remote SQL Injection most likely not a destructive job for your WordPress blog, they just inject a redirect or iframe to their own page/website. This is a blackhat SEO injection technique that could hurt your website SEO campaign.</p>
<p>To prepare yourself, read some tips below:<br />
- Always check your AWSTATS to determine your suspicious visitor activity.<br />
- Backup your WordPress files and database weekly incase you need to restore it if needed<br />
- Always update your WordPress instalation to the latest stable version. On the main dashboard, you&#8217;ll always see new release information.<span id="more-137"></span></p>
<p>If you have to keep to use an old WordPress version, make sure that you hide your WordPress version. A lot of attackers and automated tools will try and determine software versions before launching exploit code. Removing your WordPress blog version may discourage some attackers and certainly will mitigate virus and worm programs that rely on software versions.<br />
Please note that hiding your WordPress version may break any plugins you have which are version dependant.</p>
<p><strong>Then how to avoid WordPress Remote SQL Injection?</strong><br />
I found this WordPress Security Scan plugin that will scan your WordPress installation for security vulnerabilities and suggests corrective actions.Such<br />
- passwords<br />
- file permissions<br />
- database security<br />
- version hiding<br />
- WordPress admin protection/security<br />
- removes WP Generator META tag from core code<br />
You can download this useful plugin <a href="http://downloads.wordpress.org/plugin/wp-security-scan.2.3.zip" target="_blank">here</a></p>
<p>And to complete your mission to fight the WordPress Remote SQL Injection, set the file permission (chmod) to 444 (r–r–r–) or read-only to these WordPress files:<br />
- index.php<br />
- wp-config.php<br />
- wp-setting.php<br />
- All your themes file located on wp-content/themes<br />
Note: Actually you can set all files on your root WordPress directory to 444 (exclude the sitemap or any 666 needed files)</p>
<p>This last tips completely rocks!</p>
<p>Let me how it works for you and say something to fight the WordPress SQL Injection!</p>
<h4>Incoming search:</h4> <a href="http://suraja.com/website/website-development/how-to-avoid-wordpress-remote-sql-injection.html" title="444 avoids sql injections">444 avoids sql injections</a>]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/website-development/how-to-avoid-wordpress-remote-sql-injection.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Make a Fake Google PageRank</title>
		<link>http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html</link>
		<comments>http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html#comments</comments>
		<pubDate>Sat, 31 May 2008 07:40:40 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Domain Hosting]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Website Traffic]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[page rank]]></category>
		<category><![CDATA[pagerank]]></category>
		<category><![CDATA[PR]]></category>

		<guid isPermaLink="false">http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html</guid>
		<description><![CDATA[Many webmasters still focus on websites with a high PageRank when it comes to link building and website promotion. They buy PageRank for their site in many ways, such buy links, exchange links, or just by a domain with good Pagerank. Recently, a new technique of the fake PageRank number of a web site has [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html/picture-of-fake-google-pagerank/' rel='attachment wp-att-119' title='Picture of fake Google Pagerank'><img src='http://suraja.com/wp-content/fake-pagerank.jpg' alt='Picture of fake Google Pagerank' /></a>Many webmasters still focus on websites with a high PageRank when it comes to link building and website promotion. They buy PageRank for their site in many ways, such buy links, exchange links, or just by a domain with good Pagerank.<br />
<strong>Recently, a new technique of the fake PageRank number of a web site has become popular. Fake Google Pagerank is done by redirecting traffic from googlebot to another site, preferably one with a high PR.</strong> So the green bar that shows the PageRank goes up but your pages don&#8217;t get indexed or get a single visitor from the engine. This technique called cloaking.<br />
Actually, this fake PageRank technique prevents your web site from showing up in Google because Google thinks that the content of the redirected web site is the content of your site, and doesn&#8217;t help your web site rankings or SEO purpose at all. The only effect on your web site is that the green PageRank bar will be longer.</p>
<p><strong>The fake Google Pagerank technique is 301 Redirect the domain you have with .htaccess, PHP header (anything server side) to a page with the desired page rank.</strong> It’s better to redirect to something relevant. For example, if you are doing a proxy site, redirect to another proxy site that have good valid PageRank.<br />
Here is the php the code to use:<span id="more-118"></span></p>
<p><strong>&lt;?php<br />
header(&#8221;HTTP/1.1 301 Moved Permanently&#8221;);<br />
header(&#8221;location:http://otherproxysite.com&#8221;);<br />
exit;<br />
?&gt; </strong></p>
<p>Now make a link to your domain from your other website that indexed well in Google engine and regularly visited by Google crawler bot. Then wait for next Google PageRank update, usually every three months they update it. Your proxy domain pagerank will have the same PageRank with the otherproxysite dot com!</p>
<p>Next step is using the cloaking code to make your proxy domain visitor not redirected to otherproxy.com. Here&#8217;s the code:</p>
<p><strong>&lt;?php<br />
if(ip is in list) (list of google IPs){<br />
header(&#8221;HTTP/1.1 301 Moved Permanently&#8221;);<br />
header(&#8221;location:http://otherproxysite.com&#8221;);<br />
exit;}<br />
else<br />
{<br />
header(&#8217;Content-Type: text/html; charset=ISO-8859-1&#8242;);<br />
//Show your proxy domain<br />
};<br />
?&gt; </strong></p>
<p><strong>Use it at your own risk, I provide the code only for education purpose.</strong> If you are a buyer, beware of this fake Pagerank technique from your seller. Check the valid Google Pagerank <a href="http://checkpagerank.net/" target="_blank">here</a> or <a href="http://status.web.id" target="_blank">here</a> (for bulk).<br />
If you need to buy a domain with valid PageRank, buy from <a href="http://Expired.LuxDomain.com" target="_blank">Expired.LuxDomain</a>, they have daily update of expired domain that have valid PR and start <a href="http://suraja.com/website/featured/how-to-make-money-from-expired-domain.html">make money</a> from it.</p>
<h4>Incoming search:</h4> <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to make fake pr">how to make fake pr</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to make fake pagerank">how to make fake pagerank</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to create fake pagerank">how to create fake pagerank</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="make fake pagerank">make fake pagerank</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to make a fake google pagerank">how to make a fake google pagerank</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to create fake pr of domain">how to create fake pr of domain</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to create a fake PR">how to create a fake PR</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to make a fake pr">how to make a fake pr</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="make a fake google page">make a fake google page</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="make fake google page">make fake google page</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="create fake pagerank">create fake pagerank</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="make a fake internet page and reroute traffic to it">make a fake internet page and reroute traffic to it</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="script create fake pr">script create fake pr</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to make a false pr">how to make a false pr</a>, <a href="http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html" title="how to make fake google pr">how to make fake google pr</a>]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/website-development/how-to-make-a-fake-google-pagerank.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Satisfaction with LAMP and Web Open Source</title>
		<link>http://suraja.com/website/internet-stuff/satisfaction-with-lamp-and-web-open-source.html</link>
		<comments>http://suraja.com/website/internet-stuff/satisfaction-with-lamp-and-web-open-source.html#comments</comments>
		<pubDate>Tue, 20 May 2008 22:50:23 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Internet Stuff]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://suraja.com/website/internet-stuff/satisfaction-with-lamp-and-web-open-source.html</guid>
		<description><![CDATA[Many computer users complain about Microsoft products, even about the mostly used product of Microsoft: WINDOWS. Familiar complaints include, “they don’t let the user alter his own settings,” and “they don’t leave us free to do whatever we want.” We see the same concept in the for-sale templates and in the servers which are built [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://suraja.com/website/internet-stuff/satisfaction-with-lamp-and-web-open-source.html/picture-of-web-open-source/' rel='attachment wp-att-59' title='Picture of Web Open source'><img src='http://suraja.com/wp-content/opensource-web.jpg' alt='Picture of Web Open source' /></a><strong>Many computer users complain about Microsoft products, even about the mostly used product of Microsoft: WINDOWS.</strong> Familiar complaints include, “they don’t let the user alter his own settings,” and “they don’t leave us free to do whatever we want.” We see the same concept in the for-sale templates and in the servers which are built for lowest user input (like Microsoft Servers, ASP, etc.). The executable binary &#8211; .exe &#8211; is all you get from closed-source proprietary sources.</p>
<p><strong>Don’t you think the user deserves to see the source files, to understand the error message that keeps on popping up, to learn how to make that widget default to a different directory, or how to add a cool new function?</strong> Don’t you think the user should be in charge of his or her own product instead of the monopolizing producer of the program? Once you see the code, you already started down the path of becoming an Open Source programmer. That’s the beauty of Open Source.</p>
<p><strong>Do you really think LINUX was built by a big corporation? Or that the APACHE server was a side tool to newly released software?</strong> Or that the PHP language was invented by a group of scientists and licensed for free? All of them were created by some intelligent student or a professional coder who wanted something specific for their needs. After the core was created and released, all interested programmers or those who were in need of new functions contributed to the program somehow. Then in time, they became the foundations of the web as we know it today.</p>
<p><strong>The philosophy of Open Source software among other things is that many hands and eyes make for good software, unlike too many cooks spoiling the soup.</strong> Bugs are more likely to be caught, and more importantly, fixed, if everyone has access to the source. As in cryptography, closed systems cannot be proven to be free of flaws or errors. While it’s no guarantee that bugs exist, open systems can be examined for flaws; closed systems can only be tested against known bugs (security through obscurity). It is the “unknown unknowns” that can bite you.</p>
<p><strong>So briefly, it is quite obvious that LAMP (LINUX, APACHE, MySQL, PHP, PERL) dominates the Internet web.</strong> The reason is that LAMP gives value to the user input and this makes it easily adaptable for different purposes and very flexible for different usages. If you want programs to use for web purposes which you can easily modify and for which you can learn a lot from and thusly turn into a developer yourself, then do not give up using LAMP or other open source software. </p>
]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/internet-stuff/satisfaction-with-lamp-and-web-open-source.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Download Free Bux Script (PTC Script)</title>
		<link>http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html</link>
		<comments>http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html#comments</comments>
		<pubDate>Sun, 18 May 2008 20:24:47 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[PTC/PTR]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[bux]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[ptc]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html</guid>
		<description><![CDATA[What is Bux Script (PTC script)? Bux script is paid to click website script maker. Yes, you can build a Paid to Click (PTC) website using this script. Then why some people name it with &#8220;bux script&#8221;? Because the most know PTC website is bux.to and people like to just name it with bux script. [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript" src="http://www.cpalead.com/mygateway.php?pub=21850&amp;gateid=NzE2NjA%3D"></script><br />
<a href='http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html/attachment/picture-of-free-bux-script' rel='attachment wp-att-110' title='Picture of Free Bux Script'><img src='http://suraja.com/wp-content/bux-script.jpg' alt='Picture of Free Bux Script' /></a><strong>What is Bux Script (PTC script)? Bux script is paid to click website script maker.</strong> Yes, you can build a Paid to Click (PTC) website using this script. Then why some people name it with &#8220;bux script&#8221;? Because the most know PTC website is bux.to and people like to just name it with bux script. Sounds logic, lol!</p>
<p>Enough with the chitchat! <strong>This free bux PTC script has been floating around for FREE for a bit now, due to the craze of all the PTC Bux sites being made I thought I would share this download for anyone wanting to make a PTC site.</strong><br />
I know it&#8217;s not good for other PTC bux sites, it will be grow a lot off bux scam sites, and its possible that bux site gonna be over&#8230;</p>
<p>A Live Working Demo of this PTC bux script can be found over at Paid2Surf.net. But please note that I am not the maker of this script, so don&#8217;t bother me with the script technical question. Just share me your working PTC script and donate me if you want <img src='http://suraja.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong><a href="http://suraja.com/BuxScript.zip" target="_blank">Download Free Bux Script (PTC Script) here</a></strong><br />
Password: suraja.com</p>
<h4>Incoming search:</h4> <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="download bux script">download bux script</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="FREE PTC script">FREE PTC script</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="bux script">bux script</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="free bux script">free bux script</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="ptc script download">ptc script download</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="ptc script">ptc script</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="ptc script free">ptc script free</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="bux script download">bux script download</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="script ptc">script ptc</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="download script ptc">download script ptc</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="suraja com">suraja com</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="ptc script free download">ptc script free download</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="download ptc script">download ptc script</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="script PTC download">script PTC download</a>, <a href="http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html" title="script bux">script bux</a>]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/make-money/download-free-bux-script-ptc-script.html/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Tips to Maximize CTR of Chitika RPU on WordPress</title>
		<link>http://suraja.com/website/featured/tips-to-maximize-ctr-of-chitika-rpu-on-wordpress.html</link>
		<comments>http://suraja.com/website/featured/tips-to-maximize-ctr-of-chitika-rpu-on-wordpress.html#comments</comments>
		<pubDate>Fri, 16 May 2008 17:23:37 +0000</pubDate>
		<dc:creator>Web Tech</dc:creator>
				<category><![CDATA[Adsense]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[Make Money]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Website Development]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[chitika]]></category>
		<category><![CDATA[ctr]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://suraja.com/website/featured/tips-to-maximize-ctr-of-chitika-rpu-on-wordpress.html</guid>
		<description><![CDATA[This is a small tips to maximize your CTR (Click-through rate) of your Chitika RPU (Related Products Unit). Chitika RPU system don&#8217;t have the section targeting facilities like what Adsense does, and sometimes it will make your Chitika ads not relevant to your website content. And for WordPress user, this could be done by automatically [...]]]></description>
			<content:encoded><![CDATA[<p><strong>This is a small tips to maximize your CTR (Click-through rate) of your Chitika RPU (Related Products Unit).</strong> Chitika RPU system don&#8217;t have the section targeting facilities like what Adsense does, and sometimes it will make your Chitika ads not relevant to your website content. And for WordPress user, this could be done by automatically fill the chitika keywords with your post title.</p>
<p>It&#8217;s simple, just insert the WordPress post title code : <strong>&lt;?php echo the_title(); ?&gt;</strong> to your Chitika ads code.<br />
Here&#8217;s the sample code:</p>
<p>&lt;script type=&quot;text/javascript&quot;&gt;&lt;!&#8211;<br />
  ch_client = &quot;chitika_client&quot;;<br />
  ch_type = &quot;rpu&quot;;<br />
  ch_noprice = &quot;1&quot;;<br />
  ch_shufflequeries = 1;<br />
  ch_width = 728;<br />
  ch_height = 90;<br />
  ch_non_contextual = 1;<br />
  ch_default_category = &quot;93767&quot;;<br />
  var ch_queries = new Array( );<br />
  <strong>var ch_queries = new Array( &quot;<font color="#FF0000">&lt;?php echo the_title(); ?&gt;</font>&quot; );</strong><br />
  var ch_selected=Math.floor((Math.random()*ch_queries.length));<br />
  if ( ch_selected &lt; ch_queries.length ) {<br />
  ch_query = ch_queries[ch_selected];<br />
  }<br />
  //&#8211;&gt;&lt;/script&gt;<br />
  &lt;script src=&quot;http://scripts.chitika.net/eminimalls/mm.js&quot; type=&quot;text/javascript&quot;&gt;<br />
  &lt;/script&gt;</p>
<p>Hope it works to maximize your Chitika RPU earning.</p>
<h4>Incoming search:</h4> <a href="http://suraja.com/website/featured/tips-to-maximize-ctr-of-chitika-rpu-on-wordpress.html" title="chitika tips maximize ctr">chitika tips maximize ctr</a>]]></content:encoded>
			<wfw:commentRss>http://suraja.com/website/featured/tips-to-maximize-ctr-of-chitika-rpu-on-wordpress.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 13/64 queries in 0.233 seconds using disk: basic
Object Caching 1153/1279 objects using disk: basic

Served from: suraja.com @ 2012-05-23 01:43:31 -->
