Size: a a a

2020 October 07

AK

Andrey K in Evolution CMS
А вы про контроллеры и шаблонизаторы. Цикл и эхо траблы...
источник

G

Group in Evolution CMS
Aliaksandr Sadouski
Запулили б сразу запуск любого сниппета в виде \Helper::DocLister($params, $key, $time) да не мучались ))
легко делается 🙂
источник

AS

Aliaksandr Sadouski in Evolution CMS
Group
легко делается 🙂
Так и делали б сразу для единобразия ))
источник

AS

Aliaksandr Sadouski in Evolution CMS
Бомбанули б через __callStatic и зажили веселее прежнего ))
источник

MH

Marc Hoogstrate in Evolution CMS
Hi, is it possible with .htaccess to have one URL http and all other https ?
источник

MH

Marc Hoogstrate in Evolution CMS
RewriteCond %{SERVER_PORT} !=443
RewriteRule (.*) https://mysite.nl/$1 [R=301,L]
RewriteCond %{HTTPS} !^on$
RewriteRule (.*) https://mysite.nl/$1 [R,L]
источник

A

Artem in Evolution CMS
Marc Hoogstrate
Hi, is it possible with .htaccess to have one URL http and all other https ?
Hi! I use this variant:
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,NE]
источник

MH

Marc Hoogstrate in Evolution CMS
Force https is set off on the server and I have added 😮
RewriteCond %{SERVER_PORT} !=443
RewriteRule (.*) http://mysite.nl/product1 [R=301,L]
RewriteCond %{HTTPS} !^on$
RewriteRule (.*) http://mysite.nl/product1 [R,L]
источник

MH

Marc Hoogstrate in Evolution CMS
I will try that one!
источник

MH

Marc Hoogstrate in Evolution CMS
That won't work
источник

С

Сергей in Evolution CMS
Marc Hoogstrate
That won't work
RewriteCond %{ENV:HTTPS} off
RewriteCond %{THE_REQUEST} !^exchange [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

all https
/exchange - http
источник

MH

Marc Hoogstrate in Evolution CMS
I will try tomorrow ! Found some other htaccess but that didn’t work too :(
источник

AA

Am Ambrion in Evolution CMS
Оппа, еще одна Легенда ушла. Теперь нет Эдди Ван Халена.
источник

A

Alexander in Evolution CMS
все там будем
источник

DM

Dmytro Makohonenko in Evolution CMS
Marc Hoogstrate
I will try tomorrow ! Found some other htaccess but that didn’t work too :(
1) redirect rules to https depends on server settings. First, check the faq from your hosting provider how to turn on https in htaccess

2) the main idea is to check if https is ON for certain page (https://some_site.dom/certain_page.html)  and then redirect to http
RewriteCond %{HTTPS} =on ( or RewriteCond %{HTTPS} ^on$) (or RewriteCond %{SERVER_PORT} ^443$) ( or some other strange record)
RewriteRule ^certain_page http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
источник

I

Igor in Evolution CMS
ктото залил шелл и взламал сайт
источник

MH

Marc Hoogstrate in Evolution CMS
Сергей
RewriteCond %{ENV:HTTPS} off
RewriteCond %{THE_REQUEST} !^exchange [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

all https
/exchange - http
+ Thanks! Seems to work 🙂
источник

A

Axenia in Evolution CMS
Marc (60.11) увеличил карму Serg_64j (1181.58)
источник

MH

Marc Hoogstrate in Evolution CMS
Dmytro Makohonenko
1) redirect rules to https depends on server settings. First, check the faq from your hosting provider how to turn on https in htaccess

2) the main idea is to check if https is ON for certain page (https://some_site.dom/certain_page.html)  and then redirect to http
RewriteCond %{HTTPS} =on ( or RewriteCond %{HTTPS} ^on$) (or RewriteCond %{SERVER_PORT} ^443$) ( or some other strange record)
RewriteRule ^certain_page http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Thank you for your explanation Dmytro
источник

S

Serious in Evolution CMS
С версии эво вышедшей после 5 февраля 2021 года прекращается поддержка MySQL 5.6
источник