Author Archives: admin

How to increase Allocated memory for wordpress

To increase the default WordPress memory add the following line to the wp-config.php file:

define(’WP_MEMORY_LIMIT’, ’64M’);

Share

Recent designs

MyBunnyGirlBoutique.com website design

JackPool website re-design

Share

Sheersoftware.com Bookshop Add-on

Sheersoftware.com bookshop add-on

This template was for Sheersoftware.com Bookshop add-on.

Share

Whois website design

Whois website template

Visit Site

Share

Link exchange add-on website template

Link exchange add-on website template

Visit Website.

Link exchange add-on website template

Share

MyShoppingGenie website template

MyShoppingGenie website template

MyShoppingGenie website template

Share

North Coast Services website template

North Coast Services website template

North Coast Services website template, this template is not in use at the moment.

Share

Vbulletin experience [Sheersoftware.com]

Just to show off my Vbulletin experience here. Sheersoftware is built on Vbulletin Content management system.

Website designer with Vbulletin experience

Share

How to import a CSV/Excel file into Mysql

You could write a very long PHP script that will allow you to upload a CSV file to a Mysql database but this could take more time and memory. So you could import the CSV file directly into the Mysql database/table. phpmyadmin will allow you to do this very easily, if you browser through the tool. Below I shall show you a MySQL SQL that will do it easily.

To import a CSV/Excel file into a MySQL database/table. If it’s an Excel file you would need to export it to a CSV file and remove the CSV headers, comments/empty data  from the generated CSV that Excel might include.

Then use the following SQL prototype into the MySQL table.

LOAD DATA LOCAL INFILE ‘C:\\xampp\\tmp\\example.csv’ REPLACE INTO TABLE ‘tablename’
FIELDS TERMINATED BY ‘;’
ENCLOSED BY ‘”‘
ESCAPED BY ‘\\’
LINES TERMINATED BY ‘\r\n’

The REPLACE keyword is optional. As well as the ENCLOSED BY,  ESCAPED BY and lines LINES TERMINATED BY, these control how data is extracted from the CSV file for instance they can help if you have columns enclosed with double-quotes such as Excel exports, etc.You can also include the table feilds at the end for example:

(firstfield, secondfield, thirdfield)

These are the fields where the data will be put in that order.

Share

MyShoppingGenie website template

Shopping Genie website template

This was a template I proposed for a MyShoppingGenie website as a template/theme

Share
Page 1 of 212