Godaddy blunder Customer support

This is an interesting reply from Godaddy Support for my Question. I asked them for the availability of a dedicated server in their Asia pacific Data center. But there reply was very funny. Seems there have taking beer while answering tickets.. he..he.. Please read it
Our support staff has responded to your request, details of which are described below:

Discussion Notes
Support Staff Response
Dear Sathyavrathan,

Thank you for your reply. I apologize for any inconvenience or confusion. After you purchase a server, it can take up to 72 hours for it to appear in your account to set up. Once you set it up, it can take up to 24 hours to be active and functional.

Please let us know if you have any further questions, comments, or concerns by replying to this email. Our service departments and telephone lines are open 24 hours a day, 365 days a year to accommodate your needs anytime.

You can also reach us by phone at the following numbers:
(480) 505-8877 Technical Support, Sales and Service
(480) 505-8855 Billing

Sincerely,
Sara E.
Online Support Team

Customer Inquiry
Are you kidding me Kim? I have asked you guys for the availability of
Windows Dedicated Servers in Asia Pacific Data Center, and you have replied
me to give permission to access my server? I really don’t understand. I
appreciate if you could read my query completely before replying.

Thanks & Regards,

* Sathyavrathan PK
Assistant Manager – Systems*

support@supportwebsite.com

to domains

show details 5:01 AM (4 hours ago)
24/7 Sales & Support: (480) 505-8877 – 24/7 Billing Support: (480) 505-8855

Our support staff has responded to your request, details of which are described below:

Discussion Notes
Support Staff Response
Dear Sathyavrathan,

Thank you for contacting Online Support. In order to properly support this issue

we will need to a statement stating your permission to access your server

for troubleshooting purposes will also help us expedite the troubleshooting process.

We appreciate your understanding in this matter.

Please let us know if we can assist you in any way.

Regards,
Kim P.
Online Support

Customer Inquiry
Hello Team,

We are looking for a Windows Dedicated Server in your Asia Pacific Data
Center. Can you please let us if it is ready or when it will be ready ?

Thanks & Regards,

* Sathyavrathan PK
Assistant Manager – Systems*


If you need further assistance with this matter, please contact customer service at (480) 505-8877 and reference [Incident ID: 11430522].

Please let us know how we are doing by completing the survey located here.

To thank you for your patience, we’d like you to enjoy 20%* off your order of $65 or more at GoDaddy.com. Simply use source code gdbb687 when you order or mention the code when you call (480) 505-8877.

Thanks,
GoDaddy.com, Inc.

P.S. As a Go Daddy customer you’re already a member of our affiliate program. Click here to start earning commission instantly.

Need additional help fast? Click or call!
Find answers by searching Help Find answers and FAQS or connect with others Domain Search
Know what you want? Find it quickly with these direct links:
Hosting Options
> Web Hosting
> WordPress® Hosting
> Dedicated Servers
> Virtual Dedicated Servers
Website Design
> WebSite Tonight®
> Website Design Services
> SmartSpace®
> Quick Shopping Cart®
> Quick Blogcast®
Email Plans
> Web-Based Email
> Fax Thru Email
> Hosted Exchange
> Online File Folder®
Business Solutions
> Search Engine Visibility
> Express Email Marketing®
> School of Business
> Reseller Plans
Security & Privacy
> SSL Certificates
> Certified Domains
> Private Registration
> Protected Registration
> Website Protection

*Not applicable to ICANN fees, taxes, shipping and handling, sale priced domain names, bulk domains, premium domains, Sunrise/Landrush domain registrations and pre-registrations, memberships or maintenance plans, additional disk space and bandwidth renewals, additional AdSpace advertising funds, custom page layouts, incorporation and brand identity services, Go Daddy branded merchandise, posters, die-cast cars or gift cards. Discount reflected in your shopping cart – cannot be used in conjunction with any other offer, discount or promotion.

Copyright © 2011 GoDaddy.com, Inc. All rights reserved.

linux server status monitoring simple script


Create the following scripts in a file and call the file in crontab at desired intervals

echo “……………………. SERVER MONITORING REPORT ……………………..” > /scripts/report.txt
echo “APACHE SERVER:-” >> /scripts/report.txt
/sbin/service httpd status >> /scripts/report.txt
echo “MYSQL SERVER:-” >> /scripts/report.txt
/sbin/service mysqld status >> /scripts/report.txt
echo “SSH/SFTP:-” >> /scripts/report.txt
/sbin/service sshd status >> /scripts/report.txt
echo “SENDMAIL:-” >> /scripts/report.txt
/etc/init.d/sendmail status >> /scripts/report.txt
echo “…………………………………………………………..” >> /scripts/report.txt

echo “…………………….DISK SPACE …………………..” >> /scripts/report.txt
echo “…………………………………………………………..” >> /scripts/report.txt
df -h >> /scripts/report.txt
echo “…………………………………………………………………….” >> /scripts/report.txt
echo “…………………………………………………………………….” >> /scripts/report.txt
echo “SYSTEM LOAD AVERAGE” >> /scripts/report.txt
top -bn1 | grep -3 “load average” >> /scripts/report.txt
echo “…………………………………………………………………….” >> /scripts/report.txt
#top -n1 >> /scripts/report.txt
echo “…………………………………………………………………….” >> /scripts/report.txt
echo “Report generated on $(date)” >> /scripts/report.txt
echo “……………………. END OF REPORT ……………………..” >> /scripts/report.txt

mail -s “Server Stats on $(date)” aneesh@hellosystemadmin.com < /scripts/report.txt

VPS at lowest price

Do not wonder.. it is true. you can buy a VPS from 7.95 USD / Month

vps1

vps2

How to insert a CSV file in to mysql database through mysql console

When you want to insert larger CSV file in to a mysql database using  PhpMyadmin or any other GUI tools it may take long time or even it  may be stopped. You can easily Import the CSV file in to mysql database using mysql command.  Log on to the server and  open mysql command and log on to the console and do run the following command. I guess the Db name is  testdb

use testdb;
load data local infile ‘CSVFILE.CSV’ into table TABLENAME fields terminated by ‘,’ enclosed by ‘”‘ lines terminated by ‘\n’;

XCart

XCart


Fatal error: Call to undefined function wp_list_addonn() in /home/hellosys/public_html/wp-content/themes/Grante/sidebar.php on line 106