Restore Deleted Database on Godaddy
Dec02

Restore Deleted Database on Godaddy

I was doing a little maintenance on my Godaddy account and committed a MAJOR screwup. I had moved a WordPress page from a subfolder onto the main drive of a domain. Godaddy was still showing it in my development location. I thought it was a different one, and after checking that there were indeed no files in that drive that would be accidentally deleted, I removed that WordPress installation along with its associated database. As I...

Read More
Moving A WordPress Site
Jun20

Moving A WordPress Site

I recently moved this WordPress site from www.lexclab.info/WebProg to www.epiphenie.com. Both domains were located on the same server, using GoDaddy Linux Shared Hosting. Some of the instructions below may change for your particular install, but the general procedure should be the same. For this tutorial, I am using the following programs and technologies: [GoDaddy] Linux Shared Hosting Chrome Web Browser [FileZilla] FTP Client...

Read More

Financial Database Table Creation Tutorial

This is the SQL command set that can be uploaded to the database and automatically create and fill the tables. Download the file from from HERE. To view the SQL and copy/paste it, you can see that below. [code lang="SQL"] CREATE TABLE masterlogin ( ml_id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, username varchar(120) NOT NULL, password VARCHAR(30) NOT NULL ) TYPE = MYISAM; INSERT INTO masterlogin (ml_id, username, password) VALUES...

Read More

Database Tutorial

How to install the Database in GoDaddy In GoDaddy, go to the Hosting Control Center. (Note – I set this up on my free GoDaddyhosting account and PHP gave me trouble with posts, so I had to move the PHP to my paid hosting account. The database is still on my free account.) Go to “Databases” and click on MySQL. Click on the “Create Database” button and go through the wizard. Once the process is complete and...

Read More

SQL

SQL, often referred to as Structured Query Language is a database computer language designed for managing data in relational database management systems. I recommend you check out the SQL page in [W3 Schools] for specifics on the language and its usage. I have specifically been using the open-source MySQL language along with PHP in my webpages. See my [cref MySQL] Post and my [cref PHP] Post for more...

Read More

Pin It on Pinterest