• Welcome to Web Hosting Forum - A Web Hosting Community for Webmasters.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Kailash

#601
cPanel/WHM / check Apache version through command line
January 20, 2008, 05:42:39 PM
Hi,

You can check the Apache version through command line using the below command:

/usr/local/apache/bin/httpd -v

This works for cPanel/WHM server. If you have Apache installed at other location, you may try using different path.
#602
cPanel/WHM /
January 08, 2008, 07:09:00 PM
simply run updatedb

Thanks,
#603
SEO / SEM / SMO Discussions /
December 23, 2007, 10:04:34 PM
probably in the last week of Jan 08?
#604
Hi,

I have recently noticed that now we can select the text in Adsense (Link description). It seems that Google has introduced this to avoid possible accidental clicks on the ads. It is good for advertisers!

Thanks,
#605
Linux /
December 21, 2007, 07:54:34 AM
you can use the below command:

du -hs *

To check the folder size of particular directory:

du -hs /foldername

Thanks,
#606
How Tos / send an read the mails through TELNET
December 16, 2007, 09:34:49 AM
Hi,

Below are the few command to read and send mails through TELNET:

To Send the mail via TELNET:


telnet Your mail server(mail.yourdomain.com) 25
220 mail.yourdomain.com
HELO
250 Your srver name Hello [Your IP address]
MAIL FROM: your email address
250 OK <your email address> Sender ok
RCPT TO: recipient email address
250 OK <recipient email address> Recipient ok
DATA
354 Start mail input; end with <CRLF>.<CRLF>
From: Your email address
To:recipient email address
Subject: SMTP commands demo
This is a demo of SMTP commands.

250 ok

To Read the mail via TELNET:


telnet Your mail server(mail.yourdomain.com) 110
+OK POP3 server ready <c363616d-690c-4202-a15a-bbb899d332ea>   
USER Your email address
+OK User:'Your email address' ok
PASS password
+OK password ok
LIST
+OK 43 messages <684964 octets>
1   689
2   2780
3   3083
|      |
|      |
43   129601
.
RETR 3 +OK 3083 octets
<The whole message will get displayed here>

I have consider Port 25 for SMTP and 110 for POP 3. If you are using the different port then just replace it.

Thanks,
#607
cPanel/WHM / Move account through SSH (cPanel/WHM)
December 07, 2007, 12:32:17 AM
Hi,

If the domain size is larger then you may face the problem while moving the account from one server to another server via WHM. In such case, you can try to move the account using SSH. Below are the few commands to move the accccount:

TO PACK ANY ACCOUNT:
/scripts/pkgacct nameoftheuser

TO MOVE ONE TAR FILE TO ANOTHER SERVER. IT REQUIRES SERVER ROOT PASSWORD:
scp /home/name_of_tar_file root@IP_DESTINY_SERVER:/home/ name_of_tar_file

Restoring Packed Account:
/scripts/restorepkg nameoftheuser

Thanks,
#608
cPanel/WHM / Check whether the port is opened or not
December 05, 2007, 06:43:35 PM
Hi,

You can check whether the port is open or not in your server (cPanel/WHM)

using the below commnd:

iptables -L | grep port number

Thanks,
#609
You can update AwStats of your domain manually through shell (via SSH) using

below command:

/scripts/runweblogs username

It will work for cPanel/WHM.

Thanks,
#610
MySQL / MySQL Training in India
September 22, 2007, 10:48:05 AM
Several MySQL Classes in India. The following MySQL classes have been scheduled for India for the upcoming months:

- MySQL Advanced Stored Procedures (2 days)
- MySQL High Availability (3 days)
- MySQL 5.0 for Database Administrators (5 days)
- MySQL 5.0 for Developers (5 days)

More information about the exact dates and details for these classes
 can be found at http://www.mysql.com/training/schedule.php?cc=IN

You can register for the classes
* via our online shop at https://shop.mysql.com,
* via our partner OSSCybe http://www.osscube.com
* by contacting me by email at mailto:[email protected]">[email protected]
* by calling me at +61 2830 73824.

