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
CONSTANTS: | |
protocol = http | |
[globalString = IENV:TYPO3_SSL=1] | |
protocol = https | |
[global] | |
host = domain.com | |
[globalString = IENV:HTTP_HOST=www.domain.de] | |
host = www.domain.de |
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
// mittwald | |
ssh | |
p108923.typo3server.info |
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
http://www.web2generators.com/apache-tools/htpasswd-generator |
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
AuthType Basic | |
AuthName "Dev Area" | |
AuthUserFile /home/www/p108923/home/www/p108923/html/verovis/.htpasswd | |
Require valid-user | |
// passwrod generator under htpasswd |
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
config{ | |
locale_all = de_CH.UTF-8 | |
index_enable = 1 | |
sys_language_uid = 0 | |
language = de | |
} |
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
please choose ... | | |
input 1 | |
input 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
#ts | |
tt_content { | |
stdWrap { | |
innerWrap { | |
cObject { | |
default.20.40 = CASE | |
default.20.40 { | |
key.field = layout | |
1 = TEXT |
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
//realurl_config.php (we have to change two files) | |
// change "newsDetailConfiguration" with a blog single page id | |
<?php | |
$TYPO3_CONF_VARS['FE']['addRootLineFields'].= ',tx_realurl_pathsegment'; | |
$TYPO3_CONF_VARS['EXTCONF']['realurl']['_DEFAULT'] = array( | |
'pagePath' => array( | |
'type' => 'user', |
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
/* change h3 to h2 in blog list view */ | |
$(function() { | |
$('.news-list-view h3').each(function(i, em) { | |
$(em).replaceWith('<h2>'+$(em).html()+'</h2>'); | |
}); | |
}); |
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
https://axelerant.com/add-custom-css-classes-to-the-typo3-rte/ |