git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
# Redis (has to be configured to different databases on shared hosting) | |
TYPO3_TypoScript_Content: | |
backend: TYPO3\Flow\Cache\Backend\RedisBackend | |
backendOptions: | |
defaultLifetime: 0 | |
Flow_Mvc_Routing_Resolve: | |
backend: TYPO3\Flow\Cache\Backend\RedisBackend | |
backendOptions: | |
defaultLifetime: 0 |
server { | |
listen *:80; | |
server_name neos.dev; | |
root /var/www/neos/Web; | |
autoindex off; | |
access_log /var/log/nginx/neos.dev.access.log; | |
error_log /var/log/nginx/neos.dev.error.log; | |
index index.php index.html; |
<?php | |
// Change this to your own taxonomy and post type | |
new Tag_Checklist( 'taxonomy_name', 'post_type' ); | |
/** | |
* Use checkbox term selection for non-hierarchical taxonomies | |
* | |
* @author Hugh Lashbrooke |
var parser = document.createElement('a'); | |
parser.href = "http://example.com:3000/pathname/?search=test#hash"; | |
parser.protocol; // => "http:" | |
parser.hostname; // => "example.com" | |
parser.port; // => "3000" | |
parser.pathname; // => "/pathname/" | |
parser.search; // => "?search=test" | |
parser.hash; // => "#hash" | |
parser.host; // => "example.com:3000" |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream