Hey,
Have deploy first Neos 3 project on test-server. Most works fine. Only there is a folder-pointer-problem (I guess):
AN EXCEPTION WAS THROWN WHILE NEOS TRIED TO RENDER YOUR PAGE
The form identified by "recall-form" could not be loaded in
"/var/www/vhosts/test.provider.com/subdomain.test.provider.com/Data/Forms/recall-form.yaml".
I guess it should point to
´`/var/www/vhosts/test.provider.com/subdomain.test.provider.com/```
Packages/Sites/Vendor.Site/Resources/Private/
Data/Forms/recall-form.yaml
###Settings:
#Vendor.Site/Configuration/settings.yaml
Neos:
Form:
yamlPersistenceManager:
savePath: 'resource://Vendor.Site/Private/Form/'
presets:
########### CUSTOM PRESETS ###########
preset1:
title: 'Preset 1'
parentPreset: 'default'
formElementTypes:
### override default layout path ###
'Neos.Form:Base':
renderingOptions:
layoutPathPattern: 'resource://Vendor.Site/Private/CustomElements/Layouts/{@type}.html'
'Neos.Form:Form':
renderingOptions:
templatePathPattern: 'resource://Vendor.Site/Private/CustomElements/Form.html'
#Vendor.Site/Configuration/NodeTypes.Form.yaml
'Neos.NodeTypes:Form':
properties:
formIdentifier:
ui:
inspector:
editorOptions:
values:
'': ~
# Maps to the file Sites/Vendor.Site/Resources/Private/Form/recall-form.yaml
'recall-form':
label: 'Rückruf anfordern'
Yaml-file is existing:
#/var/www/vhosts/test.provider.com/subdomain.test.provider.com/Packages/Sites/Vendor.Site/Resources/Private/Data/Forms/recall-form.yaml
identifier: recall-form
label: Rückruf
renderingOptions:
submitButtonLabel: Rückruf anfordern
renderables:
-
type: 'Neos.Form:Page'
identifier: recall-page-one
label: Rückruf 1
renderables:
-
type: 'Neos.Form:SingleLineText'
identifier: name
label: Name
validators:
- identifier: 'Neos.Flow:NotEmpty'
properties:
placeholder: Name
defaultValue: ''
-
type: 'Neos.Form:SingleLineText'
identifier: telefon
label: Telefon
validators:
- identifier: 'Neos.Flow:NotEmpty'
properties:
placeholder: 'Telefon'
defaultValue: ''
finishers:
-
#AND SO ON ...
```
### Fusion:
#Vendor.Site/Resources/Private/Fusion/NodeTypes/Form.fusion
prototype(Neos.NodeTypes:Form) {
presetName = 'preset1'
}
On local Server there is no problem with.
- ***What could interrupt the right pointing?***
- ***Is Ressource-pointer somewhere to set?***
- ***Maybe I have to change something for subdomain?***