Munster V Northampton, 2011-11-12, a set on Flickr.
A few photos from the Heineken Cup 2012-13 Pool 1 Match 1 in Thomond Park, Limerick
Sunday, November 13, 2011
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:
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/
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
Dollymount Strand, a set on Flickr.
Photos from Dollymount Strand on Bull Island
Leinster V Munster 2011-11-04
Leinster V Munster 2011-11-04, a set on Flickr.
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
$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
Subscribe to:
Posts (Atom)