Posts

Showing posts from November, 2010

Using local PhpMyAdmin to access MySql database remotely hosted on GoDaddy

1. Log in to GoDaddy account and launch the hosting control panel 2.Goto the Databases ->MySQL database 3. Click the Action edit button and check the database detail. It looks like 4. Open the PhpMyAdmin in In GoDaddy.  5. From the GoDaddy PhpMyAdmin window, find the TCP/IP value in line. The TCP IP value will be used in the PhpMyAdmin configuration              Server: xxx.db.3695964.hostedresource.com (173.201.88.100 via TCP/IP) 6. In the folder where Phpmyadmin installed , find the file config.inc.php and open it. 7. Find the server configuration section as following /*  * Servers configuration  */ $i = 0; /*  * First server  */ $i++; /* Authentication type and info */ $cfg['Servers'][$i]['auth_type']            = 'config'; $cfg['Servers'][$i]['user']                 = 'root'; $cfg['Servers'][$i]['password']             = ''; $cfg['Servers'][$i]['AllowNoPassword']      = true; /* Server...

MySQL and Apache on Windows Vista

1.Download XAMPP from  http://www.apachefriends.org/en/xampp-windows.html 2. Run the set up file and install it in C:\XAMPP\xampp 3. Go to C:\XAMPP\xampp\apache\conf and edit the httpd.conf to change the listen port I change it from 80 to 81 because my .Net port already took port 80 #Listen 0.0.0.0:80 #Listen [::]:80 Listen 81 4. Now start Apache service and MySql service from XAMPP control panel application. 5. Click the MySQL Admin and the PhP admin will start.

coupon code for Arxvi hosting

20% off for hosting coupon fbwh20

Was told by GoDaddy that I have too many files for my unlimited shared hosting plan

About 5 days ago I got an email from GoDaddy that my hosting account will be moved to another server so that the web site performance will be improved. I was told that it would take about 24-48 hours and my hosting control panel will be unavailable. After 2 days the control is still unavailable. I called GoDaddy and the technical support said I have too many files and databases and suggested me to wait for another 24 to 48 hours. I Waited. And then I got an email from GoDaddy last night that I violated the usage of GoDaddy TOS. I had to reduce my file number under 50,000 before Dec 6 or my account will be deactivated. I immediately called GoDaddy and asked them how and where I am going to find the file number limitation for a unlimited share plan. Where does this 50,000 file limitation being mentioned? The technical support told me that it might be in the GoDaddy Legal document and let me go to this page.  http://www.godaddy.com/Legal-Agreements.aspx?ci=20802  I asked him to show me ...

How to enable multiple language support in ASP.Net web site

The following is a sample solution to enable multiple language support in a ASP.Net web page developed using c#. 1. First create a class name as Base using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Threading; using System.Globalization; /// <summary> /// Summary description for BasePage ///  /// Base page is the parent for all other pages. It sets the page to a specifi language culture. ///  /// </summary> public class BasePage : System.Web.UI.Page {     public BasePage()     {         //         // TODO: Add constructor logic here         //     }     /// <summary>     /// Set current page language culture ...