Sunday, November 13, 2011

Munster V Northampton, 2011-11-12

DPP_0031DPP_0030DPP_0027DPP_0021DPP_0017DPP_0016
DPP_0046DPP_0044DPP_0035DPP_0063DPP_0049DPP_0090
DPP_0072DPP_0136DPP_0118DPP_0114DPP_0112DPP_0168
DPP_0194DPP_0189DPP_0188DPP_0134DPP_0174DPP_0179
A few photos from the Heineken Cup 2012-13 Pool 1 Match 1 in Thomond Park, Limerick

Tuesday, November 8, 2011

Extending EditPlus with PHP IDE Functionality

An excellent article detailing how to add PHP syntax checking, context sensitive PHP help commands, and google searching to Editplus for PHP development.
The most useful in my view is the Syntax Checker, which can be added as a user tool in Tools -> Configure User Tools-> Add Tool >> Program, and enter:

Menu text   : PHP syntax checker
Command     : c:\php\php.exe -l
Argument    : $(FileName)

You can then map it to a keyboard shortcut using the Keyboard subtree option on the left. I have found SHIFT-S and very handy companion to CTRL-S for saving and verifying your PHP file.

SOURCE
http://www.base64.co.uk/extend-editplus-php-ide/

Saturday, November 5, 2011

Dollymount Strand

IMG_0764IMG_0762IMG_0753IMG_0742IMG_0806IMG_0801
IMG_0799IMG_0796IMG_0789IMG_0787IMG_0786IMG_0785
IMG_0768IMG_0765

Dollymount Strand, a set on Flickr.
Photos from Dollymount Strand on Bull Island

Leinster V Munster 2011-11-04

IMG_0736IMG_0717IMG_0715IMG_0714IMG_0713IMG_0719
IMG_0707IMG_0706IMG_0703IMG_0690IMG_0688IMG_0732
IMG_0731IMG_0727IMG_0723IMG_0721IMG_0720IMG_0685
IMG_0682IMG_0674IMG_0670IMG_0668IMG_0658IMG_0654
Photos from the Leinster V Munster Rabo Direct Pro 12 match in the Aviva Stadium, Dublin.
Final Score: Leinster 24, Munster 19

Thursday, November 3, 2011

How to add multiple servers to phpMyAdmin

Add the following to your phpmyadmin/config.inc.php file for each additional server:


$i++;
$cfg['Servers'][$i]['host'] = '192.245.1.234';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['compress'] = FALSE;
$cfg['Servers'][$i]['controluser'] = '';
$cfg['Servers'][$i]['controlpass'] = '';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['only_db'] = '';
$cfg['Servers'][$i]['verbose'] = '';
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin'; // 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark'; // 'pma_bookmark'
$cfg['Servers'][$i]['relation'] = 'pma_relation'; // 'pma_relation'
$cfg['Servers'][$i]['table_info'] = 'pma_table_info'; // 'pma_table_info'
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords'; // 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages'; // 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info'] = 'pma_column_info'; // 'pma_column_info'
$cfg['Servers'][$i]['history'] = 'pma_history'; // 'pma_history'
$cfg['Servers'][$i]['verbose_check'] = TRUE;
$cfg['Servers'][$i]['AllowRoot'] = TRUE;
$cfg['Servers'][$i]['AllowDeny']['order']
= '';
$cfg['Servers'][$i]['AllowDeny']['rules']
= array();




If you have only one server configured, $cfg['ServerDefault'] = 1;


// If you have more than one server configured, you can set $cfg['ServerDefault']
// to any one of them to autoconnect to that server when phpMyAdmin is started,
// or set it to 0 to be given a list of servers without logging in
// If you have only one server configured, $cfg['ServerDefault'] *MUST* be
// set to that server.
//$cfg['ServerDefault'] = 1; // Default server (0 = no default server)


Append the following lines if you have configured multiple servers to your phpmyadmin.


$cfg['ServerDefault'] = 0; // Default server (0 = no default server)
$cfg['Server'] = '';
unset($cfg['Servers'][0]);


SOURCE:
http://www.facebook.com/topic.php?uid=115960095095777&topic=70