Add vers=4 to the mount command.
sudo mount -o vers=4,resvport,rw -t nfs x.x.x.x:/home mount
| - | |
| name: 'Event single' | |
| uriPattern: '{node}/events/{--acme_calendar-calendar.event}' | |
| defaults: | |
| '@package': 'TYPO3.Neos' | |
| '@controller': 'Frontend\Node' | |
| '@action': 'show' | |
| '@format': 'html' | |
| '--acme_calendar-calendar': | |
| '@package': 'Acme.Calendar' |
| page.head.stylesheets { | |
| main = TYPO3.TypoScript:Tag { | |
| tagName = 'link' | |
| attributes { | |
| rel = 'stylesheet' | |
| href = TYPO3.TypoScript:ResourceUri { | |
| package = 'Acme.Demo' | |
| path = 'Styles/Main.min.css' | |
| } | |
| } |
| (function($) { | |
| $(function() { | |
| try { | |
| sessionStorage.setItem( | |
| 'TYPO3.Neos.lastVisitedNode', | |
| document.querySelector('meta[name="neos-last-visited-node"]').getAttribute('content') | |
| ); | |
| } catch (e) { | |
| throw e; | |
| } |
| prototype(footer) < prototype(ContentCollection) { | |
| nodePath = 'footer' | |
| closestPageWithContent = ${q(node).add(q(node).parents().get()).has(this.nodePath + '[_numberOfChildNodes != 0]').get(0)} | |
| @override.contentCollectionNode = ${Neos.Node.nearestContentCollection(this.closestPageWithContent ? this.closestPageWithContent : node, this.nodePath)} | |
| } |
| <?php | |
| namespace Acme\Demo\Controller; | |
| /* * | |
| * This script belongs to the TYPO3 Flow package "Acme.Demo". * | |
| * * | |
| * */ | |
| use TYPO3\Flow\Annotations as Flow; | |
| use Acme\Demo\Domain\Model\Token; |
| TYPO3: | |
| Neos: | |
| typoScript: | |
| enableObjectTreeCache: TRUE |
| <?php | |
| class Application extends \TYPO3\Surf\Application\TYPO3\Neos { | |
| /** | |
| * Returns a workaround to set a PHP setting for the runtime | |
| * | |
| * @return string | |
| */ | |
| public function getFlowScriptName() { | |
| return 'flow > /dev/null && FLOW_CONTEXT=' . $this->getContext() . ' php --define memory_limit=2G ./flow'; |
| { | |
| "name": "typo3/neos-base-distribution", | |
| "description": "TYPO3 Neos Base Distribution", | |
| "license": "GPL-3.0+", | |
| "config": { | |
| "vendor-dir": "Packages/Libraries", | |
| "bin-dir": "bin" | |
| }, | |
| "require": { | |
| "typo3/neos": "1.2.*", |