Archive | Server RSS feed for this section

Clear DNS Cache

9. April 2009

2 Comments

Clear DNS Cache

Mac OS Tiger Mac OS Leopard I have experienced some problems in the past (and still do from time to time) with opening specific sites from my computer while my internet connection is fine and other sites open without any issues.

Continue reading...

Redirect a Web Page

3. December 2008

1 Comment

Redirect a Web Page

This article will guide you through the procedure of redirecting a web page properly, the search engine friendly way with HTTP 301 status in order to tell search engines that the page has permanently moved to a different location.

Continue reading...

Install Wordpress via Command Line

2. September 2008

3 Comments

Install Wordpress via Command Line

I wrote a useful article/tutorial over at BloggingRocket which guides you through the process of installing Wordpress with Shell Access. Please feel free to check it out and comment.

Continue reading...

CakePHP Crontab

28. February 2008

4 Comments

Due to the way that CakePHP rewrites URL requests with its router, it might seem confusing to execute a Crontab to run a controller action. I will show you how to set up a cron dispatcher so that you can execute all your different controller action schedules on a single file and pass the controller [...]

Continue reading...

Xampp phpMyAdmin Problem

23. February 2008

4 Comments

I started XAMPP today and tried to open phpMyAdmin (http://localhost/phpmyadmin/) in my browser in order to do some database management. Unfortunately I was presented with the following error message : cannot start session without errors, please check errors given in your PHP and/or webserver log file and configure your PHP installation properly After playing around a bit, [...]

Continue reading...

Linux : Change file/folder owner

20. February 2008

0 Comments

On a Unix based system, all files and folders belong to a group and a owner. Or rather, an owner and a group has specific permissions to read, write and execute files. So you might need to change the owner of certain files and folders so that you’ll be able to open them, edit them [...]

Continue reading...

MySQL : Transfer database from server to another server

20. February 2008

6 Comments

In this article, I will show you how to dump a mysql database from one server to another remote server without having to export and import your SQL structure and data. We’ll dump a database directly to another empty database on another, remote server. In order to do this, you’ll need shell access to both [...]

Continue reading...

Server to server file transfers

16. February 2008

1 Comment

Server to server file transfers

Server to server file transfers are relatively easy on a dedicated or virtual private server running Unix. I’ll quickly show you how to use the scp command which acts just about exactly the same as the cp command. It copies all files from a specified source path to a destination path on the remote server [...]

Continue reading...

Crontab : Disable email notifications

5. October 2007

0 Comments

By default, when you schedule a cronjob, the cron daemon will email the administrator with the results of the schedule. You can easily turn off email reporting by appending the string “>/dev/null 2>&1” (without quotes) to the end of the command. Like this : wget http://domain.com >/dev/null 2>&1 Hope this helps!

Continue reading...