This file contains 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 J18\J18thmsimkup\Hooks; | |
/*************************************************************** | |
* Copyright notice | |
* | |
* (c) 2014 GLATZ, Josef <[email protected]> | |
* All rights reserved | |
* | |
* This script is part of the TYPO3 project. The TYPO3 project is | |
* free software; you can redistribute it and/or modify |
This file contains 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
apt-get update && apt-get install openjdk-7-jdk | |
mkdir -p /opt/solr-tomcat/tika/ | |
cd /opt/solr-tomcat/tika/ | |
rm ./tika* | |
wget http://archive.apache.org/dist/tika/tika-app-1.2.jar | |
chmod +x tika-app-1.2.jar |
This file contains 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 | |
/****************************************************/ | |
// db_delete_records.php // | |
// Author: Christian Wolfram <[email protected]> // | |
// Date: 12-11-2014 // | |
// // | |
// Deletes all records in the database that // | |
// are marked as deleted. // | |
// // | |
// Run from root directory of your TYPO3 // |
This file contains 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
-- Free JSON Helper for AppleScript is required to fetch Spotify Web API (from Apple App Store) | |
tell application "Spotify" | |
set current_track to null | |
set current_artist to null | |
set current_album to null | |
repeat until application "Spotify" is not running | |
set track_name to name of current track | |
set track_artist to artist of current track | |
set track_album to album of current track |
This file contains 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
10 = FILES | |
10 { | |
begin = 0 | |
maxItems = 1 | |
references { | |
table = pages | |
uid.field = uid | |
fieldName = media | |
} | |
renderObj = IMAGE |
This file contains 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 | |
/*************** | |
* Set backend logo depending on TYPO3_CONTEXT | |
* supports | |
* Development | |
* Testing | |
* Production/Staging | |
* Production/Live | |
*/ | |
if (GeneralUtility::getApplicationContext()->isDevelopment()) { |
This file contains 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
lib.parseFunc.RTE.tags.link.required = 1 |
This file contains 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
tt_content.uploads.20.itemRendering.20.1.10 = TEXT | |
tt_content.uploads.20.itemRendering.20.1.10 { | |
data = register:filename | |
replacement { | |
10 { | |
search = #^(.*[\/\\])#i | |
replace = | |
useRegExp = 1 | |
} | |
} |
This file contains 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
# /etc/redmine/default/configuration.yml | |
production: | |
email_delivery: | |
delivery_method: :smtp | |
smtp_settings: | |
address: 'smtp.gmail.com' | |
port: 587 | |
domain: 'yourGoogleAppDomain.at' | |
authentication: 'plain' |