Run in terminal
npm i ckeditor/ckeditor-releases#full/latest --save
or just add to your package.json
"dependencies": {
| brew install automake gettext lzip pkg-config xz gnutls | |
| brew link --force gettext | |
| ./configure | |
| make | |
| make check | |
| sudo make install |
| 'postVarSets' => array( | |
| '_DEFAULT' => array( | |
| //put this after controller and dateFilter... | |
| 'pag' => array( | |
| array( | |
| 'GETvar' => 'tx_news_pi1[@widget_0][currentPage]', | |
| //'noMatch' => 'bypass' | |
| ) | |
| ) | |
| ), |
| // put this two function at the begin of realurl_userconf.php file | |
| function user_encodeSpURL_postProc(&$params, &$ref) { | |
| // $params['URL'] = str_replace('calendar/location/tx_cal_location/location/', 'calendar/location/', $params['URL']); | |
| // $params['URL'] = str_replace('calendar/organizer/tx_cal_organizer/organizer/', 'calendar/organizer/', $params['URL']); |
| /* | |
| Requirement: Bootstrap 3 | |
| Include this after bootstrap.css. Add class of | |
| vert-offset-top-value or vert-offset-bottom-value | |
| to your Bootstrap 3 default rows to prevent row content | |
| from touching the row content above or below. | |
| Usage: | |
| <div class="vert-offset-top-1"> |
.parent {
background: white;
pointer-events: none; // this disable the hover on the .parent
&:hover {
background: gray; // hover applied to .parent but disabled by the previous pointer-events: none;
}
a {
pointer-events: auto; // this enable the pointer againin .ddev folder add a file .ddev/php/xdebug.ini with this:
xdebug.remote_host=10.254.254.254
in PHPStorm in the preferences \ PHP \ Debug \ DBGp Proxy
Host: 10.254.254.254
Port: 9000
| /* tables responsive for smartphones */ | |
| @media only screen and (max-width: $screen-xs-max) { | |
| //Force table to not be like tables anymore | |
| table.table-responsive, | |
| table.table-responsive-labels { | |
| display: block; | |
| thead, tbody, th, td { | |
| display: block; |
| #!/usr/bin/env bash | |
| #replace user server and your-server-www-path | |
| USER=your-ssh-remote-user | |
| SERVER=your-remote-server | |
| SERVERWWWPATH=your-server-absolute-path-www-htdoc | |
| ssh $USER@$SERVER "source ~/.profile; $SERVERWWWPATH/typo3cms database:export -e cf_* -e cache_* -e [bf]e_sessions -e sys_log -e sys_history -e sys_domain -e tx_realurl_*" | ddev exec ../typo3cms database:import && ddev exec ../typo3cms database:updateschema * |