2
Bestand:
/.CodeBee/Cache/FileCache.php
Regelnummer:
25
Melding:
mkdir(): File exists
array(6) {
["file"]=>
string(94) "/var/www/vhosts/openbedrijvendaghoogeveen.itticamedia.nl/httpdocs/.CodeBee/Helpers/Failure.php"
["line"]=>
int(36)
["function"]=>
string(4) "show"
["class"]=>
string(7) "Failure"
["type"]=>
string(2) "::"
["args"]=>
array(5) {
[0]=>
int(2)
[1]=>
string(20) "mkdir(): File exists"
[2]=>
string(94) "/var/www/vhosts/openbedrijvendaghoogeveen.itticamedia.nl/httpdocs/.CodeBee/Cache/FileCache.php"
[3]=>
int(25)
[4]=>
array(4) {
["key"]=>
string(20) "modules/nieuws/style"
["value"]=>
string(3762) "/* $fontColor: #838384; */
/* OpenBedrijvenDag */
#nieuwsbox {
display: block;
background-color: #fff;
padding: 75px 0 100px 0; }
#nieuwsbox .nieuws-items {
display: block;
vertical-align: top;
min-height: 200px;
margin-bottom: 50px; }
#nieuwsbox .nieuws-items a {
text-decoration: none !important; }
#nieuwsbox .nieuws-items a:hover {
text-decoration: none !important; }
#nieuwsbox .nieuws-items .nieuws-item {
background-color: #fff;
display: inline-block;
vertical-align: top;
width: calc((100% / 4) - 23px);
border: 1px solid #e9e9e9;
height: 280px;
margin-right: 30px;
box-shadow: 0 0 20px 0 rgba(35, 31, 32, 0.05); }
#nieuwsbox .nieuws-items .nieuws-item:nth-child(4) {
margin-right: 0px; }
@media (max-width: 1023px) {
#nieuwsbox .nieuws-items .nieuws-item {
width: calc((100% / 2) - 15px);
margin-bottom: 30px; }
#nieuwsbox .nieuws-items .nieuws-item:nth-child(2) {
margin-right: 0px; } }
@media (max-width: 560px) {
#nieuwsbox .nieuws-items .nieuws-item {
width: 100%;
margin-right: 0px;
margin-bottom: 25px; } }
#nieuwsbox .nieuws-items .nieuws-item:hover .img::before {
opacity: 1;
transition: 0.2s; }
#nieuwsbox .nieuws-items .nieuws-item:hover .img::after {
opacity: 1;
transition: 0.2s; }
#nieuwsbox .nieuws-items .nieuws-item .img {
position: relative;
top: 0;
height: 150px;
border-bottom: 1px solid #e9e9e9;
margin-bottom: 15px;
background: grey; }
#nieuwsbox .nieuws-items .nieuws-item .img::before {
content: 'Lees meer';
opacity: 0;
transition: 0.2s;
line-height: 150px;
text-transform: uppercase;
color: #fff;
font-size: 12px;
font-weight: bold;
font-family: 'Montserrat';
text-align: center;
vertical-align: middle;
background-color: rgba(88, 170, 79, 0.5);
height: 100%;
width: 100%;
display: block; }
#nieuwsbox .nieuws-items .nieuws-item .img::after {
opacity: 0;
transition: 0.2s; }
#nieuwsbox .nieuws-items .nieuws-item .datum {
position: relative;
top: 0;
min-height: 22px;
padding-left: 15px;
font-family: 'Open sans';
font-size: 11px;
Text-transform: uppercase;
color: #969696;
line-height: 22px; }
#nieuwsbox .nieuws-items .nieuws-item .titel {
position: relative;
top: 0;
min-height: 64px;
padding-left: 15px;
width: calc(100% - 15px);
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: bold;
font-size: 12px;
color: #111;
line-height: 22px; }
#nieuwsbox .meer-nieuws {
display: block;
text-align: center; }
#nieuwsbox .btn {
display: inline-block;
line-height: 40px;
width: calc(100% / 4);
border-radius: 5px;
text-transform: uppercase;
font-family: 'Montserrat';
font-weight: bold;
font-size: 14px;
text-align: center;
color: #fff;
background-color: #934492;
/* .fa-download {
-webkit-transition: all 200ms ease-out;-moz-transition: all 200ms ease-out;-o-transition: all 200ms ease-out;-ms-transition: all 200ms ease-out;transition: all 200ms ease-out;
}
.btn:hover > .fa-download {
font-size: 18px;
} */ }
#nieuwsbox .btn:hover {
background-color: #0080ad; }
@media (max-width: 1023px) {
#nieuwsbox .btn {
width: calc(100% / 2); } }
@media (max-width: 560px) {
#nieuwsbox .btn {
width: 100%; } }
"
["minutes"]=>
NULL
["t"]=>
string(98) "/var/www/vhosts/openbedrijvendaghoogeveen.itticamedia.nl/httpdocs/Data/Cache//modules/nieuws/style"
}
}
}
15 }
16
17 }
18
19 public static function set($key, $value, $minutes = null){
20 if(Config::get('system/cache')){
21
22 $t = self::$dir."/".$key;
23
24 if(!is_dir(dirname($t))){
25 mkdir(dirname($t), 0777, true);
26 }
27
28 file_put_contents(self::$dir.$key, $value);
29 }
30
31 return $value;
32 }
33
34 public static function remember($key, $value, $minutes = null){