Decided to try restoring my db preupdate and running setup again.
I’m getting an error message:
Fatal error: Call to a member function getOption() on a non-object in /home/moaustin/public_html/core/model/modx/modresource.class.php on line 665
I got this last time as well now that I think about it and when I re-run setup it completes the 2nd time.
This is the code associated:
public function getAliasPath($alias = ’’,array $fields = array()) {
if (empty($fields)) $fields = $this->toArray();
$workingContext = $this->xpdo->getContext($fields['context_key']);
if (empty($fields['uri_override']) || empty($fields['uri'])) {
/* auto assign alias if using automatic_alias */
if (empty($alias) && $workingContext->getOption('automatic_alias', false)) {
$alias = $this->cleanAlias($fields['pagetitle']);
} elseif (empty($alias) && isset($fields['id']) && !empty($fields['id'])) {
$alias = $this->cleanAlias($fields['id']);
} else {
$alias = $this->cleanAlias($alias);
}
-Brian