Jump to content
  • 0

Zakładka "Ustawienia ogólne" w backoffice


m.salekk

Question

Dzień dobry

 

mam (dla mnie) spory problem z przyciskiem Ustawienia ogólne (w kategorii Preferencje) w panelu admina - w menu po lewej.

Po kliknięciu przycisku "Ustawienia ogólne" z rozwijanej listy Preferencje przekierowuje mnie do Wygląd - > Strony!!! Nie mogę w żaden sposób się dostać do ustawień, a potrzebuję włączyć SSL... 

 

Jak tam dotrzeć? Jak naprawić działanie odnośników w tym menu?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Jeżeli chodzi o backoffice to w katalogu administracyjnym  /controllers/admin/AdminPreferencesController.php.

Sprawdź czy masz cos takiego:

$fields = array(
                'PS_SSL_ENABLED' => array(
                    'title' => $this->l('Enable SSL'),
                    'desc' => $this->l('If you own an SSL certificate for your shop\'s domain name, you can activate SSL encryption (https://) for customer account identification and order processing.'),
                    'hint' => $this->l('If you want to enable SSL on all the pages of your shop, activate the "Enable on all the pages" option below.'),
                    'validation' => 'isBool',
                    'cast' => 'intval',
                    'type' => 'bool',
                    'default' => '0'
                ),
            );

            $fields['PS_SSL_ENABLED_EVERYWHERE'] = array(
                'title' => $this->l('Enable SSL on all pages'),
                'desc' => $this->l('When enabled, all the pages of your shop will be SSL-secured.'),
                'validation' => 'isBool',
                'cast' => 'intval',
                'type' => 'bool',
                'default' => '0',
                'disabled' => (Tools::getValue('PS_SSL_ENABLED', Configuration::get('PS_SSL_ENABLED'))) ? false : true

 

Edited by Krzysztof (see edit history)
Link to comment
Share on other sites

  • 0

Ok, udało się włączyć

 

 

Teraz mam nowy problem - SSL nie działa poprawnie na wszystkich stronach... Na stronie głównej i stronach kategorii jest taka informacja (załącznik)

 

Jak to naprawić?

ssl.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...