From your phpMyAdmin control panel:
1. Select the database where the program's tables are stored.
2. Click on the "SQL" tab
3. Copy and paste the content from the following files into the text box on the "SQL" screen (In this order):
- mysql_ppSD_table_structure.sql
- mysql_ppSD_templates_set_default.sql
- mysql_ppSD_options_insert.sql
4. If you receive an error stating that "ppSD_templates" does not exist, add the following code to the "mysql_ppSD_table_structure.sql" file and try again:
CREATE TABLE `ppSD_templates` (
`id` varchar(30) NOT NULL default '',
`subject` varchar(200) NOT NULL default '',
`title` varchar(255) NOT NULL default '',
`content` text NOT NULL,
PRIMARY KEY (`id`)
);