Add MySQL User | Give them Permissions On a Database

This simple guide demonstrates adding a new user to mysql and giving that user full access rights to a particular db within MySQL. This is really useful when you want to create a new database user for a new wordpress isntall. You can do this from the command line of your server if you login… Continue reading Add MySQL User | Give them Permissions On a Database

Turn your Blog into a Mobile App for Nokia | Nokia App for Everyone

Nokia has made it incredibly easy for anyone who is connected to the internet to create their own application with the Ovi App Wizard. It basically captures the RSS feed from your blog and prints it to a neat looking, customizable, application frame that you can put on the Ovi store either for free or… Continue reading Turn your Blog into a Mobile App for Nokia | Nokia App for Everyone

Change jBoss 5 Default Port

This guide explains how to change the default port of jboss 5.x (which is 8080) to whatever port you want Open the server.xml file that corresponds to your deployment server i.e. vi <jboss-home>/server/default/deploy/jbossweb.sar/server.xml Find the line: <Connector protocol=”HTTP/1.1″ port=”8080″ address=”${jboss.bind.address}” Change port 8080 to whatever port you would like to use Restart jBoss

Published
Categorised as How To's

simple mysqldump example

This post shows how to export a database from the command line. You can export for backup purposes or you can export and move the sql database file to a new database server. Here is a simple example of using mysqldump on ubuntu linux: mysqldump -u root -p MY_DATABASE_NAME > /home/myuser/db_backup.2014.08.07.sql And here is how… Continue reading simple mysqldump example

Mark as Draft in Word 2010

This quick guide explains how to mark a Microsoft Word 2010 (or 2007) document as a draft (using that typical diagonal DRAFT text that goes across each page) Go to the Page Layout tab Select Watermark Choose Draft 1

Published
Categorised as How To's

How to Fix Error duplicate Id for a component selectParent

This error appears in in some projects created with seam 2 when you try to create or edit a record in the web ui. It seems to be a bug. You need to modify one line in either your seam-home/seam-gen/view/edit.page.xml.ftl or seam-home/seam-gen/view/edit.xhtml.ftl depending on your version of seam. open up the file and change this… Continue reading How to Fix Error duplicate Id for a component selectParent

Published
Categorised as How To's