<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>webteches.com</title>
	<link>http://www.webteches.com</link>
	<description>Linux solutions</description>
	<lastBuildDate>Wed, 24 Jun 2009 02:35:18 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Parked Domain and Addon Domain</title>
		<description><![CDATA[Addon Domain :: Addon domains can be added to your hosting account as an upgrade. They allow you to have more than one independent website sharing the resources of your hosting account.
[ consider your addon domain name as addondomain.com ]
There are 3 ways of accessing an addon domain:
1. addondomain.com
2. main-domain.com/addondomain
3. addondomain.main-domain.com
Parked Domain :: A parked [...]]]></description>
		<link>http://www.webteches.com/parked-domain-and-addon-domain/</link>
			</item>
	<item>
		<title>how to ping from MAC OS ?</title>
		<description><![CDATA[1.       Double-click on the Hard Drive icon &#62;&#62; Applications folder &#62;&#62; Utilities folder &#62;&#62; Network Utility program
2.       Select the Ping tab and enter the hostname, where hostname can be a domain name, a machine name or an IP address.
3.       Press Enter.

]]></description>
		<link>http://www.webteches.com/how-to-ping-from-mac-os/</link>
			</item>
	<item>
		<title>redirects from www and to www</title>
		<description><![CDATA[How to setup redirects for domain.com to www.domain.com and vice versa ?
Create a .htaccess file under the root directory and add the code below
Redirect www.domain.com to domain.com
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
Redirect domain.com to www.domain.com
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^domain\.com$ [NC]
RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L]
Save the file and exit and give it a try [...]]]></description>
		<link>http://www.webteches.com/redirects-from-www-and-to-www/</link>
			</item>
	<item>
		<title>upgrade mysql on cPanel server</title>
		<description><![CDATA[How to upgrade mysql on cPanel servers ?
Login to WHM with root user and access the option Server Configuration &#62;&#62; Tweak Settings. Look for MySQL and check the radio button for 5.0 from 4.1 OR login to the server via SSH and open the file /var/cpanel/cpanel.config and find for mysql-version. Change it to 5.0 from 4.1. Save [...]]]></description>
		<link>http://www.webteches.com/upgrade-mysql-on-cpanel-server/</link>
			</item>
	<item>
		<title>PHP Parse error: syntax error, unexpected T_STRING</title>
		<description><![CDATA[If you receive such error in the error logs or in the browser please follow the steps below.
For non suexec/suphp servers
Create a .htaccess file under the diretcory and add the code below
php_flag short_open_tag X
For suexec/suphp servers
Copy the server&#8217;s php.ini file under the diretcory and find for short_open_tag. Open the php.ini file and change it to
short_open_tag [...]]]></description>
		<link>http://www.webteches.com/php-parse-error-syntax-error-unexpected-t_string/</link>
			</item>
	<item>
		<title>mail troubleshooting</title>
		<description><![CDATA[Go through this post to troubleshoot mail issues on your server..
Check emails in mail queue
root@server [~]# exim -bp
Count number of emails in mail queue
root@server [~]# exim -bpc
Count number of frozen emails in mail queue
root@server [~]# exim -bp &#124; grep frozen &#124; wc -l
Delete forzen emails from the mail queue
exim -bp &#124; awk &#8216;$6~&#8221;frozen&#8221; { print [...]]]></description>
		<link>http://www.webteches.com/mail-troubleshooting/</link>
			</item>
	<item>
		<title>Warning: Cannot modify header information &#8211; headers already sent by output started at</title>
		<description><![CDATA[If you receive such error in the error logs OR in the browser make sure output_buffering is set to On in the php.ini file on the server.
If you are on a su-exec/su-php enabled server, copy the original php.ini from the server under the account and make the changes.
What is output_buffering ?
Output buffering allows you to [...]]]></description>
		<link>http://www.webteches.com/warning-cannot-modify-header-information-headers-already-sent-by-output-started-at/</link>
			</item>
	<item>
		<title>account backup without home diretcory</title>
		<description><![CDATA[What if you want to generate the account backup without the home diretcory ?
Here is the command to exclude/skip home diretcory
root@server [~]# /scripts/pkgacct &#8211;skiphomedir username
Note :: Here username is  actual cPanel username.

]]></description>
		<link>http://www.webteches.com/account-backup-without-home-diretcory/</link>
			</item>
	<item>
		<title>disable .htaccess for domain account</title>
		<description><![CDATA[How to disable .htacess access for a particular account/domain ?
You can disable .htaccess for a particular domain by editing the /etc/httpd/conf/httpd.conf file &#38; following the below mentioned steps:
Open the /etc/httpd/conf/httpd.conf file.
Search for the &#8220;AllowOverride None&#8221; string.
&#60;Directory &#8220;/&#8221;&#62;
AllowOverride None
&#60;/Directory&#62;
Append it by:
&#60;Directory &#8220;/home/username/public_html&#8221;&#62;
AllowOverride None
&#60;/Directory&#62;
Such that it looks like:
&#60;Directory &#8220;/&#8221;&#62;
AllowOverride None
&#60;/Directory&#62;
&#60;Directory &#8220;/home/username/public_html&#8221;&#62;
AllowOverride None
&#60;/Directory&#62;
Restart the httpd/apache service on the [...]]]></description>
		<link>http://www.webteches.com/disable-htaccess-for-domain-account/</link>
			</item>
	<item>
		<title>Upload images through cubecart</title>
		<description><![CDATA[If you are not able to upload the images via cubecart admin panel, then it seems to be an issue with the permissions on the diretcory under your account. Please follow the steps below
Change permissions for the diretcory &#8220;cart/images/uploads&#8221; to 777
Change permissionsfor diretcory &#8220;cart/images/uploads/thumbs&#8221; to 777.
You are done ! Try uploading the images now.
]]></description>
		<link>http://www.webteches.com/upload-images-through-cubecart/</link>
			</item>
</channel>
</rss>
