Advertisement
P22DX

log.txt

Dec 28th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 35.95 KB | None | 0 0
  1. https://github.com/2b3ez/FileManager4TinyMCE/blob/master/tinymce/plugins/filemanager/dialog.php
  2.  
  3. *   Trying 185.80.51.51...
  4. * TCP_NODELAY set
  5. * Connected to www.toronyoptika.hu (185.80.51.51) port 80 (#0)
  6. > GET /core/extension/tinymce/plugins/filemanager/dialog.php HTTP/1.1
  7. > Host: www.toronyoptika.hu
  8. > User-Agent: curl/7.52.1
  9. > Accept: */*
  10. >
  11. < HTTP/1.1 200 OK
  12. HTTP/1.1 200 OK
  13. < Date: Fri, 28 Dec 2018 15:55:43 GMT
  14. Date: Fri, 28 Dec 2018 15:55:43 GMT
  15. < Server: Apache/2.4.10 (Debian)
  16. Server: Apache/2.4.10 (Debian)
  17. < Expires: Thu, 19 Nov 1981 08:52:00 GMT
  18. Expires: Thu, 19 Nov 1981 08:52:00 GMT
  19. < Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
  20. Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
  21. < Pragma: no-cache
  22. Pragma: no-cache
  23. < Set-Cookie: PHPSESSID=9e17r267tatv2e6e9vsncb5kp7; path=/
  24. Set-Cookie: PHPSESSID=9e17r267tatv2e6e9vsncb5kp7; path=/
  25. < Vary: Accept-Encoding
  26. Vary: Accept-Encoding
  27. < Transfer-Encoding: chunked
  28. Transfer-Encoding: chunked
  29. < Content-Type: text/html; charset=UTF-8
  30. Content-Type: text/html; charset=UTF-8
  31.  
  32. <
  33. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  34. <html xmlns="http://www.w3.org/1999/xhtml">
  35.     <head>
  36.         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  37.         <meta name="robots" content="noindex,nofollow">
  38.         <title>Administration</title>
  39.         <link href="css/bootstrap.min.css" rel="stylesheet" type="text/css" />
  40.         <link href="css/bootstrap-lightbox.min.css" rel="stylesheet" type="text/css" />
  41.         <link href="css/style.css" rel="stylesheet" type="text/css" />
  42.         <link href="css/dropzone.css" type="text/css" rel="stylesheet" />
  43.         <script type="text/javascript" src="js/jquery.1.9.1.min.js"></script>
  44.         <script type="text/javascript" src="js/bootstrap.min.js"></script>
  45.         <script type="text/javascript" src="js/bootstrap-lightbox.min.js"></script>
  46.         <script type="text/javascript" src="js/dropzone.min.js"></script>
  47.         <script>
  48.             var ext_img=new Array('jpg','jpeg','png','gif','bmp','tiff');
  49.             var allowed_ext=new Array('jpg','jpeg','png','gif','bmp','tiff','doc','docx','pdf','xls','xlsx','txt','csv','html','psd','sql','log','fla','xml','ade','adp','ppt','pptx','zip','rar','gzip','mov','mpeg','mp4','avi','mpg','wma','mp3','m4a','ac3','aiff','mid');
  50.  
  51.             //dropzone config
  52.             Dropzone.options.myAwesomeDropzone = {
  53.                 dictInvalidFileType: "File extension is not allowed.",
  54.                 dictFileTooBig: "The uploaded file exceeds the max size allowed.",
  55.                 dictResponseError: "SERVER ERROR",
  56.                 paramName: "file", // The name that will be used to transfer the file
  57.                 maxFilesize: 100, // MB
  58.                 url: "upload.php",
  59.                 accept: function(file, done) {
  60.                 var extension=file.name.split('.').pop();
  61.                   if ($.inArray(extension, allowed_ext) > -1) {
  62.                 done();
  63.                   }
  64.                   else { done("File extension is not allowed."); }
  65.                 }
  66.             };
  67.         </script>
  68.         <script type="text/javascript" src="js/include.js"></script>
  69.     </head>
  70.     <body>
  71.         <input type="hidden" id="track" value="" />
  72.         <input type="hidden" id="cur_dir" value="/storage/files/" />
  73.         <input type="hidden" id="cur_dir_thumb" value="thumbs/" />
  74.         <input type="hidden" id="root" value="/var/www/clients/client9/web19/web" />
  75.         <input type="hidden" id="insert_folder_name" value="Insert folder name:" />
  76.         <input type="hidden" id="new_folder" value="New Folder" />
  77.         <input type="hidden" id="base_url" value="/core/extension/tinymce/plugins/filemanager/"/>
  78.        
  79. <!----- uploader div start ------->
  80. <div class="uploader">    
  81.     <form action="dialog.php" method="post" enctype="multipart/form-data" id="myAwesomeDropzone" class="dropzone">
  82.         <input type="hidden" name="path" value="../../../../../storage/files/"/>
  83.         <input type="hidden" name="path_thumb" value="thumbs/"/>
  84.         <div class="fallback">
  85.             <input name="file" type="file" />
  86.             <input type="hidden" name="fldr" value=""/>
  87.             <input type="hidden" name="type" value="0"/>
  88.             <input type="hidden" name="field_id" value=""/>
  89.             <input type="hidden" name="editor" value=""/>
  90.             <input type="hidden" name="lang" value=""/>
  91.             <input type="submit" name="submit" value="OK" />
  92.         </div>
  93.     </form>
  94.     <center><button class="btn btn-large btn-primary close-uploader"><i class="icon-backward icon-white"></i> Return to files list</button></center>
  95.     <div class="space10"></div><div class="space10"></div>
  96. </div>
  97. <!----- uploader div start ------->
  98.  
  99.        
  100.           <div class="container-fluid">
  101.          
  102.          
  103. <!----- header div start ------->
  104.             <div class="filters">
  105.             <button class="btn btn-primary upload-btn" style="margin-left:5px;"><i class="icon-upload icon-white"></i> Upload a file</button>
  106.        
  107.             <button class="btn new-folder" style="margin-left:5px;"><i class="icon-folder-open"></i> New Folder</button>
  108. <div class="pull-right">Filter: &nbsp;&nbsp;
  109.             <input id="select-type-all" name="radio-sort" type="radio" data-item="ff-item-type-all" class="hide" />
  110.                         <label id="ff-item-type-all" for="select-type-all" class="btn btn-info ff-label-type-all">All</label>
  111. &nbsp;
  112.                         <input id="select-type-1" name="radio-sort" type="radio" data-item="ff-item-type-1" checked="checked"  class="hide"  />
  113.                         <label id="ff-item-type-1" for="select-type-1" class="btn ff-label-type-1">Files</label>
  114. &nbsp;
  115.                         <input id="select-type-2" name="radio-sort" type="radio" data-item="ff-item-type-2" class="hide"  />
  116.                         <label id="ff-item-type-2" for="select-type-2" class="btn ff-label-type-2">Images</label>
  117. &nbsp;
  118.                         <input id="select-type-3" name="radio-sort" type="radio" data-item="ff-item-type-3" class="hide"  />
  119.                         <label id="ff-item-type-3" for="select-type-3" class="btn ff-label-type-3">Archives</label>
  120. &nbsp;
  121.                         <input id="select-type-4" name="radio-sort" type="radio" data-item="ff-item-type-4" class="hide"  />
  122.                         <label id="ff-item-type-4" for="select-type-4" class="btn ff-label-type-4">Videos</label>
  123. &nbsp;
  124.                         <input id="select-type-5" name="radio-sort" type="radio" data-item="ff-item-type-5" class="hide"  />
  125.                         <label id="ff-item-type-5" for="select-type-5" class="btn ff-label-type-5">Music</label>
  126. </div>
  127. </div>
  128.  
  129. <!----- header div end ------->
  130.  
  131.  
  132.  
  133.     <!----- breadcrumb div start ------->
  134.     <div class="row-fluid">
  135.         <ul class="breadcrumb">
  136.     <li><a href="dialog.php?type=0&editor=mce_0&lang=en_EN&field_id=&fldr="><i class="icon-home"></i></a> <span class="divider">/</span></li>
  137.         <li class="pull-right"><a id="refresh" href="dialog.php?type=0&editor=mce_0&lang=en_EN&fldr="><i class="icon-refresh"></i></a></li>
  138.     </ul>
  139.     </div>
  140.     <!----- breadcrumb div end ------->
  141.  
  142.  
  143.     <div class="row-fluid ff-container">
  144.     <div class="span12 pull-right">
  145.         <ul class="thumbnails ff-items">
  146.                                             <div class="row-fluid">             <li class="span2 ff-item-type-1">
  147.                 <div class="boxes thumbnail">
  148.                     <form action="force_download.php" method="post" class="download-form">
  149.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/d.txt"/>
  150.                     <input type="hidden" name="name" value="d.txt"/>
  151.  
  152.                     <div class="btn-group toolbox">
  153.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  154.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  155.                                                 <a href="dialog.php?del_file=d.txt&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  156.                     </div>
  157.                     </form>
  158.                     <a href="javascript:void('');" title="Select" onclick="apply_none('d.txt',0,'');">
  159.                     <img data-src="holder.js/140x100" alt="140x100" src="" height="100">
  160.                     <h4>d</h4>
  161.                     </a>                   
  162.                 </div>
  163.                 </li>
  164.                                 <li class="span2 ff-item-type-1">
  165.                 <div class="boxes thumbnail">
  166.                     <form action="force_download.php" method="post" class="download-form">
  167.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/dark.html"/>
  168.                     <input type="hidden" name="name" value="dark.html"/>
  169.  
  170.                     <div class="btn-group toolbox">
  171.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  172.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  173.                                                 <a href="dialog.php?del_file=dark.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  174.                     </div>
  175.                     </form>
  176.                     <a href="javascript:void('');" title="Select" onclick="apply_none('dark.html',0,'');">
  177.                     <img data-src="holder.js/140x100" alt="140x100" src="" height="100">
  178.                     <h4>dark</h4>
  179.                     </a>                   
  180.                 </div>
  181.                 </li>
  182.                                 <li class="span2 ff-item-type-1">
  183.                 <div class="boxes thumbnail">
  184.                     <form action="force_download.php" method="post" class="download-form">
  185.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/ef.html"/>
  186.                     <input type="hidden" name="name" value="ef.html"/>
  187.  
  188.                     <div class="btn-group toolbox">
  189.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  190.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  191.                                                 <a href="dialog.php?del_file=ef.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  192.                     </div>
  193.                     </form>
  194.                     <a href="javascript:void('');" title="Select" onclick="apply_none('ef.html',0,'');">
  195.                     <img data-src="holder.js/140x100" alt="140x100" src="" height="100">
  196.                     <h4>ef</h4>
  197.                     </a>                   
  198.                 </div>
  199.                 </li>
  200.                                 <li class="span2 ff-item-type-1">
  201.                 <div class="boxes thumbnail">
  202.                     <form action="force_download.php" method="post" class="download-form">
  203.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/es.html"/>
  204.                     <input type="hidden" name="name" value="es.html"/>
  205.  
  206.                     <div class="btn-group toolbox">
  207.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  208.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  209.                                                 <a href="dialog.php?del_file=es.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  210.                     </div>
  211.                     </form>
  212.                     <a href="javascript:void('');" title="Select" onclick="apply_none('es.html',0,'');">
  213.                     <img data-src="holder.js/140x100" alt="140x100" src="" height="100">
  214.                     <h4>es</h4>
  215.                     </a>                   
  216.                 </div>
  217.                 </li>
  218.                                 <li class="span2 ff-item-type-1">
  219.                 <div class="boxes thumbnail">
  220.                     <form action="force_download.php" method="post" class="download-form">
  221.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/file.html"/>
  222.                     <input type="hidden" name="name" value="file.html"/>
  223.  
  224.                     <div class="btn-group toolbox">
  225.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  226.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  227.                                                 <a href="dialog.php?del_file=file.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  228.                     </div>
  229.                     </form>
  230.                     <a href="javascript:void('');" title="Select" onclick="apply_none('file.html',0,'');">
  231.                     <img data-src="holder.js/140x100" alt="140x100" src="" height="100">
  232.                     <h4>file</h4>
  233.                     </a>                   
  234.                 </div>
  235.                 </li>
  236.                                 <li class="span2 ff-item-type-2">
  237.                 <div class="boxes thumbnail">
  238.                     <form action="force_download.php" method="post" class="download-form">
  239.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/filhax.jpg"/>
  240.                     <input type="hidden" name="name" value="filhax.jpg"/>
  241.  
  242.                     <div class="btn-group toolbox">
  243.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  244.                                                 <a class="btn preview" title="Preview" data-url="/core/extension/tinymce/plugins/filemanager//storage/files/filhax.jpg" data-toggle="lightbox" href="#previewLightbox"><i class=" icon-eye-open"></i></a>
  245.                                                 <a href="dialog.php?del_file=filhax.jpg&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  246.                     </div>
  247.                     </form>
  248.                     <a href="javascript:void('');" title="Select" onclick="apply_none('filhax.jpg',0,'');">
  249.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  250.                     <h4>filhax</h4>
  251.                     </a>                   
  252.                 </div>
  253.                 </li>
  254.                 </div><div class="space10"></div>               <div class="row-fluid">             <li class="span2 ff-item-type-1">
  255.                 <div class="boxes thumbnail">
  256.                     <form action="force_download.php" method="post" class="download-form">
  257.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/fix.html"/>
  258.                     <input type="hidden" name="name" value="fix.html"/>
  259.  
  260.                     <div class="btn-group toolbox">
  261.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  262.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  263.                                                 <a href="dialog.php?del_file=fix.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  264.                     </div>
  265.                     </form>
  266.                     <a href="javascript:void('');" title="Select" onclick="apply_none('fix.html',0,'');">
  267.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  268.                     <h4>fix</h4>
  269.                     </a>                   
  270.                 </div>
  271.                 </li>
  272.                                 <li class="span2 ff-item-type-1">
  273.                 <div class="boxes thumbnail">
  274.                     <form action="force_download.php" method="post" class="download-form">
  275.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/fuck.txt"/>
  276.                     <input type="hidden" name="name" value="fuck.txt"/>
  277.  
  278.                     <div class="btn-group toolbox">
  279.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  280.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  281.                                                 <a href="dialog.php?del_file=fuck.txt&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  282.                     </div>
  283.                     </form>
  284.                     <a href="javascript:void('');" title="Select" onclick="apply_none('fuck.txt',0,'');">
  285.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  286.                     <h4>fuck</h4>
  287.                     </a>                   
  288.                 </div>
  289.                 </li>
  290.                                 <li class="span2 ff-item-type-1">
  291.                 <div class="boxes thumbnail">
  292.                     <form action="force_download.php" method="post" class="download-form">
  293.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/hacked.html"/>
  294.                     <input type="hidden" name="name" value="hacked.html"/>
  295.  
  296.                     <div class="btn-group toolbox">
  297.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  298.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  299.                                                 <a href="dialog.php?del_file=hacked.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  300.                     </div>
  301.                     </form>
  302.                     <a href="javascript:void('');" title="Select" onclick="apply_none('hacked.html',0,'');">
  303.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  304.                     <h4>hacked</h4>
  305.                     </a>                   
  306.                 </div>
  307.                 </li>
  308.                                 <li class="span2 ff-item-type-1">
  309.                 <div class="boxes thumbnail">
  310.                     <form action="force_download.php" method="post" class="download-form">
  311.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/hacked.txt"/>
  312.                     <input type="hidden" name="name" value="hacked.txt"/>
  313.  
  314.                     <div class="btn-group toolbox">
  315.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  316.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  317.                                                 <a href="dialog.php?del_file=hacked.txt&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  318.                     </div>
  319.                     </form>
  320.                     <a href="javascript:void('');" title="Select" onclick="apply_none('hacked.txt',0,'');">
  321.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  322.                     <h4>hacked</h4>
  323.                     </a>                   
  324.                 </div>
  325.                 </li>
  326.                                 <li class="span2 ff-item-type-1">
  327.                 <div class="boxes thumbnail">
  328.                     <form action="force_download.php" method="post" class="download-form">
  329.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/i87.html"/>
  330.                     <input type="hidden" name="name" value="i87.html"/>
  331.  
  332.                     <div class="btn-group toolbox">
  333.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  334.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  335.                                                 <a href="dialog.php?del_file=i87.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  336.                     </div>
  337.                     </form>
  338.                     <a href="javascript:void('');" title="Select" onclick="apply_none('i87.html',0,'');">
  339.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  340.                     <h4>i87</h4>
  341.                     </a>                   
  342.                 </div>
  343.                 </li>
  344.                                 <li class="span2 ff-item-type-1">
  345.                 <div class="boxes thumbnail">
  346.                     <form action="force_download.php" method="post" class="download-form">
  347.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/index.csv.html"/>
  348.                     <input type="hidden" name="name" value="index.csv.html"/>
  349.  
  350.                     <div class="btn-group toolbox">
  351.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  352.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  353.                                                 <a href="dialog.php?del_file=index.csv.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  354.                     </div>
  355.                     </form>
  356.                     <a href="javascript:void('');" title="Select" onclick="apply_none('index.csv.html',0,'');">
  357.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  358.                     <h4>index.csv</h4>
  359.                     </a>                   
  360.                 </div>
  361.                 </li>
  362.                 </div><div class="space10"></div>               <div class="row-fluid">             <li class="span2 ff-item-type-1">
  363.                 <div class="boxes thumbnail">
  364.                     <form action="force_download.php" method="post" class="download-form">
  365.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/index.html"/>
  366.                     <input type="hidden" name="name" value="index.html"/>
  367.  
  368.                     <div class="btn-group toolbox">
  369.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  370.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  371.                                                 <a href="dialog.php?del_file=index.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  372.                     </div>
  373.                     </form>
  374.                     <a href="javascript:void('');" title="Select" onclick="apply_none('index.html',0,'');">
  375.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  376.                     <h4>index</h4>
  377.                     </a>                   
  378.                 </div>
  379.                 </li>
  380.                                 <li class="span2 ff-item-type-1">
  381.                 <div class="boxes thumbnail">
  382.                     <form action="force_download.php" method="post" class="download-form">
  383.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/indoshell.php.fla"/>
  384.                     <input type="hidden" name="name" value="indoshell.php.fla"/>
  385.  
  386.                     <div class="btn-group toolbox">
  387.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  388.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  389.                                                 <a href="dialog.php?del_file=indoshell.php.fla&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  390.                     </div>
  391.                     </form>
  392.                     <a href="javascript:void('');" title="Select" onclick="apply_none('indoshell.php.fla',0,'');">
  393.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  394.                     <h4>indoshell.php</h4>
  395.                     </a>                   
  396.                 </div>
  397.                 </li>
  398.                                 <li class="span2 ff-item-type-1">
  399.                 <div class="boxes thumbnail">
  400.                     <form action="force_download.php" method="post" class="download-form">
  401.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/mini.php.fla"/>
  402.                     <input type="hidden" name="name" value="mini.php.fla"/>
  403.  
  404.                     <div class="btn-group toolbox">
  405.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  406.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  407.                                                 <a href="dialog.php?del_file=mini.php.fla&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  408.                     </div>
  409.                     </form>
  410.                     <a href="javascript:void('');" title="Select" onclick="apply_none('mini.php.fla',0,'');">
  411.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  412.                     <h4>mini.php</h4>
  413.                     </a>                   
  414.                 </div>
  415.                 </li>
  416.                                 <li class="span2 ff-item-type-1">
  417.                 <div class="boxes thumbnail">
  418.                     <form action="force_download.php" method="post" class="download-form">
  419.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/neew.html"/>
  420.                     <input type="hidden" name="name" value="neew.html"/>
  421.  
  422.                     <div class="btn-group toolbox">
  423.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  424.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  425.                                                 <a href="dialog.php?del_file=neew.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  426.                     </div>
  427.                     </form>
  428.                     <a href="javascript:void('');" title="Select" onclick="apply_none('neew.html',0,'');">
  429.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  430.                     <h4>neew</h4>
  431.                     </a>                   
  432.                 </div>
  433.                 </li>
  434.                                 <li class="span2 ff-item-type-1">
  435.                 <div class="boxes thumbnail">
  436.                     <form action="force_download.php" method="post" class="download-form">
  437.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/sad.html"/>
  438.                     <input type="hidden" name="name" value="sad.html"/>
  439.  
  440.                     <div class="btn-group toolbox">
  441.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  442.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  443.                                                 <a href="dialog.php?del_file=sad.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  444.                     </div>
  445.                     </form>
  446.                     <a href="javascript:void('');" title="Select" onclick="apply_none('sad.html',0,'');">
  447.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  448.                     <h4>sad</h4>
  449.                     </a>                   
  450.                 </div>
  451.                 </li>
  452.                                 <li class="span2 ff-item-type-1">
  453.                 <div class="boxes thumbnail">
  454.                     <form action="force_download.php" method="post" class="download-form">
  455.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/success.php.fla"/>
  456.                     <input type="hidden" name="name" value="success.php.fla"/>
  457.  
  458.                     <div class="btn-group toolbox">
  459.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  460.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  461.                                                 <a href="dialog.php?del_file=success.php.fla&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  462.                     </div>
  463.                     </form>
  464.                     <a href="javascript:void('');" title="Select" onclick="apply_none('success.php.fla',0,'');">
  465.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  466.                     <h4>success.php</h4>
  467.                     </a>                   
  468.                 </div>
  469.                 </li>
  470.                 </div><div class="space10"></div>               <div class="row-fluid">             <li class="span2 ff-item-type-1">
  471.                 <div class="boxes thumbnail">
  472.                     <form action="force_download.php" method="post" class="download-form">
  473.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/toxic.html"/>
  474.                     <input type="hidden" name="name" value="toxic.html"/>
  475.  
  476.                     <div class="btn-group toolbox">
  477.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  478.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  479.                                                 <a href="dialog.php?del_file=toxic.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  480.                     </div>
  481.                     </form>
  482.                     <a href="javascript:void('');" title="Select" onclick="apply_none('toxic.html',0,'');">
  483.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  484.                     <h4>toxic</h4>
  485.                     </a>                   
  486.                 </div>
  487.                 </li>
  488.                                 <li class="span2 ff-item-type-1">
  489.                 <div class="boxes thumbnail">
  490.                     <form action="force_download.php" method="post" class="download-form">
  491.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/ubd9.html"/>
  492.                     <input type="hidden" name="name" value="ubd9.html"/>
  493.  
  494.                     <div class="btn-group toolbox">
  495.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  496.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  497.                                                 <a href="dialog.php?del_file=ubd9.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  498.                     </div>
  499.                     </form>
  500.                     <a href="javascript:void('');" title="Select" onclick="apply_none('ubd9.html',0,'');">
  501.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  502.                     <h4>ubd9</h4>
  503.                     </a>                   
  504.                 </div>
  505.                 </li>
  506.                                 <li class="span2 ff-item-type-1">
  507.                 <div class="boxes thumbnail">
  508.                     <form action="force_download.php" method="post" class="download-form">
  509.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/ume[2].html"/>
  510.                     <input type="hidden" name="name" value="ume[2].html"/>
  511.  
  512.                     <div class="btn-group toolbox">
  513.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  514.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  515.                                                 <a href="dialog.php?del_file=ume[2].html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  516.                     </div>
  517.                     </form>
  518.                     <a href="javascript:void('');" title="Select" onclick="apply_none('ume[2].html',0,'');">
  519.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  520.                     <h4>ume[2]</h4>
  521.                     </a>                   
  522.                 </div>
  523.                 </li>
  524.                                 <li class="span2 ff-item-type-1">
  525.                 <div class="boxes thumbnail">
  526.                     <form action="force_download.php" method="post" class="download-form">
  527.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/up-2k17.php.fla"/>
  528.                     <input type="hidden" name="name" value="up-2k17.php.fla"/>
  529.  
  530.                     <div class="btn-group toolbox">
  531.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  532.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  533.                                                 <a href="dialog.php?del_file=up-2k17.php.fla&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  534.                     </div>
  535.                     </form>
  536.                     <a href="javascript:void('');" title="Select" onclick="apply_none('up-2k17.php.fla',0,'');">
  537.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  538.                     <h4>up-2k17.php</h4>
  539.                     </a>                   
  540.                 </div>
  541.                 </li>
  542.                                 <li class="span2 ff-item-type-1">
  543.                 <div class="boxes thumbnail">
  544.                     <form action="force_download.php" method="post" class="download-form">
  545.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/vbnhj.html"/>
  546.                     <input type="hidden" name="name" value="vbnhj.html"/>
  547.  
  548.                     <div class="btn-group toolbox">
  549.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  550.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  551.                                                 <a href="dialog.php?del_file=vbnhj.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  552.                     </div>
  553.                     </form>
  554.                     <a href="javascript:void('');" title="Select" onclick="apply_none('vbnhj.html',0,'');">
  555.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  556.                     <h4>vbnhj</h4>
  557.                     </a>                   
  558.                 </div>
  559.                 </li>
  560.                                 <li class="span2 ff-item-type-1">
  561.                 <div class="boxes thumbnail">
  562.                     <form action="force_download.php" method="post" class="download-form">
  563.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/wa.html"/>
  564.                     <input type="hidden" name="name" value="wa.html"/>
  565.  
  566.                     <div class="btn-group toolbox">
  567.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  568.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  569.                                                 <a href="dialog.php?del_file=wa.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  570.                     </div>
  571.                     </form>
  572.                     <a href="javascript:void('');" title="Select" onclick="apply_none('wa.html',0,'');">
  573.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  574.                     <h4>wa</h4>
  575.                     </a>                   
  576.                 </div>
  577.                 </li>
  578.                 </div><div class="space10"></div>               <div class="row-fluid">             <li class="span2 ff-item-type-1">
  579.                 <div class="boxes thumbnail">
  580.                     <form action="force_download.php" method="post" class="download-form">
  581.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/xx.html"/>
  582.                     <input type="hidden" name="name" value="xx.html"/>
  583.  
  584.                     <div class="btn-group toolbox">
  585.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  586.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  587.                                                 <a href="dialog.php?del_file=xx.html&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  588.                     </div>
  589.                     </form>
  590.                     <a href="javascript:void('');" title="Select" onclick="apply_none('xx.html',0,'');">
  591.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  592.                     <h4>xx</h4>
  593.                     </a>                   
  594.                 </div>
  595.                 </li>
  596.                                 <li class="span2 ff-item-type-1">
  597.                 <div class="boxes thumbnail">
  598.                     <form action="force_download.php" method="post" class="download-form">
  599.                     <input type="hidden" name="path" value="/var/www/clients/client9/web19/web/storage/files/zumi.php.fla"/>
  600.                     <input type="hidden" name="name" value="zumi.php.fla"/>
  601.  
  602.                     <div class="btn-group toolbox">
  603.                         <button type="submit" title="Download" class="btn"><i class="icon-download"></i></button>
  604.                                                 <a class="btn preview disabled"><i class=" icon-eye-open"></i></a>
  605.                                                 <a href="dialog.php?del_file=zumi.php.fla&type=0&editor=mce_0&lang=en_EN&fldr= " class="btn erase-button " onclick="return confirm('Are you sure you want to delete this file?');" title="Erase"><i class="icon-trash"></i></a>
  606.                     </div>
  607.                     </form>
  608.                     <a href="javascript:void('');" title="Select" onclick="apply_none('zumi.php.fla',0,'');">
  609.                     <img data-src="holder.js/140x100" alt="140x100" src="/storage/files/filhax.jpg" height="100">
  610.                     <h4>zumi.php</h4>
  611.                     </a>                   
  612.                 </div>
  613.                 </li>
  614.                 </div>      </ul>
  615.     </div>
  616.     </div>
  617. </div>
  618.    
  619.     <!----- lightbox div start ------->    
  620.     <div id="previewLightbox" class="lightbox hide fade"  tabindex="-1" role="dialog" aria-hidden="true">
  621.         <div class='lightbox-content'>
  622.             <img id="full-img" src="">
  623.         </div>    
  624.     </div>
  625.     <!----- lightbox div end ------->
  626.  
  627.     <!----- loading div start ------->  
  628.     <div id="loading_container" style="display:none;">
  629.         <div id="loading" style="background-color:#000; position:fixed; width:100%; height:100%; top:0px; left:0px;z-index:100000"></div>
  630.         <img id="loading_animation" src="img/storing_animation.gif" alt="loading" style="z-index:10001; margin-left:-32px; margin-top:-32px; position:fixed; left:50%; top:50%"/>
  631.     </div>
  632.     <!----- loading div end ------->  
  633. </body>
  634. </html>
  635. * Curl_http_done: called premature == 0
  636. * Connection #0 to host www.toronyoptika.hu left intact
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement