-
AuthorPosts
-
February 16, 2016 at 11:41 am #584081
Hi. The mobile menu is missing. could you please check where the problem is?
http://www.prosafe-ms.comFebruary 16, 2016 at 11:46 am #584084Hi Alim!
Please try re-updating the theme via FTP and overwrite all files – kriesi.at/documentation/enfold/updating-your-theme-files/.
If that does not help, please try de-activating all active plugins.Regards,
YigitFebruary 16, 2016 at 12:51 pm #584129Hi Yigit.
I have manually updated the theme. Nothing changed.
I have deactivate the plugins und activate them. Nothing changed.I really dont know how do solve the Problem. This Problem was not there.
Our Provider is: 1und1
PHP: 7.0
gzip is activated through a php.ini.code gzip.php:
<?php
//check that zlib compression is enabled
if(!ini_get(‘zlib.output_compression’)){ die(); }$allowed = array(‘css’,’js’); //set array of allowed file types to prevent abuse
//check for request variable existence and that file type is allowed
if(isset($_GET[‘file’]) && isset($_GET[‘type’]) && in_array(substr($_GET[‘file’],strrpos($_GET[‘file’],’.’)+1), $allowed)){
$data = file_get_contents(dirname(__FILE__).’/’.$_GET[‘file’]); // grab the file contents$etag = ‘”‘.md5($data).'”‘; // generate a file Etag
header(‘Etag: ‘.$etag); // output the Etag in the header// output the content-type header for each file type
switch ($_GET[‘type’]) {
case ‘css’:
header (“Content-Type: text/css; charset: UTF-8”);
break;case ‘js’:
header (“Content-Type: text/javascript; charset: UTF-8”);
break;
}header(‘Cache-Control: max-age=2592000, must-revalidate’); //output the cache-control header
$offset = 60 * 60;
$expires = ‘Expires: ‘ . gmdate(‘D, d M Y H:i:s’,time() + $offset) . ‘ GMT’; // set the expires header to be 1 hour in the future
header($expires); // output the expires header// check the Etag the browser already has for the file and only serve the file if it is different
if ($etag == $_SERVER[‘HTTP_IF_NONE_MATCH’]) {
header(‘HTTP/1.1 304 Not Modified’);
header(‘Content-Length: 0’);
} else {
echo $data;
}
}
?>code php.ini:
zlib.output_compression = On
zlib.output_compression_level = 9i also tried to remove the gzip function, but then our theme breaks.
i hope to solve the Problem. If you Need an admin account, please tell me.
February 16, 2016 at 12:57 pm #584136It runs now. i have cleared the Cache and test it again. Everything is fine now. thx
February 16, 2016 at 1:00 pm #584144 -
AuthorPosts
- The topic ‘Mobile Menu Missing’ is closed to new replies.