Отдел технической поддержки хостинга
Здравствуйте!
Кэширующий модуль PHP можно отключить добавив в файл php.ini директиву:
opcache.enable = Off
В настоящее время выполнили данную операцию, просьба проверить актуальность проблемы в настоящее время.
<?php
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-104753282-1', 'auto');
ga('send', 'pageview');
</script>
?>
.form .form_submit {
background: #feb500;
color: #fff;
margin-top: 1.3vw;
font-size: 1.4vw;
font-weight: bold;
font-family: BebasNeue;
cursor: pointer;
}
style.css:158
.form input {
width: 300px;
height: 40px;
margin: 0 auto;
display: block;
margin-bottom: 1.3vw;
text-align: center;
font-size: 1.15vw;
font-family: CatorzeSemiBold;
color: #a2a1a1;
background: #f3f2f2;
border: none;
outline: 0;
}
input type="submit"
.button_footer_a {
width: 270px;
margin: 0 auto;
height: 40px;
margin-top: 15px;
text-align: center;
line-height: 50px;
display: inline-block;
color: #fff;
background: #3498db;
display: block;
}
::-webkit-input-placeholder {color:#feb500;}
::-moz-placeholder {color:#feb500;}/* Firefox 19+ */
:-moz-placeholder {color:#feb500;}/* Firefox 18- */
:-ms-input-placeholder {color:#feb500;}
input::-webkit-input-placeholder {text-indent: 0px; transition: text-indent 0.3s ease;}
input::-moz-placeholder {text-indent: 0px; transition: text-indent 0.3s ease;}
input:-moz-placeholder {text-indent: 0px; transition: text-indent 0.3s ease;}
input:-ms-input-placeholder {text-indent: 0px; transition: text-indent 0.3s ease;}
input:focus::-webkit-input-placeholder {text-indent: 500px; transition: text-indent 0.3s ease;}
input:focus::-moz-placeholder {text-indent: 500px; transition: text-indent 0.3s ease;}
input:focus:-moz-placeholder {text-indent: 500px; transition: text-indent 0.3s ease;}
input:focus:-ms-input-placeholder {text-indent: 500px; transition: text-indent 0.3s ease;}
$args['orderby'] = 'meta_value_num';
$args['meta_key'] = '_price';
$args['order'] = $sort;
function wp_sort() {
ini_set('display_errors', 1);
error_reporting(E_ALL);
if ($_GET["sort"] != NULL) {
$sort = $_GET["sort"];
$cookie_domain = ".".$_SERVER['HTTP_HOST'];
setcookie("sort", $sort,time() + (86400),"/", $cookie_domain);
if ($_COOKIE["sort"])
{
echo "very good";
} else
{
echo "This is bad";
}
echo $_COOKIE["sort"];
echo "Куки - ".$_COOKIE["sort"];
echo "Вар - ".$sort;
} else {
echo "Куки - ".$_COOKIE["sort"];
echo "Вар - ".$sort;
}
}
?>