Thanks
#611
SEO / SEM / SMO Discussions / new PR3 Directory
September 16, 2007, 01:15:33 PM
Hello All,

I have recently created a new directory. Check out the new directory.

Thanks,
#612
PHP 4 will be discontinue after December 2007. PHP 5 has been released since last three years. PHP 5 is stable, fast and PHP 6 is on the way.

For more details on this got to http://www.php.net/index.php

Thanks,
#613
Download the free latest version of Smartermail 4.x

http://www.smartertools.com/......./Free.aspx?src=SmarterMail4Flash

Limitation of free version:
- You can host one domain and maximum 10 email accounts.

You will get all the functionality of Smartermail Enterprise Edition.
#614
Below is the command to update the analog stats on Linux server (cPanel/WHM):

/usr/local/cpanel/cpanellogd username

replace username with domain's username.

To update Analog stats of all the domains, use the below command:

/usr/local/cpanel/cpanellogd

Regards,

Kailash
#615
cPanel/WHM / restart Apache through command line
August 12, 2007, 06:30:11 PM
Command to restart Apache on Linux (cPanel/WHM):
/usr/local/apache/bin/apachectl restart
#616
Other Web Hosting Stuff / HELM 4.0.16 released
August 12, 2007, 06:27:20 PM
HELM 4.0.16 has been released on 08th August 2007.
#617
Command to start http with SSL (https service):

service httpd startssl

OR

/etc/init.d/httpd startssl
#618
Below are the commands to check the version of PHP and MySQL on your Linux server through shell (via SSH):

php -v
mysql -V

Kailash
#619
Command to check perl file syntax through shell access:

perl -wc perl file name
#620
To enable manual AwStats update link 'Update Now' on stats page for cPanel/WHM, edit the file /home/CpanelUserName/tmp/awstats/awstats.domain.conf and change the value AllowToUpdateStatsFromBrowser=0 to AllowToUpdateStatsFromBrowser=1

Thanks,
#621
crontab command is used to edit/remove the current cron job on the server. Below are the few options of crontab command:

crontab -l
  - Displays the current cron jobs.
crontab -e - To edit the cron jobs.
crontab -r  - To remove cron jobs.

If you wish to edit it for particular user, you can use the following:

crontab [-u user] [-l | -r | -e] [-i]

Regards,

Kailash
#622
Other Web Hosting Stuff / HELM 4.0.15 released
July 19, 2007, 10:00:56 AM
HELM 4.0.15 has been released on  04 July 2007.
#623
Hello Friends,

HostingCon 2007 will be on July 23-25, Navy Pier, Chicago. For more details go to http://www.hostingcon.com/2007/
#624
It seems that you are trying to use AJAX in your application but it seems that AJAX is not installed on the server where your domain is hosted.

Thanks,

Kailash
#625
Microsoft IIS /
July 17, 2007, 09:36:22 AM
According to me, you need to assign the dedicated IP address to each sub-domain.
#626
Hosting Software and Control Panels /
July 13, 2007, 09:48:25 AM
Kindly visit the below URL that will help you to install Awstats on your server:

http://download.webhostautomation.net/AWStats/......Configuration%20Guide.pdf
#627
SEO / SEM / SMO Discussions /
July 05, 2007, 10:00:47 AM
Download Able2Know Search Engine Optimization 2.0.0 and make the required changes. More info on this http://www.able2know.com/forums/about15132.html
#628
Email Management Software & Email Clients /
July 05, 2007, 09:56:05 AM
You may need to create the separate resource in the HELM and then move the domain to that resource using HELM restore tool.
#629
Email Management Software & Email Clients /
July 05, 2007, 09:49:11 AM
Login to the Smartermail using admin username and then go to Security -> SMTP Blocked Senders -> Enter domain name to block
#630
Email Management Software & Email Clients /
July 05, 2007, 09:46:02 AM
It seems that Safari is not recommended for Smartermail. Visit the below URL for  Browser Support Information:

http://help.smartertools.com/Smar..........Browsers.aspx