R Robert9 Well-known member Dec 31, 2020 #1 May someone has an idea where i can change these settings directly in mysql, please? options[useFriendlyUrls] options[boardUrl]
May someone has an idea where i can change these settings directly in mysql, please? options[useFriendlyUrls] options[boardUrl]
R Robert9 Well-known member Dec 31, 2020 #2 In xf_option. But how can i change it in phpMyAdmin? Seems in need a small php, because of the field type? Upvote 0 Downvote
In xf_option. But how can i change it in phpMyAdmin? Seems in need a small php, because of the field type?
P Paul B XenForo moderator Staff member Dec 31, 2020 #3 Why are you trying to change them "directly in mysql"? Just use the option settings in the ACP. Upvote 0 Downvote
R Robert9 Well-known member Jan 1, 2021 #4 I have this usual problem, that xenforo is not useable on my homeserver, when the friedly urls are set. But, you are right, i could get into the acp with a direct-link to change the values for url and friendly-urls. Upvote 0 Downvote
I have this usual problem, that xenforo is not useable on my homeserver, when the friedly urls are set. But, you are right, i could get into the acp with a direct-link to change the values for url and friendly-urls.
P Paul B XenForo moderator Staff member Jan 1, 2021 #5 Logging directly in to the ACP to disable options will always work. Otherwise you can create a custom config.php file and add this: PHP: $c->extend('options', function(\ArrayObject $options) { $options->useFriendlyUrls = false; return $options; }); You can set any options you wish - the ones I use are listed here: https://xenforo.com/community/resou...-test-site.2792/updates#resource-update-36689 Upvote 0 Downvote
Logging directly in to the ACP to disable options will always work. Otherwise you can create a custom config.php file and add this: PHP: $c->extend('options', function(\ArrayObject $options) { $options->useFriendlyUrls = false; return $options; }); You can set any options you wish - the ones I use are listed here: https://xenforo.com/community/resou...-test-site.2792/updates#resource-update-36689