<?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>dreamluverz collection &#187; server</title>
	<atom:link href="http://dreamluverz.com/category/developers-tools/server/feed" rel="self" type="application/rss+xml" />
	<link>http://dreamluverz.com</link>
	<description>Never stop dreaming, until you&#039;re ready to wake up and make it happen</description>
	<lastBuildDate>Sat, 03 Apr 2010 11:35:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>TAR command</title>
		<link>http://dreamluverz.com/developers-tools/server/tar-command</link>
		<comments>http://dreamluverz.com/developers-tools/server/tar-command#comments</comments>
		<pubDate>Wed, 10 Mar 2010 20:06:18 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[extracting file using tar]]></category>
		<category><![CDATA[linux commands]]></category>
		<category><![CDATA[ssh commands]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=808</guid>
		<description><![CDATA[create: tar -cvf mystuff.tar mystuff/ tar -czvf mystuff.tgz mystuff/ extracting: tar -xvf mystuff.tar tar -xzvf mystuff.tgz testing/viewing: tar -tvf mystuff.tar tar -tzvf mystuff.tgz Note that .tgz is the same thing as .tar.gz Tar &#8220;tars up&#8221; a bunch of files into one &#8220;tar-file&#8221; gzip is compression, but only works on one file, so the entire &#8220;tarfile&#8221; [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/tar-command/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what is SOAP</title>
		<link>http://dreamluverz.com/developers-tools/what-is-soap</link>
		<comments>http://dreamluverz.com/developers-tools/what-is-soap#comments</comments>
		<pubDate>Mon, 15 Jun 2009 08:43:42 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[developer's Guide]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[xml]]></category>
		<category><![CDATA[computer terms]]></category>
		<category><![CDATA[SOAP]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=705</guid>
		<description><![CDATA[How is SOAP Used? There are many possible applications for SOAP, here are just a couple: Business to Business integration &#8211; SOAP allows businesses to develop their applications, and then make those applications available to other companies Distributed applications &#8211; programs like databases could be stored on one server and accessed and managed by clients [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/what-is-soap/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cannot send out mails</title>
		<link>http://dreamluverz.com/developers-tools/server/cannot-send-out-mails</link>
		<comments>http://dreamluverz.com/developers-tools/server/cannot-send-out-mails#comments</comments>
		<pubDate>Tue, 12 May 2009 07:37:02 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[server]]></category>
		<category><![CDATA[cannot send mails]]></category>
		<category><![CDATA[cannot send mails with mail()]]></category>
		<category><![CDATA[changing mx record]]></category>
		<category><![CDATA[error sending mails]]></category>
		<category><![CDATA[mail() not working]]></category>
		<category><![CDATA[mail() php not working]]></category>
		<category><![CDATA[mx record]]></category>
		<category><![CDATA[pointing mx record to other server]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=549</guid>
		<description><![CDATA[For some reasons I cannot send out mails using the mail() in php and even trying out any other phpmailer and it only happens with my own domain name but when tyring to send mail to gmail.com it went through. Btw, to give you more background about the issue, I&#8217;ve been using the gmail web [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/cannot-send-out-mails/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>domain redirection</title>
		<link>http://dreamluverz.com/developers-tools/server/domain-redirection</link>
		<comments>http://dreamluverz.com/developers-tools/server/domain-redirection#comments</comments>
		<pubDate>Tue, 20 May 2008 06:25:41 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[301 redirect]]></category>
		<category><![CDATA[url redirection]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=266</guid>
		<description><![CDATA[As far as SEO is concerned 301 redirect is the most effecient way of domain redirection. Some ways of doing it: PHP Redirect &#60;? Header( &#8220;HTTP/1.1 301 Moved Permanently&#8221; ); Header( &#8220;Location: http://www.new-url.com&#8221; ); ?&#62; .htaccess Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^domain.com [nc] rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc] Check out here for other languages other [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/domain-redirection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error 500</title>
		<link>http://dreamluverz.com/developers-tools/server/error-500</link>
		<comments>http://dreamluverz.com/developers-tools/server/error-500#comments</comments>
		<pubDate>Thu, 08 May 2008 07:38:15 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[500 error]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[htaccess error]]></category>
		<category><![CDATA[xampp]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/?p=247</guid>
		<description><![CDATA[problem: error 500 on xampp when using htaccess: solution: Locate this file httpd.conf and uncomment this LoadModule mod_rewrite modules/mod_rewrite.sop and restart apache]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/error-500/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error: invalid argument to date encode in nusphere</title>
		<link>http://dreamluverz.com/developers-tools/server/error-invalid-argument-to-date-encode-in-nusphere</link>
		<comments>http://dreamluverz.com/developers-tools/server/error-invalid-argument-to-date-encode-in-nusphere#comments</comments>
		<pubDate>Fri, 29 Feb 2008 07:45:31 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[server]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[ftp error]]></category>
		<category><![CDATA[server error]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/developers-tools/server/error-invalid-argument-to-date-encode-in-nusphere</guid>
		<description><![CDATA[I&#8217;m getting this error at this moment. And also these guys on this site:http://forum.pspad.com/read.php?2,45078,45079.Â  What could be the problem. Please help us&#8230;]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/error-invalid-argument-to-date-encode-in-nusphere/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>linux command lines</title>
		<link>http://dreamluverz.com/anything-under-the-moonlight/linux-command-lines</link>
		<comments>http://dreamluverz.com/anything-under-the-moonlight/linux-command-lines#comments</comments>
		<pubDate>Wed, 13 Feb 2008 02:02:18 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[anything under the moonlight]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[linux command lines]]></category>
		<category><![CDATA[linux commands]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/02/13/linux-command-lines/</guid>
		<description><![CDATA[Some command lines I&#8217;ve learned from friends. du -bsx * &#124; sort -n =Â  will list folders/files along with it&#8217;s sizes and sorted asc ls -lst = will list files/folder with dates, modes or in details pwd = will show current location]]></description>
		<wfw:commentRss>http://dreamluverz.com/anything-under-the-moonlight/linux-command-lines/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux: change ownership and permission for file or directory  via ssh</title>
		<link>http://dreamluverz.com/developers-tools/server/linux-change-ownership-and-permission-for-file-or-directory-via-ssh</link>
		<comments>http://dreamluverz.com/developers-tools/server/linux-change-ownership-and-permission-for-file-or-directory-via-ssh#comments</comments>
		<pubDate>Thu, 07 Feb 2008 05:21:34 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[change ownership]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[chown]]></category>
		<category><![CDATA[file permissions]]></category>
		<category><![CDATA[permissions]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/02/07/linux-change-ownership-and-permission-for-file-or-directory-via-ssh/</guid>
		<description><![CDATA[sources: http://webtools.live2support.com/linux/chown.php, http://www.tuxfiles.org/linuxhelp/fileowner.html I&#8217;ve tried this 2 lines in order. chown -R -v [username]Â  [directory/file] chmod -R -v [permission]Â  [username]Â  [directory/file] -R = recursively, including sub directories -v = verbose, you will see it in action]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/linux-change-ownership-and-permission-for-file-or-directory-via-ssh/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Linux / Unix rmdir command</title>
		<link>http://dreamluverz.com/developers-tools/server/linux-unix-rmdir-command</link>
		<comments>http://dreamluverz.com/developers-tools/server/linux-unix-rmdir-command#comments</comments>
		<pubDate>Wed, 06 Feb 2008 15:17:27 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/02/06/linux-unix-rmdir-command/</guid>
		<description><![CDATA[About rmdirDeletes a directory. Syntax rmdir [OPTION]&#8230; DIRECTORY&#8230; &#8211;ignore-fail-on-non-empty ignore each failure that is solely because a directory is non-empty. -p, &#8211;parents Remove DIRECTORY and its ancestors. E.g., `rmdir -p a/b/c&#8217; is similar to `rmdir a/b/c a/b a&#8217;. -v, &#8211;verbose output a diagnostic for every directory processed. &#8211;version output version information and exit. Examples rmdir [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/linux-unix-rmdir-command/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>scp server to server</title>
		<link>http://dreamluverz.com/developers-tools/server/scp-server-to-server</link>
		<comments>http://dreamluverz.com/developers-tools/server/scp-server-to-server#comments</comments>
		<pubDate>Wed, 06 Feb 2008 09:06:54 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[server]]></category>
		<category><![CDATA[copy files server to server]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scp]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/02/06/scp-server-to-server/</guid>
		<description><![CDATA[SOURCE: http://forums.serverbeach.com/archive/index.php/t-2202.html I&#8217;ve been looking for this reference and finally found it. Thanks for them who posted it on the link above. I&#8217;ll be trying this out Let&#8217;s begin and assume the following information: Server A is our host where the original files are located. Server B is where we need to copy files to. [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/scp-server-to-server/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>socket error #10060 on ftp</title>
		<link>http://dreamluverz.com/developers-tools/server/socket-error-10060-on-ftp</link>
		<comments>http://dreamluverz.com/developers-tools/server/socket-error-10060-on-ftp#comments</comments>
		<pubDate>Tue, 05 Feb 2008 13:13:04 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[server]]></category>
		<category><![CDATA[10060]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[ftp access]]></category>
		<category><![CDATA[socekt error]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/02/05/socket-error-10060-on-ftp</guid>
		<description><![CDATA[I got this socket error #10060 when connecting to ftp, tried checking the host, username &#38; pass but still no luck. I tried unchecking the PASSIVE MODE and binggo!! It was solved! phew!! It took me heavens &#38; earth]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/socket-error-10060-on-ftp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vhcs installation on debian part II</title>
		<link>http://dreamluverz.com/developers-tools/mysql/vhcs-installation-on-debian-part-ii</link>
		<comments>http://dreamluverz.com/developers-tools/mysql/vhcs-installation-on-debian-part-ii#comments</comments>
		<pubDate>Tue, 29 Jan 2008 03:29:13 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[reconfiguring vhcs]]></category>
		<category><![CDATA[uninstall vhcs]]></category>
		<category><![CDATA[vhcs]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/01/29/vhcs-installation-on-debian-part-ii/</guid>
		<description><![CDATA[After solving all the errors I encountered on vhcs installation, You will have these steps below, it means you&#8217;re almost done System starts to configure packages now. When installation asks about overwriting old configs, select Yes. Configuration file `/etc/vhcs2/crontab/backup/crontab.conf.12564â€² ==&#62; File on system created by you or by a script. ==&#62; File also in package [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/mysql/vhcs-installation-on-debian-part-ii/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vhcs installation on debian server</title>
		<link>http://dreamluverz.com/developers-tools/server/vhcs-installation-on-debian-server</link>
		<comments>http://dreamluverz.com/developers-tools/server/vhcs-installation-on-debian-server#comments</comments>
		<pubDate>Thu, 24 Jan 2008 12:57:26 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[server]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[vhcs]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/01/24/vhcs-installation-on-debian-server/</guid>
		<description><![CDATA[VHCS delivers a complete hosting automation appliance by offering significant security, total-cost-of-ownership, and performance advantages over competing commercial solutions.With VHCS Pro you can configure your server and applications, create user with domains with a few point-and-click operations that take less than a minute. There is no limit to the number of resellers, users and domains [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/vhcs-installation-on-debian-server/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>error using mod_rewrite</title>
		<link>http://dreamluverz.com/developers-tools/server/error-using-mod_rewrite</link>
		<comments>http://dreamluverz.com/developers-tools/server/error-using-mod_rewrite#comments</comments>
		<pubDate>Thu, 24 Jan 2008 08:57:57 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/01/24/error-using-mod_rewrite/</guid>
		<description><![CDATA[I got an error using mod_rewrite on my local server and it was only solved when I putÂ  Options +FollowSymLinks but on live server using Options +FollowSymLinks gave me an error so I removed it. Well anyway, I came across this post and it has a nice explanation regarding that. For reference, if anybody else [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/error-using-mod_rewrite/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>debian &#8211; LAMP setup</title>
		<link>http://dreamluverz.com/developers-tools/php/debian-lamp-setup</link>
		<comments>http://dreamluverz.com/developers-tools/php/debian-lamp-setup#comments</comments>
		<pubDate>Sat, 19 Jan 2008 12:14:45 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[LAMP setup]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2008/01/19/debian-lamp-setup/</guid>
		<description><![CDATA[This tutorial has been helpful to me on my 1st attempt of setting up our dedicated server. source: http://allyourtech.com/content/articles/16_01_2006_setting_up_a_local_web_server_in_debian_linux.php The basic Linux setup Setting this all up assumes you have a running version of Linux already installed. I won&#8217;t walk you through that part. If you don&#8217;t have one and have an old box you&#8217;d [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/php/debian-lamp-setup/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>passing session between subdomains</title>
		<link>http://dreamluverz.com/developers-tools/php/passing-session-between-subdomains</link>
		<comments>http://dreamluverz.com/developers-tools/php/passing-session-between-subdomains#comments</comments>
		<pubDate>Tue, 18 Dec 2007 20:21:36 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA['.example.com'); not working]]></category>
		<category><![CDATA[ini_set]]></category>
		<category><![CDATA[ini_set('session.cookie_domain']]></category>
		<category><![CDATA[passing of session]]></category>
		<category><![CDATA[session between subdomains]]></category>
		<category><![CDATA[session on multi domains]]></category>
		<category><![CDATA[session.cookie_domain]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2007/12/19/passing-session-between-subdomains/</guid>
		<description><![CDATA[Few months ago i&#8217;ve been looking for ways how to do this. I&#8217;ve tried some things though but I need a better solution. Tonight I came across these sites on how to do it. I haven&#8217;t tried it yet coz I really don&#8217;t have time right now, i&#8217;m still packing my stuffs but I&#8217;m so [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/php/passing-session-between-subdomains/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mod_rewrite and regular expressions</title>
		<link>http://dreamluverz.com/developers-tools/server/mod_rewrite-and-regular-expressions</link>
		<comments>http://dreamluverz.com/developers-tools/server/mod_rewrite-and-regular-expressions#comments</comments>
		<pubDate>Tue, 18 Dec 2007 16:32:10 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[mod_rewrite]]></category>
		<category><![CDATA[regular expressions]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2007/12/19/mod_rewrite-and-regular-expressions/</guid>
		<description><![CDATA[I&#8217;ve been looking for this article and finally found it! Thanks to justin who posted this on some website. Regular Expressions I guess I should start by describing a regular expression. (They aren&#8217;t too scary once you get to know them.) A regular expression is basically a small piece of code that checks for patterns. [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/mod_rewrite-and-regular-expressions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make subfolder the main folder for your main domain</title>
		<link>http://dreamluverz.com/developers-tools/server/how-to-make-a-subfolder-the-main-folder-for-your-main-domain</link>
		<comments>http://dreamluverz.com/developers-tools/server/how-to-make-a-subfolder-the-main-folder-for-your-main-domain#comments</comments>
		<pubDate>Mon, 03 Dec 2007 12:36:16 +0000</pubDate>
		<dc:creator>dreamluverz</dc:creator>
				<category><![CDATA[server]]></category>
		<category><![CDATA[hostmonster.com]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[make subfolder the main folder for main domain]]></category>

		<guid isPermaLink="false">http://dreamluverz.com/2007/12/03/how-to-make-a-subfolder-the-main-folder-for-your-main-domain/</guid>
		<description><![CDATA[I&#8217;m organizing our server and wanted to make subfolder the main folder for our main domain. Here&#8217;s some code to do it from hostmonster.com # Hostmonster.com # .htaccess main domain to subfolder redirect # Copy and paste the following code into the .htaccess file # in the public_html folder of your hosting account # make [...]]]></description>
		<wfw:commentRss>http://dreamluverz.com/developers-tools/server/how-to-make-a-subfolder-the-main-folder-for-your-main-domain/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
