You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When i use form block inside list block getting below issue.
Fatal error: Element $id not found for this page in F:\xampp7\htdocs\4e-consulting\vendor\dnadesign\silverstripe-elemental\src\Extensions\ElementalContentControllerExtension.php on line 47
Notice: Undefined index: args in F:\xampp7\htdocs\4e-consulting\vendor\silverstripe\framework\src\Dev\Backtrace.php on line 216
Notice: Trying to access array offset on value of type null in F:\xampp7\htdocs\4e-consulting\vendor\silverstripe\framework\src\Dev\Backtrace.php on line 216
[User Error] Element $id not found for this page
POST /4e-consulting/contact-us/element/125/Form
Line 47 in F:\xampp7\htdocs\4e-consulting\vendor\dnadesign\silverstripe-elemental\src\Extensions\ElementalContentControllerExtension.php
Source
38 $element = $elementOwner->$elementalAreaRelation()->Elements()
39 ->filter('ID', $id)
40 ->First();
41
42 if ($element) {
43 return $element->getController();
44 }
45 }
46
47 user_error('Element $id not found for this page', E_USER_ERROR);
48 return false;
49 }
50 }
The text was updated successfully, but these errors were encountered:
When i use form block inside list block getting below issue.
Fatal error: Element $id not found for this page in F:\xampp7\htdocs\4e-consulting\vendor\dnadesign\silverstripe-elemental\src\Extensions\ElementalContentControllerExtension.php on line 47
Notice: Undefined index: args in F:\xampp7\htdocs\4e-consulting\vendor\silverstripe\framework\src\Dev\Backtrace.php on line 216
Notice: Trying to access array offset on value of type null in F:\xampp7\htdocs\4e-consulting\vendor\silverstripe\framework\src\Dev\Backtrace.php on line 216
[User Error] Element $id not found for this page
POST /4e-consulting/contact-us/element/125/Form
Line 47 in F:\xampp7\htdocs\4e-consulting\vendor\dnadesign\silverstripe-elemental\src\Extensions\ElementalContentControllerExtension.php
Source
38 $element = $elementOwner->$elementalAreaRelation()->Elements()
39 ->filter('ID', $id)
40 ->First();
41
42 if ($element) {
43 return $element->getController();
44 }
45 }
46
47 user_error('Element $id not found for this page', E_USER_ERROR);
48 return false;
49 }
50 }
The text was updated successfully, but these errors were encountered: