Default title format and separator in 8.5.2

Permalink
How to change default colons " :: " to another?

{{ title }}{{ page }} {{ separator }} {{ sitename }}

i try these
https://www.concrete5.org/community/forums/5-7-discussion/changing-t...
but not work as should.
Thanks..

 
Steevb replied on at Permalink Reply 1 Attachment
Steevb
On page example:
In edit mode click ‘Cog’ icon at the top of page.
Click ‘SEO’ link in sidebar.
Type page title in ‘Meta Title’ input box.
Click ’Save Changes’.
See attached.
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl
create an empty concrete.php file in application/config folder (if you don't already have one in that location) and add this code...
<?php
return [
    'seo' => [
        'exclude_words' => 'a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, ' .
            'since, than, the, this, that, to, up, via, with',
        /*
         * URL rewriting
         *
         * Doesn't impact concrete.seo.url_rewriting_all which is set at a lower level and
         * controls whether ALL items will be rewritten.
         *
         * @var bool
         */
        'url_rewriting' => false,
        'url_rewriting_all' => false,

In this example I changed :: to a dash - in the 'title_format' and 'title_segment_separator'
Usernhfdy73 replied on at Permalink Reply
Thanks for a message. i try that put get error:

An exception occurred while executing 'insert into Collections (cHandle, cDateAdded, cDateModified) values (?, ?, ?)' with params ["\x62\x72\x65\x61\x64\x63\x72\x75\x6d\x62\xbb\x74\x72\x61\x69\x6c", "2019-09-23 13:34:48", "2019-09-23 13:34:48"]: SQLSTATE[HY000]: General error: 1366 Incorrect string value: '\xBBtrail' for column 'cHandle' at row 1
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
post the contents of the application/config/concrete.php file.
EDIT which message were you responding to, my message or Steevb?