Archive for May 2008
FMud is a simple web based Flash mud client. A running demo, feature list and installation instructions are available on the FMud project page. Download Version 0.3 Released on 27th May 2008. 1. Bold colours replaced by bright versions. 2. Both bright and normal versions of ANSI colours are now fully configurable. 3. Colour parsing… [more]
May 27th, 2008 | FMud | 1 Comment
Getting WordPress set up with pretty urls on nginx is fairly straightforward. First thing we need to do is create a database for WordPress in MySQL and a user for this database. mysql -u root -p CREATE DATABASE wordpress; GRANT ALL PRIVILEGES ON wordpress.* TO “user”@”localhost” IDENTIFIED BY “pass”; FLUSH PRIVILEGES; EXIT Enter your MySQL… [more]
May 26th, 2008 | Linux | 1 Comment
The latest security update to Adobe Flash player now makes it compulsory to have a socket policy file even if the application and the server are on the exact same domain. According to Adobe a crossdomain.xml file will no longer apply to socket requests, instead a separate socket policy file needs to be provided to… [more]
May 14th, 2008 | FMud | 18 Comments
FMud is a simple web based Flash mud client. A running demo, feature list and installation instructions are available on the FMud project page. Download Version 0.2 Released on 13th May 2008. 1. Added dark grey colour (ANSI black) configurable from settings window. 2. Example HTML file modified to resolve compatibility problem with Firefox. 3…. [more]
May 13th, 2008 | FMud | 3 Comments
The nginx webserver is a lightweight alternative to apache and is perfect for running on a vps where resources are scarce. First we need to install our packages. sudo apt-get install mysql-server mysql-client libmysqlclient15-dev I am using apt-get instead of aptitude here so we don’t get a lot of unwanted dependencies installed. The MySQL install… [more]
May 7th, 2008 | Linux | 25 Comments
FMud is a simple web based Flash mud client. A running demo, feature list and installation instructions are available on the FMud project page. Download Version 0.1 Released on 1st May 2008. 1. Initial release.
May 1st, 2008 | FMud | 0 Comments
Following on from my previous article on setting up a vps server running Ubuntu 8.04 I am now going to configure a simple firewall. Linux uses a rules based firewall system known as iptables. To check your current rules use the following command. sudo iptables -L As it’s a new install we don’t have many… [more]
May 1st, 2008 | Linux | 0 Comments
These are the steps I took to setup a fresh vps at linode.com running Ubuntu 8.04. Hopefully this will serve as a basic tutorial to configuring and securing a linux server. Once you’ve deployed your distribution in the linode account manager and waited for the server to build your vps you need to connect to… [more]
May 1st, 2008 | Linux | 2 Comments