sudo pear upgrade PEAR
sudo pecl install xhprof-0.9.2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ###################################################################### | |
| # Copyright notice | |
| # | |
| # (c) 2013 webconsulting business services gmbh (office@webconsulting.at) | |
| # All rights reserved | |
| # | |
| # Based on work of various TYPO3 authors. | |
| # | |
| # This script is part of the TYPO3 project. The TYPO3 project is |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {namespace ro=Vendor\Package\ViewHelpers} | |
| <section id="tab-user-2" class="tabPane"> | |
| <div class="fieldContainer"> | |
| <div class="accounts"> | |
| <f:for each="{user.accounts}" as="account"> | |
| <div class="account"> | |
| <p class="fieldRowLabel">{account.accountIdentifier}</p> | |
| <div class="rolesContainer"> | |
| <table class="roles" cellspacing="0"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace HelloWorld; | |
| use InvalidArgumentException; | |
| /** | |
| * This class is somewhere in your library | |
| * @Entity | |
| * @Table(name="users") | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SQL: | |
| images int(11) unsigned DEFAULT '0', | |
| ======================================================= | |
| TCA | |
| .... | |
| 'images' => array( | |
| 'exclude' => 0, | |
| 'label' => 'images', | |
| 'config' => \TYPO3\CMS\Core\Utility\ExtensionManagerUtility::getFileFieldTCAConfig('images') | |
| ), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Convert the Facebook IETF RFC 3339 datetime to timestamp format | |
| $created_time = "2011-07-06T08:06:28+0000"; | |
| $date_source = strtotime($created_time); | |
| $timestamp = date('Y-m-d H:i:s', $date_source); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl https://npmjs.org/install.sh | sh |
Note: Suggest using a 64bit version of Ubuntu 12.04LTS for the HTML5 validation component.
Steps from here: http://www.mattzuba.com/2011/03/install-w3c-markup-validation-service-on-ubuntu/
$ sudo apt-get install \
build-essential opensp libosp-dev \
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ( function ( window, undefined ) { | |
| var Aloha = window.Aloha || ( window.Aloha = {} ); | |
| Aloha.settings = { | |
| logLevels: { 'error': true, 'warn': true, 'info': true, 'debug': false, 'deprecated': true }, | |
| errorhandling: false, | |
| ribbon: false, | |
| locale: 'en', | |
| floatingmenu: { | |
| width: 630, |