Skip to content

Instantly share code, notes, and snippets.

View BugBuster1701's full-sized avatar
🏠
Working from home

Glen Langer BugBuster1701

🏠
Working from home
  • T-Systems
  • Berlin, Germany
View GitHub Profile
@BugBuster1701
BugBuster1701 / gist:3295805
Created August 8, 2012 15:14
Contao2Go für Contao 3 Gäste
/*
Das Problem ist ja nur die constants.php die nicht gefunden wird und er dadurch ein Fehler anzeigt.
Ich habe daher auf meinem Server nur ein Link im Systemverzeichnis angelegt.
ln -s config/constants.php constants.php
Man müsste nun in /system/modules/c2gadmin/c2g_functions.php es irgendwie hinbekommen, das er an zwei stellen sucht und mit file_exists prüfen ob vorhanden.
Mal so, geht bestimmt noch schöner, in der loadVHostConfig:
*/
@BugBuster1701
BugBuster1701 / gist:3437292
Created August 23, 2012 14:44
Seite einblenden
window.addEvent("domready", function(){
$("wrapper").setStyle('opacity',0);
$("wrapper").set('tween', {duration: 'long'});
$("wrapper").tween('opacity', 1);
});
@BugBuster1701
BugBuster1701 / gist:3864206
Created October 10, 2012 08:53
Problem mit Newsreader, Idee
/*
Der newsreader hat seine eingene 404 Generierung.
Ich hätte gern dass bei nicht gefundenem Beitrag auf die News Lister Seite umgeleitet wird, so in der Art:
*/
$this->redirect('zu neues.html', '301');
@BugBuster1701
BugBuster1701 / gist:3890078
Created October 14, 2012 22:56
Hotlinking blocken
http://schnurpsel.de/bilderdiebe-was-ich-dagegen-tue-279/
@BugBuster1701
BugBuster1701 / gist:3911452
Created October 18, 2012 12:22
CSS with vertical rhythm - CSS und em Angaben
http://drewish.com/tools/vertical-rhythm
@BugBuster1701
BugBuster1701 / gist:4336433
Last active March 7, 2016 14:36
Iteratoren in php u.a. als glob Ersatz per SPL um rekursiv zu suchen
<?php
$dir_iterator = new RecursiveDirectoryIterator("/path");
$iterator = new RecursiveIteratorIterator($dir_iterator, RecursiveIteratorIterator::SELF_FIRST);
// could use CHILD_FIRST if you so wish
foreach ($iterator as $file) {
echo $file, "\n";
}
@BugBuster1701
BugBuster1701 / gist:4521711
Created January 13, 2013 01:38
Manual....
"view source" is your guide.
@BugBuster1701
BugBuster1701 / gist:4669390
Last active December 11, 2015 22:28
Commit Richtlinien / GitInfos
https://github.com/contao/core/commit/c75e2a9818541b851e38b8492250baf4cea56f79#commitcomment-2523886
http://git-scm.com/book/de/Distributed-Git-An-einem-Projekt-mitarbeiten#Commit-Richtlinien
http://git-scm.com/book/de/
@BugBuster1701
BugBuster1701 / gist:5009577
Last active December 14, 2015 01:49
dcaconfig.php und Contao 4
//Contao 2
if ($this->User->isAdmin)
{
...
}
//Contao 4
if (BackendUser::getInstance()->isAdmin)
{
@BugBuster1701
BugBuster1701 / gist:5216541
Last active May 17, 2017 07:51
Apache 2.4 htaccess
#Zugriff verbieten
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
#Zugriff erlauben
<IfModule !mod_authz_core.c>