maj.world

maj.world

Git

This blob has been accessed 512 times via Git panel.

  1. <?php
  2.  
  3. ini_set("session.use_trans_sid", 0);
  4.  
  5. session_start();
  6.  
  7. if (isset($_SESSION['logged_in']) and ($_SESSION['user_agent'] != $_SERVER['HTTP_USER_AGENT'])) {
  8.         header("Location: http://" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/login.php");
  9. }
  10.  
  11. header("Cache-control: private");
  12.  
  13. error_reporting(E_ERROR);
  14.  
  15. if (get_magic_quotes_gpc()) {
  16.         function stripslashes_array($data) {
  17.                 if (is_array($data)){
  18.                          foreach ($data as $key => $value){
  19.                                   $data[$key] = stripslashes_array($value);
  20.                          }
  21.                          return $data;
  22.                 }
  23.                 else{
  24.                          return stripslashes($data);
  25.                 }
  26.         }
  27.  
  28.         $_REQUEST = stripslashes_array($_REQUEST);
  29. }
  30.  
  31. $dir = "data/items";
  32.  
  33. $default_title = file_get_contents("data/title.txt");
  34.  
  35.  
  36. if (file_exists("data/offset.txt")) {
  37.         $offset = file_get_contents("data/offset.txt");
  38. }
  39. else {
  40.         $offset = 0;
  41. }
  42.  
  43. if (file_exists("data/increase.txt")) {
  44.         $increase = file_get_contents("data/increase.txt");
  45. }
  46. else {
  47.         $increase = 5;
  48. }
  49.  
  50. $default_blog_title = "My Activity Journal";
  51. $default_username = "maj";
  52. $default_password = "php";
  53. $default_blog_profile = "This cool site is powered by <a href=http://maj.sourceforge.net/ target=_maj>My Activity Journal</a>, a simple, <a href=http://php.net/ target=_maj>PHP</a>-based, <a href=http://www.opensource.org/licenses/gpl-license.php target=_maj>GPL</a>'ed blog written from scratch as a spare time family project by <a href=http://engels.mortega.net/ target=_maj>Engels</a>, <a href=http://gaffud.com/ target=_maj>Magie</a>, and <a href=http://psylocke.org/ target=_maj>Psylocke</a> Antonio.";
  54. $default_blog_author = "My Activity Journal";
  55.  
  56. if (!file_exists("data")) {
  57.         mkdir("data");
  58. }
  59.  
  60. if (!file_exists("data/.htaccess")) {
  61.         $htaccess = "Order deny,allow\nDeny from all";
  62.         $fp_htaccess_txt = fopen("data/.htaccess","w");
  63.         fwrite($fp_htaccess_txt, $htaccess);
  64.         fclose($fp_htaccess_txt);
  65. }
  66.  
  67. if (!file_exists("data/title.txt")) {
  68.         $fp_default_title_txt = fopen("data/title.txt","w");
  69.         fwrite($fp_default_title_txt, $default_blog_title);
  70.         fclose($fp_default_title_txt);
  71. }
  72.  
  73. if (!file_exists("data/username.txt")) {
  74.         $fp_htaccess_txt = fopen("data/username.txt","w");
  75.         fwrite($fp_htaccess_txt, $default_username);
  76.         fclose($fp_htaccess_txt);
  77. }
  78.  
  79. if (!file_exists("data/password.txt")) {
  80.         $default_password = sha1($default_password);
  81.         $default_password = md5($default_password);
  82.         $default_password = crypt($default_password, $default_password);
  83.         $fp_htaccess_txt = fopen("data/password.txt","w");
  84.         fwrite($fp_htaccess_txt, $default_password);
  85.         fclose($fp_htaccess_txt);
  86. }
  87.  
  88. if (!file_exists("data/profile.php")) {
  89.         $fp_default_profile_txt = fopen("data/profile.php","w");
  90.         fwrite($fp_default_profile_txt, $default_blog_profile);
  91.         fclose($fp_default_profile_txt);
  92. }
  93.  
  94. if (!file_exists("data/author.txt")) {
  95.         $fp_default_author_txt = fopen("data/author.txt","w");
  96.         fwrite($fp_default_author_txt, $default_blog_author);
  97.         fclose($fp_default_author_txt);
  98. }
  99.  
  100. $login_username = file_get_contents("data/username.txt");
  101.  
  102. if (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) {
  103.         $global_hits_file = fopen("data/hits.txt", "r");
  104.         $global_hits_count = fread($global_hits_file, filesize("data/hits.txt"));
  105.         fclose($global_hits_file);
  106.         $global_hits_count = $global_hits_count + 1;
  107.         $global_hits_file = fopen("data/hits.txt", "w");
  108.         fwrite($global_hits_file, $global_hits_count);
  109.         fclose($global_hits_file);
  110. }
  111.  
  112. $agent = $_SERVER['HTTP_USER_AGENT'];
  113.  
  114. if (@ereg("Google", $agent)) {
  115.         $google_hits_file = fopen("data/google.txt", "r");
  116.         $google_hits_count = fread($google_hits_file, filesize("data/google.txt"));
  117.         fclose($google_hits_file);
  118.         $google_hits_count = $google_hits_count + 1;
  119.         $google_hits_file = fopen("data/google.txt", "w");
  120.         fwrite($google_hits_file, $google_hits_count);
  121.         fclose($google_hits_file);
  122. }
  123.  
  124. function str_rand($length = 8, $seeds = 'abcdefghijklmnopqrstuvwxyz0123456789')
  125. {
  126.     $str = '';
  127.     $seeds_count = strlen($seeds);
  128.  
  129.     list($usec, $sec) = explode(' ', microtime());
  130.     $seed = (float) $sec + ((float) $usec * 100000);
  131.     mt_srand($seed);
  132.  
  133.     for ($i = 0; $length > $i; $i++) {
  134.         $str .= $seeds{mt_rand(0, $seeds_count - 1)};
  135.     }
  136.  
  137.     return $str;
  138. }
  139.  
  140. function rmdirr($recurse_dirname)
  141. {
  142.  
  143.     if (!file_exists($recurse_dirname)) {
  144.         return false;
  145.     }
  146.  
  147.     if (is_file($recurse_dirname)) {
  148.         return unlink($recurse_dirname);
  149.     }
  150.  
  151.     $recurse_dir = dir($recurse_dirname);
  152.     while (false !== $recurse_entry = $recurse_dir->read()) {
  153.  
  154.         if ($recurse_entry == '.' || $recurse_entry == '..') {
  155.             continue;
  156.         }
  157.  
  158.         rmdirr("$recurse_dirname/$recurse_entry");
  159.     }
  160.  
  161.     $recurse_dir->close();
  162.     return rmdir($recurse_dirname);
  163. }
  164.  
  165. if (isset($_REQUEST['download']) and !empty($_REQUEST['download'])) {
  166.         ini_set('zlib.output_compression','off');
  167.         $file = str_replace('../','', @$_REQUEST['download']);
  168.         go_download($file);
  169.         die();
  170. }
  171.  
  172. function go_download($dl_file) {
  173.         $d = $_REQUEST['entry'];
  174.  
  175.         if (isset($_REQUEST['type']) and !empty($_REQUEST['type']) and ($_REQUEST['type'] == pdf)) {
  176.                 $dl_path = "data/items/$d/pdf/file";
  177.                 $count_path = "data/items/$d/pdf/count";
  178.                 $count_file = "dl.txt";
  179.         }
  180.         if (isset($_REQUEST['type']) and !empty($_REQUEST['type']) and ($_REQUEST['type'] == filedrop)) {
  181.                 $dl_path = "data/items/$d/filedrop/files";
  182.                 $count_path = "data/items/$d/filedrop/count";
  183.                 $count_file = "{$dl_file}.txt";
  184.         }      
  185.  
  186.         header("Cache-Control: ");
  187.         header("Pragma: ");
  188.         header("Content-type: application/octet-stream");
  189.         header("Content-Disposition: attachment; filename=\"" . $dl_file . "\"");
  190.         header("Content-length: " . filesize("$dl_path/$dl_file"));
  191.         $get_it = fopen("$dl_path/$dl_file", 'rb');
  192.  
  193.         while (!feof($get_it)) {
  194.                 $buf = fread($get_it, 4096);
  195.                 echo $buf;
  196.                 $bytes_sent+=strlen($buf);
  197.         }
  198.  
  199.         if ($bytes_sent==filesize("$dl_path/$dl_file")) {
  200.  
  201.                 if (!file_exists($count_path)) {
  202.                         mkdir($count_path);
  203.                 }
  204.  
  205.                 $unique_downloads = "$count_path/$count_file";
  206.                 $fp_unique_downloads = fopen($unique_downloads, "r");
  207.                 $count_unique_downloads = fread($fp_unique_downloads, filesize($unique_downloads));
  208.                 fclose($fp_unique_downloads);
  209.                 $count_unique_downloads = $count_unique_downloads + 1;
  210.                 $fp_unique_downloads = fopen($unique_downloads, "w");
  211.                 fwrite($fp_unique_downloads, $count_unique_downloads);
  212.                 fclose($fp_unique_downloads);
  213.         }
  214. }
  215.  
  216. if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST['comment']) and !empty($_REQUEST['comment']) and isset($_REQUEST['key']) and !empty($_REQUEST['key']) and isset($_REQUEST['action']) and !empty($_REQUEST['action'])) {
  217.                 $comment_dir = 'data/items/' . $_REQUEST['entry'] .'/comments/pending/' . $_REQUEST['comment'];
  218.                 $key_file = $comment_dir . '/key.txt';
  219.                 $open_key_file = fopen($key_file,"r");
  220.                 $login_key = fread($open_key_file,filesize($key_file));
  221.                 fclose($open_key_file);
  222.  
  223.                 if ($_REQUEST['key'] == $login_key) {
  224.                         if ($_REQUEST['action'] == "approve") {
  225.                                 $live_dir = "data/items/{$_REQUEST['entry']}/comments/live/{$_REQUEST['comment']}";
  226.                                 rename($comment_dir, $live_dir);
  227.                                 unlink("$live_dir/key.txt");
  228.  
  229.                                 $cat_dir = file_get_contents("data/items/{$_REQUEST['entry']}/category.txt");
  230.  
  231.                                 if (file_exists("data/members/active") and file_exists("data/ml.txt") and file_exists("data/email.txt") and !file_exists("data/items/{$_REQUEST['entry']}/private.txt") and !file_exists("data/categories/$cat_dir/private.txt")) {
  232.  
  233.                                         if (file_exists("data/ml-reply2.txt")) {
  234.                                                 $ml_reply2 = file_get_contents("data/ml-reply2.txt");
  235.                                         }
  236.  
  237.                                         if (file_exists("data/ml-from.txt")) {
  238.                                                 $ml_from = $ml_reply2;
  239.                                         }
  240.                                         else {
  241.                                                 $ml_from = file_get_contents("$live_dir/email.txt");
  242.                                         }
  243.  
  244.                                         $ml_from = str_replace(" at ","@",$ml_from);
  245.  
  246.                                         $ml_from_firstname = file_get_contents("$live_dir/firstname.txt");
  247.                                         $ml_from_lastname = file_get_contents("$live_dir/lastname.txt");
  248.  
  249.                                         $ml_from = '"' . "$ml_from_firstname $ml_from_lastname" . '" <' . $ml_from . '>';
  250.  
  251.                                         $ml_subject = file_get_contents("data/items/{$_REQUEST['entry']}/title.txt");
  252.                                         if (file_exists("data/ml-prepend.txt")) {
  253.                                                 $ml_prepend = file_get_contents("data/ml-prepend.txt");
  254.                                                 $ml_subject = str_replace($ml_prepend,"",$ml_subject);
  255.                                                 $ml_subject = $ml_prepend . " " . $ml_subject;
  256.                                         }
  257.                                         $ml_subject = str_replace("Re:","",$ml_subject);
  258.                                         $ml_subject = "Re: " . $ml_subject;
  259.  
  260.                                         $ml_mailer = 'MAJ/0.14 (PHP/' . phpversion() . ')';
  261.  
  262.                                         $ml_body = file_get_contents("$live_dir/comment.txt");
  263.                                         $ml_body = str_replace('<br />', "\n", $ml_body);
  264.                                         $ml_body = str_replace('<img src=images/smileys/crying.png border=0>', ':((', $ml_body);
  265.                                         $ml_body = str_replace('<img src=images/smileys/frown.png border=0>', ':(', $ml_body);
  266.                                         $ml_body = str_replace('<img src=images/smileys/indifferent.png border=0>', ':|', $ml_body);
  267.                                         $ml_body = str_replace('<img src=images/smileys/laughing.png border=0>', ':D', $ml_body);
  268.                                         $ml_body = str_replace('<img src=images/smileys/lick.png border=0>', ':P', $ml_body);
  269.                                         $ml_body = str_replace('<img src=images/smileys/ohno.png border=0>', ':O', $ml_body);
  270.                                         $ml_body = str_replace('<img src=images/smileys/smile.png border=0>', ':)', $ml_body);
  271.                                         $ml_body = str_replace('<img src=images/smileys/surprised.png border=0>', '=)', $ml_body);
  272.                                         $ml_body = str_replace('<img src=images/smileys/undecided.png border=0>', ':\\', $ml_body);
  273.                                         $ml_body = str_replace('<img src=images/smileys/wink.png border=0>', ';)', $ml_body);
  274.                                         $ml_body = str_replace('&amp;','&',$ml_body);
  275.                                         $ml_body = str_replace('&lt;','<',$ml_body);
  276.                                         $ml_body = str_replace('&gt;','>',$ml_body);
  277.                                         $ml_body = str_replace('&reg;','(R)',$ml_body);
  278.  
  279.                                         if (file_exists("data/pf.txt") and file_exists("data/pf-badwords.txt")) {
  280.                                                 $badwords = file_get_contents("data/pf-badwords.txt");
  281.                                                 if (file_exists("data/pf-censor.txt")) {
  282.                                                         $censor = file_get_contents("data/pf-censor.txt");
  283.                                                 }
  284.                                                 else {
  285.                                                         $censor = "[expletive]";
  286.                                                 }
  287.                                                 $ml_body = preg_replace("/\b($badwords)\b/i",$censor,$ml_body);
  288.                                         }
  289.  
  290.                                         if (file_exists("data/ml-header.txt")) {
  291.                                                 $ml_header = file_get_contents("data/ml-header.txt");
  292.                                                 $ml_body = $ml_header . "\n\n" . $ml_body;
  293.                                         }
  294.  
  295.                                         $ml_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  296.                                         $ml_url = str_replace('//', '/', $ml_url);
  297.                                         $ml_url = "http://" . $ml_url . "index.php?entry={$_REQUEST['entry']}&show=comments";
  298.  
  299.                                         $ml_body = $ml_body . "\n\nPlease visit the following URL for the full thread:\n\n" . $ml_url;
  300.  
  301.                                         if (file_exists("data/items/{$_REQUEST['entry']}/member.txt")) {
  302.                                                 $ml_body = $ml_body . "\n\nYou need to login first to view the entry or to add a comment.";
  303.                                         }
  304.  
  305.                                         if (file_exists("data/ml-footer.txt")) {
  306.                                                 $ml_footer = file_get_contents("data/ml-footer.txt");
  307.                                                 $ml_body = $ml_body . "\n\n" . $ml_footer;
  308.                                         }
  309.  
  310.  
  311.                                         if ($dh_ml_member = opendir("data/members/active")) {
  312.                                                 while (($ml_member = readdir($dh_ml_member)) !== false) {
  313.                                                         if ($ml_member != "." && $ml_member != ".." && fnmatch("*", $ml_member)) {
  314.  
  315.                                                                 if (file_exists("data/members/active/$ml_member/noml.txt")) {
  316.                                                                         continue;
  317.                                                                 }
  318.  
  319.                                                                 if (file_exists("data/members/active/$ml_member/vacation.txt")) {
  320.                                                                         continue;
  321.                                                                 }
  322.  
  323.                                                                 $ml_to_firstname = file_get_contents("data/members/active/$ml_member/firstname.txt");
  324.                                                                 $ml_to_lastname = file_get_contents("data/members/active/$ml_member/lastname.txt");
  325.                                                                 $ml_to = file_get_contents("data/members/active/$ml_member/email.txt");
  326.                                                                 $ml_to = '"' . "$ml_to_firstname $ml_to_lastname" . '" <'. $ml_to . '>';
  327.  
  328.                                                                 if (file_exists("data/ml-reply2.txt")) {
  329.                                                                         mail($ml_to, $ml_subject, $ml_body,
  330.                                                                         "From: $ml_from\r\n" .
  331.                                                                         "Reply-To: $ml_reply2\r\n" .
  332.                                                                         "References: {$_REQUEST['entry']}\r\n" .
  333.                                                                         "X-Mailer: $ml_mailer");
  334.                                                                 }
  335.                                                                 else {
  336.                                                                         mail($ml_to, $ml_subject, $ml_body,
  337.                                                                         "From: $ml_from\r\n" .
  338.                                                                         "References: {$_REQUEST['entry']}\r\n" .
  339.                                                                         "X-Mailer: $ml_mailer");
  340.                                                                 }
  341.                                                         }
  342.                                                 }
  343.                                                 closedir($dh_ml_member);
  344.                                         }
  345.                                 }
  346.  
  347.                         }
  348.                         if ($_REQUEST['action'] == "delete") {
  349.                                 rmdirr($comment_dir);
  350.                         }
  351.                         $pending_comment_flag_dir = $_REQUEST['entry'];
  352.                         $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag_dir/count.txt","r");
  353.                         $comment_count_value = fread($fp_comment_count_txt,filesize("data/comments/pending/$pending_comment_flag_dir/count.txt"));
  354.                         fclose($fp_comment_count_txt);
  355.                         if ($comment_count_value <= 1) {
  356.                                 rmdirr("data/comments/pending/$pending_comment_flag_dir");
  357.                         }
  358.                         else {
  359.                                 $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag_dir/count.txt","r");
  360.                                 $comment_count_value = fread($fp_comment_count_txt,filesize("data/comments/pending/$pending_comment_flag_dir/count.txt"));
  361.                                 fclose($fp_comment_count_txt);
  362.                                 $comment_count_value = $comment_count_value - 1;
  363.                                 $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag_dir/count.txt","w");
  364.                                 fwrite($fp_comment_count_txt, $comment_count_value);
  365.                                 fclose($fp_comment_count_txt);
  366.                         }
  367.  
  368.                         header("Location: http://" . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . '?entry=' . $_REQUEST['entry'] . '&show=comments');
  369.                 }
  370. }
  371.  
  372. if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry'])) {
  373.         $check = $dir . '/' . $_REQUEST['entry'];
  374.  
  375.         if (file_exists("$check")) {
  376.                 $filter = $_REQUEST['entry'];
  377.                 echo '<title>';
  378.                 $title = $check . '/title.txt';
  379.                 readfile($title);
  380.                 echo '</title>';
  381.                 $views = $check . '/views.txt';
  382.                 if ((!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  383.                         $fp_views = fopen($views, "r");
  384.                         $count_views = fread($fp_views, filesize($views));
  385.                         fclose($fp_views);
  386.                         $count_views = $count_views + 1;
  387.                         $fp_views = fopen($views, "w");
  388.                         fwrite($fp_views, $count_views);
  389.                         fclose($fp_views);
  390.                 }
  391.                
  392.                 if (isset($_REQUEST['show']) and !empty($_REQUEST['show']) and isset($_POST['captcha_put']) and !empty($_REQUEST['captcha_get']) and isset($_POST['firstname']) and !empty($_POST['firstname']) and isset($_POST['lastname']) and !empty($_POST['lastname']) and isset($_POST['email']) and !empty($_POST['email']) and isset($_POST['new_comment']) and !empty($_POST['new_comment']) and isset($_POST['captcha_put']) and !empty($_POST['captcha_put']) and ($_REQUEST['captcha_get'] == $_POST['captcha_put']) and (ereg("@", $_POST['email'])) and (ereg("\.", $_POST['email']))) {
  393.                
  394.                 if (!file_exists("$check/comments")) {
  395.                         mkdir("$check/comments");
  396.                 }
  397.                 if (!file_exists("$check/comments/pending")) {
  398.                         mkdir("$check/comments/pending");
  399.                 }
  400.  
  401.                 if (!file_exists("$check/comments/live")) {
  402.                         mkdir("$check/comments/live");
  403.                 }
  404.  
  405.                 // GNU date format
  406.                 //$timestamp = date("D M j H:i:s \P\H\T Y", time() + $offset);
  407.  
  408.                 // Simple PHP Blog format
  409.                 $timestamp = date("l, M j, Y, g:i A", time() + $offset);
  410.  
  411.                 $comment_entry_dir = date("YmdHis", time() + $offset);
  412.  
  413.                 mkdir("$check/comments/pending/$comment_entry_dir");
  414.  
  415.                 $body_content = ucfirst($_POST['new_comment']);
  416.                 $body_content = htmlentities($body_content, ENT_NOQUOTES);
  417.                 // $body_content = str_replace('href=', 'target=_maj href=', $body_content);
  418.                 $body_content = str_replace("\n", '<br />', $body_content);
  419.                 $body_content = trim($body_content);
  420.                 $body_content = str_replace(':((', '<img src=images/smileys/crying.png border=0>', $body_content);
  421.                 $body_content = str_replace(':(', '<img src=images/smileys/frown.png border=0>', $body_content);
  422.                 $body_content = str_replace(':|', '<img src=images/smileys/indifferent.png border=0>', $body_content);
  423.                 $body_content = str_replace(':D', '<img src=images/smileys/laughing.png border=0>', $body_content);
  424.                 $body_content = str_replace(':P', '<img src=images/smileys/lick.png border=0>', $body_content);
  425.                 $body_content = str_replace(':O', '<img src=images/smileys/ohno.png border=0>', $body_content);
  426.                 $body_content = str_replace(':)', '<img src=images/smileys/smile.png border=0>', $body_content);
  427.                 $body_content = str_replace('=)', '<img src=images/smileys/surprised.png border=0>', $body_content);
  428.                 $body_content = str_replace(':\\', '<img src=images/smileys/undecided.png border=0>', $body_content);
  429.                 $body_content = str_replace(';)', '<img src=images/smileys/wink.png border=0>', $body_content);
  430.  
  431.                 $fp_body_txt = fopen("$check/comments/pending/$comment_entry_dir/comment.txt","w");
  432.                 fwrite($fp_body_txt,$body_content);
  433.                 fclose($fp_body_txt);
  434.  
  435.                 $fp_timestamp_txt = fopen("$check/comments/pending/$comment_entry_dir/timestamp.txt","w");
  436.                 fwrite($fp_timestamp_txt,$timestamp);
  437.                 fclose($fp_timestamp_txt);
  438.  
  439.                 $fp_firstname_txt = fopen("$check/comments/pending/$comment_entry_dir/firstname.txt","w");
  440.                 $firstname = strtolower($_POST['firstname']);
  441.                 $firstname = ucwords($firstname);
  442.                 $firstname = trim($firstname);
  443.                 $firstname = htmlentities($firstname, ENT_NOQUOTES);
  444.                 fwrite($fp_firstname_txt,$firstname);
  445.                 fclose($fp_firstname_txt);
  446.  
  447.                 $fp_lastname_txt = fopen("$check/comments/pending/$comment_entry_dir/lastname.txt","w");
  448.                 $lastname = strtolower($_POST['lastname']);
  449.                 $lastname = ucwords($lastname);
  450.                 $lastname = trim($lastname);
  451.                 $lastname = htmlentities($lastname, ENT_NOQUOTES);
  452.                 fwrite($fp_lastname_txt,$lastname);
  453.                 fclose($fp_lastname_txt);
  454.  
  455.                 $fp_email_txt = fopen("$check/comments/pending/$comment_entry_dir/email.txt","w");
  456.                 $email = str_replace("@"," at ",$_POST['email']);
  457.                 $email = strtolower($email);
  458.                 $email = trim($email);
  459.                 $email = htmlentities($email, ENT_NOQUOTES);
  460.                 fwrite($fp_email_txt,$email);
  461.                 fclose($fp_email_txt);
  462.  
  463.                 if (isset($_POST['url']) and !empty($_POST['url']) and (ereg("\.", $_POST['url']))) {
  464.                         $fp_url_txt = fopen("$check/comments/pending/$comment_entry_dir/url.txt","w");
  465.                         $url = str_replace("http://","",$_POST['url']);
  466.                         $url = strtolower($url);
  467.                         $url = trim($url);
  468.                         $url = "http://" . $url;
  469.                         $url = htmlentities($url, ENT_NOQUOTES);
  470.                         fwrite($fp_url_txt,$url);
  471.                         fclose($fp_url_txt);
  472.                 }
  473.  
  474.                 if (isset($_POST['cauthor']) and !empty($_POST['cauthor'])) {
  475.                         $fp_cauthor_txt = fopen("$check/comments/pending/$comment_entry_dir/author.txt","w");
  476.                         fwrite($fp_cauthor_txt,$_POST['cauthor']);
  477.                         fclose($fp_cauthor_txt);
  478.                 }
  479.  
  480.                 $key_rand = str_rand(14);
  481.                 $fp_key_txt = fopen("$check/comments/pending/$comment_entry_dir/key.txt","w");
  482.                 fwrite($fp_key_txt,$key_rand);
  483.                 fclose($fp_key_txt);
  484.  
  485.                 $comment_quote = ucfirst($_POST['new_comment']);
  486.                 //$comment_quote = htmlentities($comment_quote, ENT_NOQUOTES);
  487.  
  488.                 $sig_author_file = "data/author.txt";
  489.                 $fp_sig_author = fopen($sig_author_file, "r");
  490.                 $sig_author = fread($fp_sig_author, filesize($sig_author_file));
  491.                 fclose($fp_sig_author);
  492.  
  493.                 $sig_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  494.                 $sig_url = str_replace('//', '/', $sig_url);
  495.                 $sig_url = "http://" . $sig_url;
  496.  
  497.                 $email_to = strtolower($_POST['email']);
  498.                 $email_to = '"' . "$firstname $lastname" . '" <' . $email_to . '>';
  499.  
  500.                 if (file_exists("data/email.txt")) {
  501.                         $from_email_author = file_get_contents("data/author.txt");
  502.                         $from_email = file_get_contents("data/email.txt");
  503.                         $from_email = '"' . $from_email_author . '" <' . $from_email . '>';
  504.                 }
  505.  
  506.                 $mailer = 'MAJ/0.14 (PHP/' . phpversion() . ')';
  507.  
  508.                 $commented_entry_title_file = "data/items/{$_REQUEST['entry']}/title.txt";
  509.                 $fp_commented_entry_title = fopen($commented_entry_title_file, "r");
  510.                 $commented_entry_title = fread($fp_commented_entry_title, filesize($commented_entry_title_file));
  511.                 fclose($fp_commented_entry_title);
  512.  
  513.                 if (!file_exists("data/nak.txt") and file_exists("data/email.txt")) {
  514.                         $comment_thanks = "Hi $firstname,\n\nThanks for submitting the following comment last $timestamp:\n\n\"$comment_quote\"\n\nIt will be e-mailed to me first for approval. Please visit the following URL to see if it has been posted:\n\n{$sig_url}index.php?entry={$_REQUEST['entry']}&show=comments\n\nThanks again! =)\n\n--\n$sig_author\n$sig_url\n";
  515.  
  516.                         $comment_thanks = wordwrap($comment_thanks);
  517.  
  518.                         mail($email_to, "Thanks for sharing your thoughts!", $comment_thanks,
  519.                                 "From: $from_email\r\n" .
  520.                                 "Reply-To: $from_email\r\n" .
  521.                                 "X-Mailer: $mailer");
  522.                 }
  523.  
  524.                 if (file_exists("data/email.txt")) {
  525.                         $comment_notice = "The following comment was submitted by $email_to last $timestamp for the entry \"$commented_entry_title\":\n\n\"$comment_quote\"\n\nVisit the link below to approve and post this pending comment:\n\n{$sig_url}index.php?entry={$_REQUEST['entry']}&comment={$comment_entry_dir}&key={$key_rand}&action=approve\n\nVisit the link below to disapprove and delete this pending comment:\n\n{$sig_url}index.php?entry={$_REQUEST['entry']}&comment={$comment_entry_dir}&key={$key_rand}&action=delete\n\nYou can also approve or disapprove pending comments at a later time by logging on to your blog.";
  526.  
  527.                         $comment_notice = wordwrap($comment_notice);
  528.  
  529.                         mail($from_email, "Pending Comment", $comment_notice,
  530.                                 "From: $from_email\r\n" .
  531.                                 "Reply-To: $from_email\r\n" .
  532.                                 "X-Mailer: $mailer");
  533.                 }
  534.  
  535.                 if (!file_exists("data/comments")) {
  536.                         mkdir("data/comments");
  537.                 }
  538.  
  539.                 if (!file_exists("data/comments/pending")) {
  540.                         mkdir("data/comments/pending");
  541.                 }
  542.  
  543.                 $pending_comment_flag = $_REQUEST['entry'];
  544.  
  545.                 if (!file_exists("data/comments/pending/$pending_comment_flag")) {
  546.                         mkdir("data/comments/pending/$pending_comment_flag");
  547.                 }
  548.  
  549.                 $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag/count.txt","r");
  550.                 $comment_count_value = fread($fp_comment_count_txt,filesize("data/comments/pending/$pending_comment_flag/count.txt"));
  551.                 fclose($fp_comment_count_txt);
  552.                 $comment_count_value = $comment_count_value + 1;
  553.                 $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag/count.txt","w");
  554.                 fwrite($fp_comment_count_txt, $comment_count_value);
  555.                 fclose($fp_comment_count_txt);
  556.  
  557.                 }
  558.  
  559.         }
  560.         else {
  561.                 echo '<title>' . $default_title . '</title>';
  562.                 if (isset($_REQUEST['archive']) and !empty($_REQUEST['archive'])) {
  563.                         $filter = $_REQUEST['archive'] . "*";
  564.                 }
  565.                 else {
  566.                         $filter = "*";
  567.                 }
  568.         }
  569. }
  570. else {
  571.         echo '<title>' . $default_title . '</title>';
  572.         if (isset($_REQUEST['archive']) and !empty($_REQUEST['archive'])) {
  573.                 $filter = $_REQUEST['archive'] . "*";
  574.         }
  575.         else {
  576.                 $filter = "*";
  577.         }
  578. }
  579.  
  580. ?>
  581.  
  582. <?php
  583.  
  584. if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and file_exists("data/items/{$_REQUEST['entry']}")) {
  585.  
  586.         $cat_dir = file_get_contents("data/items/{$_REQUEST['entry']}/category.txt");
  587.  
  588.         if (!file_exists("data/categories/$cat_dir/private.txt")) {
  589.  
  590.                 if (!file_exists("data/items/{$_REQUEST['entry']}/passwd.txt")) {
  591.  
  592.                         if (!file_exists("data/items/{$_REQUEST['entry']}/private.txt")) {
  593.  
  594.                                 $description = file_get_contents("data/items/{$_REQUEST['entry']}/body.txt");
  595.                                 $description = strip_tags($description);
  596.                                 $description = html_entity_decode($description);
  597.                                 $description = str_replace("&","&amp;",$description);
  598.                                 $description = str_replace("<","&lt;",$description);
  599.                                 $description = str_replace(">","&gt;",$description);
  600.                                 $description = str_replace("<br>"," ",$description);
  601.                                 $description = str_replace("<br />"," ",$description);
  602.                                 $description = str_replace("\r"," ",$description);
  603.                                 $description = str_replace("\n"," ",$description);
  604.                                 $description = str_replace(chr(10)," ",$description);
  605.                                 $description = str_replace(chr(13)," ",$description);
  606.                                 $description = trim($description);
  607.                                 $description = substr($description,0,210);
  608.                                 $description = htmlentities($description, ENT_NOQUOTES);
  609.  
  610.                                                 if (file_exists("data/pf.txt") and file_exists("data/pf-badwords.txt") and (!isset($_SESSION['logged_in']) or empty($_SESSION['logged_in']) or (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt"))))) {
  611.                                         $badwords = file_get_contents("data/pf-badwords.txt");
  612.                                         if (file_exists("data/pf-censor.txt")) {
  613.                                                 $censor = file_get_contents("data/pf-censor.txt");
  614.                                         }
  615.                                         else {
  616.                                                 $censor = "[expletive]";
  617.                                         }
  618.                                         $description = preg_replace("/\b($badwords)\b/i",$censor,$description);
  619.                                 }
  620.  
  621.                                 echo "<meta name=\"description\" content=\"{$description}\">";
  622.                         }
  623.                 }
  624.         }
  625. }
  626.  
  627. ?>
  628.  
  629. <style>
  630.  
  631. body {
  632.         color: <?php
  633.                         if (file_exists("data/colors/font.txt")) {
  634.                                 $font_color = file_get_contents("data/colors/font.txt");
  635.                                 echo $font_color;
  636.                         }
  637.                         else {
  638.                                 echo "#666666";
  639.                         }
  640.         ?>;
  641.         margin: 0px 0px 10px 10px;
  642.         padding: 0px;
  643.         text-align: left;
  644.         font-family: <?php
  645.                                 if (file_exists("data/fonts/body.txt")) {
  646.                                         $font_body = file_get_contents("data/fonts/body.txt");
  647.                                         echo "{$font_body},";
  648.                                 }
  649.         ?> arial, helvetica, sans-serif;
  650.         background-color: <?php
  651.                                 if (file_exists("data/colors/bg.txt")) {
  652.                                         $background_color = file_get_contents("data/colors/bg.txt");
  653.                                         if ($background_color == "transparent") {
  654.                                                 echo "#ffffff";
  655.                                         }
  656.                                         else {
  657.                                                 echo $background_color;
  658.                                         }
  659.                                 }
  660.                                 else {
  661.                                         echo "#ffffff";
  662.                                 }
  663.         ?>;
  664.         <?php
  665.         if (file_exists("images/background.gif") and !file_exists("images/background.jpg") and !file_exists("images/background.png")) { ?>
  666.                 background-image: url('images/background.gif');
  667.                 background-attachment: <?php if (file_exists("data/bg-scroll.txt")) { echo scroll; } else { echo fixed; } ?>;
  668.                 background-repeat: <?php if (file_exists("data/bg-repeat.txt")) { readfile("data/bg-repeat.txt"); } else { echo repeat; } ?>;
  669.                 background-position: <?php if (file_exists("data/bg-position.txt")) { readfile("data/bg-position.txt"); } else { echo "top left"; } ?>;
  670.         <?php
  671.         }
  672.         if (!file_exists("images/background.gif") and file_exists("images/background.jpg") and !file_exists("images/background.png")) { ?>
  673.                 background-image: url('images/background.jpg');
  674.                 background-attachment: <?php if (file_exists("data/bg-scroll.txt")) { echo scroll; } else { echo fixed; } ?>;
  675.                 background-repeat: <?php if (file_exists("data/bg-repeat.txt")) { readfile("data/bg-repeat.txt"); } else { echo repeat; } ?>;
  676.                 background-position: <?php if (file_exists("data/bg-position.txt")) { readfile("data/bg-position.txt"); } else { echo "top left"; } ?>;
  677.         <?php
  678.         }
  679.         if (!file_exists("images/background.gif") and !file_exists("images/background.jpg") and file_exists("images/background.png")) { ?>
  680.                 background-image: url('images/background.png');
  681.                 background-attachment: <?php if (file_exists("data/bg-scroll.txt")) { echo scroll; } else { echo fixed; } ?>;
  682.                 background-repeat: <?php if (file_exists("data/bg-repeat.txt")) { readfile("data/bg-repeat.txt"); } else { echo repeat; } ?>;
  683.                 background-position: <?php if (file_exists("data/bg-position.txt")) { readfile("data/bg-position.txt"); } else { echo "top left"; } ?>;
  684.         <?php
  685.         }
  686.         ?>
  687. }
  688.  
  689. p, td {
  690.         font-size: 11px;
  691. }
  692.  
  693. a {
  694.         font-weight: bold;
  695.         text-decoration: none;
  696. }
  697.  
  698. a:link {
  699.         color: <?php
  700.                         if (file_exists("data/colors/link.txt")) {
  701.                                 $a_link_color = file_get_contents("data/colors/link.txt");
  702.                                 echo $a_link_color;
  703.                         }
  704.                         else {
  705.                                 echo "#666666";
  706.                         }
  707.         ?>;
  708. }
  709.  
  710. a:visited {
  711.         color: <?php
  712.                         if (file_exists("data/colors/vlink.txt")) {
  713.                                 $a_visited_color = file_get_contents("data/colors/vlink.txt");
  714.                                 echo $a_visited_color;
  715.                         }
  716.                         else {
  717.                                 echo "#666666";
  718.                         }
  719.         ?>;
  720. }
  721.  
  722. a:hover {
  723.         color: <?php
  724.                         if (file_exists("data/colors/hover.txt")) {
  725.                                 $a_hover_color = file_get_contents("data/colors/hover.txt");
  726.                                 echo $a_hover_color;
  727.                         }
  728.                         else {
  729.                                 echo "#336699";
  730.                         }
  731.         ?>;
  732. }
  733.  
  734. a:active {
  735.         color: <?php
  736.                         if (file_exists("data/colors/hover.txt")) {
  737.                                 $a_active_color = file_get_contents("data/colors/hover.txt");
  738.                                 echo $a_active_color;
  739.                         }
  740.                         else {
  741.                                 echo "#336699";
  742.                         }
  743.         ?>;
  744. }
  745.  
  746. #panel_title {
  747.         font-family: <?php
  748.                                 if (file_exists("data/fonts/panel-title.txt")) {
  749.                                         $font_panel_title = file_get_contents("data/fonts/panel-title.txt");
  750.                                         echo "{$font_panel_title},";
  751.                                 }
  752.         ?> arial, helvetica, sans-serif;
  753.         font-size: 12px;
  754.         font-weight: bold;
  755.         color: <?php
  756.                         if (file_exists("data/colors/pt-font.txt")) {
  757.                                 $panel_title_font_color = file_get_contents("data/colors/pt-font.txt");
  758.                                 echo $panel_title_font_color;
  759.                         }
  760.                         else {
  761.                                 echo "#666666";
  762.                         }
  763.         ?>;
  764.         padding: 5px 5px 5px 5px;
  765.         background-color: <?php
  766.                                 if (file_exists("data/colors/pt-bg.txt")) {
  767.                                         $panel_title_background_color = file_get_contents("data/colors/pt-bg.txt");
  768.                                         echo $panel_title_background_color;
  769.                                 }
  770.                                 else {
  771.                                         echo "transparent";
  772.                                 }
  773.         ?>;
  774.         margin: 0px 0px 0px 0px;
  775.         border-color: <?php
  776.                                 if (file_exists("data/colors/border.txt")) {
  777.                                         $panel_title_border_color = file_get_contents("data/colors/border.txt");
  778.                                         echo $panel_title_border_color;
  779.                                 }
  780.                                 else {
  781.                                         echo "#cccccc";
  782.                                 }
  783.         ?>;
  784.         border-width: 1px 1px 0px 1px;
  785.         border-style: solid solid none solid;
  786. }
  787.  
  788. #panel_body {
  789.         font-family: <?php
  790.                                 if (file_exists("data/fonts/panel-body.txt")) {
  791.                                         $font_panel_body = file_get_contents("data/fonts/panel-body.txt");
  792.                                         echo "{$font_panel_body},";
  793.                                 }
  794.         ?> arial, helvetica, sans-serif;
  795.         font-size: 11px;
  796.         color: <?php
  797.                         if (file_exists("data/colors/pb-font.txt")) {
  798.                                 $panel_body_font_color = file_get_contents("data/colors/pb-font.txt");
  799.                                 echo $panel_body_font_color;
  800.                         }
  801.                         else {
  802.                                 echo "#666666";
  803.                         }
  804.         ?>;
  805.  
  806.         <?php
  807.                 if (file_exists("data/round.txt")) {
  808.                         echo 'padding: 5px 5px 2px 5px;';
  809.                 }
  810.                 else {
  811.                         echo 'padding: 5px 5px 5px 5px;';
  812.                 }
  813.         ?>
  814.         background-color: <?php
  815.                                 if (file_exists("data/colors/pb-bg.txt")) {
  816.                                         $panel_body_background_color = file_get_contents("data/colors/pb-bg.txt");
  817.                                         echo $panel_body_background_color;
  818.                                 }
  819.                                 else {
  820.                                         echo "transparent";
  821.                                 }
  822.         ?>;
  823.  
  824.         <?php
  825.                 if (file_exists("data/round.txt")) {
  826.                         echo 'margin: 0px 0px 0px 0px;';
  827.                 }
  828.                 else {
  829.                         echo 'margin: 0px 0px 10px 0px;';
  830.                 }
  831.         ?>
  832.  
  833.         border-color: <?php
  834.                         if (file_exists("data/colors/border.txt")) {
  835.                                 $panel_body_border_color = file_get_contents("data/colors/border.txt");
  836.                                 echo $panel_body_border_color;
  837.                         }
  838.                         else {
  839.                                 echo "#cccccc";
  840.                         }
  841.         ?>;
  842.         <?php
  843.                 if (file_exists("data/round.txt")) {
  844.                         echo 'border-width: 1px 1px 0px 1px;';
  845.                         echo 'border-style: solid solid none solid;';
  846.                 }
  847.                 else {
  848.                         echo 'border-width: 1px 1px 1px 1px;';
  849.                         echo 'border-style: solid solid solid solid;';
  850.                 }
  851.         ?>
  852. }
  853.  
  854. #panel_footer {
  855.         font-family: <?php
  856.                                 if (file_exists("data/fonts/panel-footer.txt")) {
  857.                                         $font_panel_footer = file_get_contents("data/fonts/panel-footer.txt");
  858.                                         echo "{$font_panel_footer},";
  859.                                 }
  860.         ?> arial, helvetica, sans-serif;
  861.         font-size: 11px;
  862.         color: <?php
  863.                         if (file_exists("data/colors/pf-font.txt")) {
  864.                                 $panel_footer_font_color = file_get_contents("data/colors/pf-font.txt");
  865.                                 echo $panel_footer_font_color;
  866.                         }
  867.                         else {
  868.                                 echo "#666666";
  869.                         }
  870.         ?>;
  871.         <?php
  872.                 if (file_exists("data/round.txt")) {
  873.                         echo 'padding: 5px 5px 2px 5px;';
  874.                 }
  875.                 else {
  876.                         echo 'padding: 5px 5px 5px 5px;';
  877.                 }
  878.         ?>
  879.         background-color: <?php
  880.                                 if (file_exists("data/colors/pf-bg.txt")) {
  881.                                         $panel_footer_background_color = file_get_contents("data/colors/pf-bg.txt");
  882.                                         echo $panel_footer_background_color;
  883.                                 }
  884.                                 else {
  885.                                         echo "transparent";
  886.                                 }
  887.         ?>;
  888.  
  889.         <?php
  890.                 if (file_exists("data/round.txt")) {
  891.                         echo 'margin: 0px 0px 0px 0px;';
  892.                 }
  893.                 else {
  894.                         echo 'margin: 0px 0px 10px 0px;';
  895.                 }
  896.         ?>
  897.  
  898.         border-color: <?php
  899.                                 if (file_exists("data/colors/border.txt")) {
  900.                                         $panel_footer_border_color = file_get_contents("data/colors/border.txt");
  901.                                         echo $panel_footer_border_color;
  902.                                 }
  903.                                 else {
  904.                                         echo "#cccccc";
  905.                                 }
  906.         ?>;
  907.         <?php
  908.                 if (file_exists("data/round.txt")) {
  909.                         echo 'border-width: 1px 1px 0px 1px;';
  910.                         echo 'border-style: solid solid none solid;';
  911.                 }
  912.                 else {
  913.                         echo 'border-width: 0px 1px 1px 1px;';
  914.                         echo 'border-style: none solid solid solid;';
  915.                 }
  916.         ?>
  917.         text-align: right;
  918. }
  919.  
  920. .input {        
  921.         color: <?php
  922.                         if (file_exists("data/colors/border.txt")) {
  923.                                 $input_color = file_get_contents("data/colors/border.txt");
  924.                                 echo $input_color;
  925.                         }
  926.                         else {
  927.                                 echo "#666666";
  928.                         }
  929.         ?>;
  930.         background: #ffffff;
  931.         border: <?php
  932.                         if (file_exists("data/colors/border.txt")) {
  933.                                 $panel_footer_border_color = file_get_contents("data/colors/border.txt");
  934.                                 echo $panel_footer_border_color;
  935.                         }
  936.                         else {
  937.                                 echo "#999999";
  938.                         }
  939.         ?> solid 1px;
  940.         width: 300px;
  941.         font-family: <?php
  942.                                 if (file_exists("data/fonts/input.txt")) {
  943.                                         $font_input = file_get_contents("data/fonts/input.txt");
  944.                                         echo "{$font_input},";
  945.                                 }
  946.         ?> arial, helvetica, sans-serif;
  947.         font-size: 11px;
  948. }
  949.  
  950. .search {      
  951.         color: #666666;
  952.         background: #ffffff;
  953.         width: 100%;
  954.  
  955.         font-family: <?php
  956.                                 if (file_exists("data/fonts/input.txt")) {
  957.                                         $font_input = file_get_contents("data/fonts/input.txt");
  958.                                         echo "{$font_input},";
  959.                                 }
  960.         ?> arial, helvetica, sans-serif;
  961.         font-size: 11px;
  962. }
  963.  
  964. #panel_free {
  965.         padding: 0px 5px 0px 5px;
  966.         margin: 0px 0px 10px 0px;
  967. }
  968.  
  969. .rbtop {
  970.         display: block;
  971.         background: transparent;
  972.         font-size: 1px;
  973.         margin: 0px 0px 0px 0px;
  974. }
  975.  
  976. .rbbottom {
  977.         display: block;
  978.         background: transparent;
  979.         font-size: 1px;
  980.         margin: 0px 0px 10px 0px;
  981. }
  982.  
  983. .rb1t, .rb2t, .rb3t, .rb4t, .rb1b, .rb2b, .rb3b, .rb4b, .rb1e, .rb2e, .rb3e, .rb4e {
  984.         display: block;
  985.         overflow: hidden;
  986. }
  987.  
  988. .rb1t, .rb2t, .rb3t, .rb1b, .rb2b, .rb3b, .rb1e, .rb2e, .rb3e {
  989.         height: 1px;
  990. }
  991.  
  992. .rb2t, .rb3t, .rb4t {
  993.         background-color: <?php
  994.                                 if (file_exists("data/colors/pt-bg.txt")) {
  995.                                         $panel_title_background_color = file_get_contents("data/colors/pt-bg.txt");
  996.                                         echo $panel_title_background_color;
  997.                                 }
  998.                                 else {
  999.                                         echo "transparent";
  1000.                                 }
  1001.         ?>;
  1002.         border-left: 1px solid;
  1003.         border-right: 1px solid;
  1004.         border-color: <?php
  1005.                         if (file_exists("data/colors/border.txt")) {
  1006.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1007.                                 echo $panel_title_border_color;
  1008.                         }
  1009.                         else {
  1010.                                 echo "#cccccc";
  1011.                         };
  1012.         ?>;
  1013. }
  1014.  
  1015. .rb2b, .rb3b, .rb4b {
  1016.         background-color: <?php
  1017.                                 if (file_exists("data/colors/pb-bg.txt")) {
  1018.                                         $panel_title_background_color = file_get_contents("data/colors/pb-bg.txt");
  1019.                                         echo $panel_title_background_color;
  1020.                                 }
  1021.                                 else {
  1022.                                         echo "transparent";
  1023.                                 }
  1024.         ?>;
  1025.         border-left: 1px solid;
  1026.         border-right: 1px solid;
  1027.         border-color: <?php
  1028.                         if (file_exists("data/colors/border.txt")) {
  1029.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1030.                                 echo $panel_title_border_color;
  1031.                         }
  1032.                         else {
  1033.                                 echo "#cccccc";
  1034.                         };
  1035.         ?>;
  1036. }
  1037.  
  1038. .rb2e, .rb3e, .rb4e {
  1039.         background-color: <?php
  1040.                                 if (file_exists("data/colors/pf-bg.txt")) {
  1041.                                         $panel_title_background_color = file_get_contents("data/colors/pf-bg.txt");
  1042.                                         echo $panel_title_background_color;
  1043.                                 }
  1044.                                 else {
  1045.                                         echo "transparent";
  1046.                                 }
  1047.         ?>;
  1048.         border-left: 1px solid;
  1049.         border-right: 1px solid;
  1050.         border-color: <?php
  1051.                         if (file_exists("data/colors/border.txt")) {
  1052.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1053.                                 echo $panel_title_border_color;
  1054.                         }
  1055.                         else {
  1056.                                 echo "#cccccc";
  1057.                         };
  1058.         ?>;
  1059. }
  1060.  
  1061. .rb1t, .rb1b, .rb1e {
  1062.         margin: 0 5px;
  1063.         background: <?php
  1064.                         if (file_exists("data/colors/border.txt")) {
  1065.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1066.                                 echo $panel_title_border_color;
  1067.                         }
  1068.                         else {
  1069.                                 echo "#cccccc";
  1070.                         };
  1071.         ?>;
  1072. }
  1073.  
  1074. .rb2t, .rb2b, .rb2e {
  1075.         margin: 0 3px;
  1076.         border-width: 0 2px;
  1077. }
  1078.  
  1079. .rb3t, .rb3b, .rb3e {
  1080.         margin: 0 2px;
  1081. }
  1082.  
  1083. .rb4t, .rb4b, .rb4e {
  1084.         height: 2px;
  1085.         margin: 0 1px;
  1086. }
  1087.  
  1088. .xtitle {
  1089.         display: block;
  1090.         border:0 solid;
  1091.         border-width:0 1px;
  1092.         padding: 1px 5px 5px 5px;
  1093.         font-weight: bold;
  1094.         font-family: <?php
  1095.                                 if (file_exists("data/fonts/panel-title.txt")) {
  1096.                                         $font_panel_title = file_get_contents("data/fonts/panel-title.txt");
  1097.                                         echo "{$font_panel_title},";
  1098.                                 }
  1099.         ?> arial, helvetica, sans-serif;
  1100.         color: <?php
  1101.                         if (file_exists("data/colors/pt-font.txt")) {
  1102.                                 $panel_title_font_color = file_get_contents("data/colors/pt-font.txt");
  1103.                                 echo $panel_title_font_color;
  1104.                         }
  1105.                         else {
  1106.                                 echo "#666666";
  1107.                         }
  1108.         ?>;
  1109.         background-color: <?php
  1110.                                 if (file_exists("data/colors/pt-bg.txt")) {
  1111.                                         $panel_title_background_color = file_get_contents("data/colors/pt-bg.txt");
  1112.                                         echo $panel_title_background_color;
  1113.                                 }
  1114.                                 else {
  1115.                                         echo "transparent";
  1116.                                 }
  1117.         ?>;
  1118.         border-color: <?php
  1119.                         if (file_exists("data/colors/border.txt")) {
  1120.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1121.                                 echo $panel_title_border_color;
  1122.                         }
  1123.                         else {
  1124.                                 echo "#cccccc";
  1125.                         };
  1126.         ?>;
  1127. }
  1128.  
  1129. .rbspace {
  1130.         height: 3px;
  1131. }
  1132.  
  1133. #panel_entry_body {
  1134.         font-family: <?php
  1135.                                 if (file_exists("data/fonts/panel-body.txt")) {
  1136.                                         $font_panel_body = file_get_contents("data/fonts/panel-body.txt");
  1137.                                         echo "{$font_panel_body},";
  1138.                                 }
  1139.         ?> arial, helvetica, sans-serif;
  1140.         font-size: 11px;
  1141.         color: <?php
  1142.                         if (file_exists("data/colors/pb-font.txt")) {
  1143.                                 $panel_body_font_color = file_get_contents("data/colors/pb-font.txt");
  1144.                                 echo $panel_body_font_color;
  1145.                         }
  1146.                         else {
  1147.                                 echo "#666666";
  1148.                         }
  1149.         ?>;
  1150.         <?php
  1151.                 if (file_exists("data/round.txt")) {
  1152.                         echo 'padding: 5px 5px 2px 5px;';
  1153.                 }
  1154.                 else {
  1155.                         echo 'padding: 5px 5px 5px 5px;';
  1156.                 }
  1157.         ?>
  1158.         background-color: <?php
  1159.                                 if (file_exists("data/colors/pb-bg.txt")) {
  1160.                                         $panel_body_background_color = file_get_contents("data/colors/pb-bg.txt");
  1161.                                         echo $panel_body_background_color;
  1162.                                 }
  1163.                                 else {
  1164.                                         echo "transparent";
  1165.                                 }
  1166.         ?>;
  1167.         margin: 0px 0px 0px 0px;
  1168.         border-color: <?php
  1169.                         if (file_exists("data/colors/border.txt")) {
  1170.                                 $panel_body_border_color = file_get_contents("data/colors/border.txt");
  1171.                                 echo $panel_body_border_color;
  1172.                         }
  1173.                         else {
  1174.                                 echo "#cccccc";
  1175.                         }
  1176.         ?>;
  1177.         <?php
  1178.                 if (file_exists("data/round.txt")) {
  1179.                         echo 'border-width: 1px 1px 0px 1px;';
  1180.                         echo 'border-style: solid solid none solid;';
  1181.                 }
  1182.                 else {
  1183.                         echo 'border-width: 1px 1px 1px 1px;';
  1184.                         echo 'border-style: solid solid solid solid;';
  1185.                 }
  1186.         ?>
  1187. }
  1188. </style>
  1189.  
  1190. <link rel="alternate" type="application/rss+xml" title="RSS 0.91" href="rss.php?ver=0.91">
  1191. <link rel="alternate" type="application/rss+xml" title="RSS 1.0" href="rss.php?ver=1.0">
  1192. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss.php?ver=2.0">
  1193.  
  1194. <?php
  1195.  
  1196. if (file_exists("data/center.txt")) {
  1197.         echo "<center>";
  1198. }
  1199.  
  1200. if (file_exists("header.php")) {
  1201.         include("header.php");
  1202. }
  1203. ?>
  1204.  
  1205. <table border=0 cellspacing=10 cellpadding=0>
  1206. <tr><td width=175 valign=top>
  1207.  
  1208. <?php
  1209.  
  1210. if (file_exists("data/round.txt")) {
  1211.         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1212. }
  1213. else {
  1214.         echo '<div id=panel_title>';
  1215. }
  1216.  
  1217. ?>
  1218.  
  1219. Profile</div>
  1220. <div id=panel_body>
  1221. <?php
  1222. if (file_exists("images/profile.gif")) {
  1223.         $profile_gif_image_size = getimagesize("images/profile.gif");
  1224.         $profile_gif_image_width = $profile_gif_image_size[0];
  1225.         $profile_gif_image_height = $profile_gif_image_size[1];
  1226.  
  1227.         $max_profile_gif_image_width = 163;
  1228.  
  1229.         if ($profile_gif_image_width > $max_profile_gif_image_width) {  
  1230.                 $sizefactor = (double) ($max_profile_gif_image_width / $profile_gif_image_width) ;
  1231.                 $profile_gif_image_width = (int) ($profile_gif_image_width * $sizefactor);
  1232.                 $profile_gif_image_height = (int) ($profile_gif_image_height * $sizefactor);
  1233.         }
  1234.  
  1235.         echo "<img src=images/profile.gif border=0 width=";
  1236.         echo $profile_gif_image_width;
  1237.         echo " height=";
  1238.         echo $profile_gif_image_height;
  1239.         echo " align=left>";
  1240. }
  1241. if (file_exists("images/profile.jpg")) {
  1242.         $profile_jpg_image_size = getimagesize("images/profile.jpg");
  1243.         $profile_jpg_image_width = $profile_jpg_image_size[0];
  1244.         $profile_jpg_image_height = $profile_jpg_image_size[1];
  1245.  
  1246.         $max_profile_jpg_image_width = 163;
  1247.  
  1248.         if ($profile_jpg_image_width > $max_profile_jpg_image_width) {  
  1249.                 $sizefactor = (double) ($max_profile_jpg_image_width / $profile_jpg_image_width) ;
  1250.                 $profile_jpg_image_width = (int) ($profile_jpg_image_width * $sizefactor);
  1251.                 $profile_jpg_image_height = (int) ($profile_jpg_image_height * $sizefactor);
  1252.         }
  1253.  
  1254.         echo "<img src=images/profile.jpg border=0 width=";
  1255.         echo $profile_jpg_image_width;
  1256.         echo " height=";
  1257.         echo $profile_jpg_image_height;
  1258.         echo " align=left>";
  1259. }
  1260. if (file_exists("images/profile.png")) {
  1261.         $profile_png_image_size = getimagesize("images/profile.png");
  1262.         $profile_png_image_width = $profile_png_image_size[0];
  1263.         $profile_png_image_height = $profile_png_image_size[1];
  1264.  
  1265.         $max_profile_png_image_width = 163;
  1266.  
  1267.         if ($profile_png_image_width > $max_profile_png_image_width) {  
  1268.                 $sizefactor = (double) ($max_profile_png_image_width / $profile_png_image_width) ;
  1269.                 $profile_png_image_width = (int) ($profile_png_image_width * $sizefactor);
  1270.                 $profile_png_image_height = (int) ($profile_png_image_height * $sizefactor);
  1271.         }
  1272.  
  1273.         echo "<img src=images/profile.png border=0 width=";
  1274.         echo $profile_png_image_width;
  1275.         echo " height=";
  1276.         echo $profile_png_image_height;
  1277.         echo " align=left>";
  1278. }
  1279. include("data/profile.php");
  1280. ?>
  1281. </div>
  1282.  
  1283. <?php
  1284.         if (file_exists("data/round.txt")) {
  1285.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1286.         }
  1287. ?>
  1288.  
  1289. <?php
  1290.  
  1291. if (file_exists("data/round.txt")) {
  1292.         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1293. }
  1294. else {
  1295.         echo '<div id=panel_title>';
  1296. }
  1297.  
  1298. ?>
  1299.  
  1300. Navigation</div>
  1301. <div id=panel_body>
  1302. <a href="<?php echo $_SERVER['PHP_SELF']; ?>">Home</a><br>
  1303.  
  1304. <?php
  1305.  
  1306. if (file_exists("data/bb.txt") and file_exists("data/members/active")) {
  1307.         echo '<a href=member.php?id=all>Members</a><br>';
  1308. }
  1309.  
  1310. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1311.         echo '<a href=add.php>Add Entry</a><br>';
  1312.         echo '<a href=settings.php>Settings</a><br>';
  1313.         echo '<a href=panels.php>Panels</a><br>';
  1314.         echo '<a href=cat.php>Categories</a><br>';
  1315.         echo '<a href=colors.php>Colors</a><br>';
  1316.         echo '<a href=fonts.php>Fonts</a><br>';
  1317.         echo '<a href=login.php>Logout</a>';
  1318. } elseif (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != $login_username) and file_exists("data/members/active/{$_SESSION['logged_in']}") and file_exists("data/bb.txt")) {
  1319.  
  1320.         if (file_exists("data/members/active/{$_SESSION['logged_in']}/category.txt")) {
  1321.                 $bb_cat = file_get_contents("data/members/active/{$_SESSION['logged_in']}/category.txt");
  1322.                 if (!file_exists("data/categories/$bb_cat") or ($bb_cat == "")) {
  1323.                         unlink("data/members/active/{$_SESSION['logged_in']}/category.txt");
  1324.                 }
  1325.         }
  1326.  
  1327.         if (file_exists("data/members/active/{$_SESSION['logged_in']}/rw.txt") or file_exists("data/members/active/{$_SESSION['logged_in']}/category.txt")) {
  1328.                 echo '<a href=add.php>Add Entry</a><br>';
  1329.         }
  1330.         echo '<a href=options.php>Options</a><br>';
  1331.         echo '<a href=login.php>Logout</a>';
  1332. }
  1333. else {
  1334.         if (file_exists("data/bb.txt") and file_exists("data/reg.txt")) {
  1335.                 echo '<a href=reg.php>Register</a><br>';
  1336.         }
  1337.         echo '<a href=login.php>Login</a>';
  1338. }
  1339. ?>
  1340.  
  1341. </div>
  1342.  
  1343. <?php
  1344.         if (file_exists("data/round.txt")) {
  1345.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1346.         }
  1347. ?>
  1348.  
  1349. <?php
  1350. if (file_exists("data/sticky")) {
  1351.         if ($dh_sticky_list = opendir("data/sticky")) {
  1352.                 while (($entry_sticky_list = readdir($dh_sticky_list)) !== false) {
  1353.  
  1354.                         if (file_exists("data/items/$entry_sticky_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1355.                                 continue;
  1356.                         }
  1357.  
  1358.                         if (file_exists("data/items/$entry_sticky_list/member.txt") and (!isset($_SESSION['logged_in']))) {
  1359.                                 continue;
  1360.                         }
  1361.  
  1362.                         $get_cat_dir = file_get_contents("data/items/$entry_sticky_list/category.txt");
  1363.  
  1364.                         if (file_exists("data/categories/$get_cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_sticky_list/cat.txt")) {
  1365.                                 continue;
  1366.                         }
  1367.  
  1368.                         if ($entry_sticky_list != "." && $entry_sticky_list != ".." && fnmatch("*", $entry_sticky_list)) {
  1369.                                 $show_sticky_list[] = $entry_sticky_list;
  1370.                         }
  1371.                 }
  1372.                 closedir($dh_sticky_list);
  1373.         }
  1374.  
  1375.         sort($show_sticky_list);
  1376.         reset($show_sticky_list);
  1377.         $count_sticky_list = count($show_sticky_list);
  1378.        
  1379.         if ($count_sticky_list > 0) {
  1380.  
  1381.                 if (file_exists("data/round.txt")) {
  1382.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1383.                 }
  1384.                 else {
  1385.                         echo '<div id=panel_title>';
  1386.                 }
  1387.                
  1388.                 echo 'Quick Links</div>';
  1389.                 echo '<div id=panel_body>';
  1390.                 foreach ($show_sticky_list as $sticky_list_entry) {
  1391.                         echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=';
  1392.                         echo $sticky_list_entry;
  1393.                         echo '>';
  1394.                         readfile("data/items/$sticky_list_entry/title.txt");
  1395.                         echo '</a><br>';
  1396.                 }
  1397.                 echo '</div>';
  1398.  
  1399.                 if (file_exists("data/round.txt")) {
  1400.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1401.                 }
  1402.         }
  1403. }
  1404. ?>
  1405.  
  1406.  
  1407.  
  1408. <?php
  1409. if (file_exists("data/panels")) {
  1410.         if ($dh_panel_list = opendir("data/panels")) {
  1411.                 while (($entry_panel_list = readdir($dh_panel_list)) !== false) {
  1412.  
  1413.                         if (file_exists("data/panels/$entry_panel_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1414.                                 continue;
  1415.                         }
  1416.  
  1417.                         if (file_exists("data/panels/$entry_panel_list/right.txt")) {
  1418.                                 continue;
  1419.                         }
  1420.  
  1421.                         if (file_exists("data/panels/$entry_panel_list/center.txt")) {
  1422.                                 continue;
  1423.                         }
  1424.  
  1425.                         if (file_exists("data/panels/$entry_panel_list/top.txt")) {
  1426.                                 continue;
  1427.                         }
  1428.  
  1429.                         if (file_exists("data/panels/$entry_panel_list/entry.txt")) {
  1430.                                 continue;
  1431.                         }
  1432.  
  1433.                         if ($entry_panel_list != "." && $entry_panel_list != ".." && fnmatch("*", $entry_panel_list)) {
  1434.                                 $show_panel_list[] = $entry_panel_list;
  1435.                         }
  1436.                 }
  1437.                 closedir($dh_panel_list);
  1438.         }
  1439.  
  1440.         sort($show_panel_list);
  1441.         reset($show_panel_list);
  1442.         $count_panel_list = count($show_panel_list);
  1443.        
  1444.         if ($count_panel_list > 0) {
  1445.                 foreach ($show_panel_list as $panel_list_entry) {
  1446.                         if (!file_exists("data/panels/$panel_list_entry/free.txt")) {
  1447.  
  1448.                                 if (file_exists("data/round.txt")) {
  1449.                                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1450.                                 }
  1451.                                 else {
  1452.                                         echo '<div id=panel_title>';
  1453.                                 }
  1454.  
  1455.                                 readfile("data/panels/$panel_list_entry/title.txt");
  1456.  
  1457.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1458.                                         echo "<a href=panels.php#{$panel_list_entry}>";
  1459.                                         echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  1460.                                 }
  1461.  
  1462.                                 if (file_exists("data/panels/$panel_list_entry/private.txt")) {
  1463.                                         echo '<img src=images/widget.private.png border=0 width=11 height=11 align=right>';
  1464.                                 }
  1465.  
  1466.                                 echo '</div><div id=panel_body>';
  1467.                         }
  1468.  
  1469.                         if (file_exists("data/panels/$panel_list_entry/free.txt")) {
  1470.                                 echo '<div id=panel_free>';
  1471.                         }
  1472.  
  1473.                         include("data/panels/$panel_list_entry/panel.php");
  1474.  
  1475.                         echo '</div>';
  1476.  
  1477.                         if (file_exists("data/round.txt") and !file_exists("data/panels/$panel_list_entry/free.txt")) {
  1478.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1479.                         }
  1480.                 }
  1481.         }
  1482. }
  1483. ?>
  1484.  
  1485. </td>
  1486.  
  1487. <td valign=top width=<?php if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) { echo "610"; } else { echo "525"; } ?>>
  1488.  
  1489. <?php
  1490. if (file_exists("data/panels")) {
  1491.         if ($dh_top_panel_list = opendir("data/panels")) {
  1492.                 while (($entry_top_panel_list = readdir($dh_top_panel_list)) !== false) {
  1493.  
  1494.                         if (file_exists("data/panels/$entry_top_panel_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1495.                                 continue;
  1496.                         }
  1497.  
  1498.                         if (!file_exists("data/panels/$entry_top_panel_list/top.txt")) {
  1499.                                 continue;
  1500.                         }
  1501.  
  1502.                         if ($entry_top_panel_list != "." && $entry_top_panel_list != ".." && fnmatch("*", $entry_top_panel_list)) {
  1503.                                 $show_top_panel_list[] = $entry_top_panel_list;
  1504.                         }
  1505.                 }
  1506.                 closedir($dh_top_panel_list);
  1507.         }
  1508.  
  1509.         sort($show_top_panel_list);
  1510.         reset($show_top_panel_list);
  1511.         $count_top_panel_list = count($show_top_panel_list);
  1512.        
  1513.         if ($count_top_panel_list > 0) {
  1514.                 foreach ($show_top_panel_list as $top_panel_list_entry) {
  1515.                         if (!file_exists("data/panels/$top_panel_list_entry/free.txt")) {
  1516.  
  1517.                                 if (file_exists("data/round.txt")) {
  1518.                                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1519.                                 }
  1520.                                 else {
  1521.                                         echo '<div id=panel_title>';
  1522.                                 }
  1523.  
  1524.                                 readfile("data/panels/$top_panel_list_entry/title.txt");
  1525.  
  1526.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1527.                                         echo "<a href=panels.php#{$top_panel_list_entry}>";
  1528.                                         echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  1529.                                 }
  1530.  
  1531.                                 echo '</div><div id=panel_body>';
  1532.                         }
  1533.  
  1534.                         if (file_exists("data/panels/$top_panel_list_entry/free.txt")) {
  1535.                                 echo '<div id=panel_free>';
  1536.                         }
  1537.  
  1538.                         include("data/panels/$top_panel_list_entry/panel.php");
  1539.                         echo '</div>';
  1540.  
  1541.                         if (file_exists("data/round.txt") and !file_exists("data/panels/$top_panel_list_entry/free.txt")) {
  1542.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1543.                         }
  1544.                 }
  1545.         }
  1546. }
  1547. ?>
  1548.  
  1549. <?php
  1550.  
  1551. if (file_exists("data/bb.txt") and file_exists("data/bb-summary.txt") and !file_exists("data/lite.txt") and !isset($_REQUEST['entry']) and !isset($_REQUEST['category']) and !isset($_REQUEST['start']) and !isset($_REQUEST['author']) and !isset($_REQUEST['archive']) and !isset($_REQUEST['find'])) {
  1552.  
  1553. if ($dh_latest_post_items = opendir($dir)) {
  1554.         while (($entry_latest_post_items = readdir($dh_latest_post_items)) !== false) {
  1555.  
  1556.                 if (file_exists("data/items/$entry_latest_post_items/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1557.                         continue;
  1558.                 }
  1559.  
  1560.                 // hide_member (20070606)
  1561.                 //if (file_exists("data/items/$entry_latest_post_items/member.txt") and (!isset($_SESSION['logged_in']))) {
  1562.                 //      continue;
  1563.                 //}
  1564.  
  1565.                 $cat_dir = file_get_contents("data/items/$entry_latest_post_items/category.txt");
  1566.  
  1567.                 if (file_exists("data/categories/$cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_latest_post_items/cat.txt")) {
  1568.                         continue;
  1569.                 }
  1570.  
  1571.                 if ($entry_latest_post_items != "." && $entry_latest_post_items != ".." && fnmatch("*", $entry_latest_post_items)) {
  1572.                         $show_latest_post_items[] = $entry_latest_post_items;
  1573.                 }
  1574.         }
  1575.         closedir($dh_latest_post_items);
  1576. }
  1577.  
  1578. rsort($show_latest_post_items);
  1579. reset($show_latest_post_items);
  1580. $count_latest_post_items = count($show_latest_post_items);
  1581.  
  1582. if ($count_latest_post_items > 0) {
  1583.  
  1584.         if (file_exists("data/round.txt")) {
  1585.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1586.         }
  1587.         else {
  1588.                 echo '<div id=panel_title>';
  1589.         }
  1590.  
  1591.         echo "Latest Entries</div><div id=panel_body>";
  1592.         echo "<table border=0 cellspacing=1 cellpadding=2 bgcolor=#cccccc width=100%>";
  1593.         echo "<tr><td bgcolor=#eeeeee align=center><p>topic</p></td><td bgcolor=#eeeeee align=center><p>author</p></td><td bgcolor=#eeeeee align=center><p>views</p></td><td bgcolor=#eeeeee align=center><p>comments</p></td><td bgcolor=#eeeeee align=center><p>last post</p></td></tr>";
  1594.  
  1595.         $increment_latest_post_entries = 0;
  1596.         $show_latest_post_entries = 5;
  1597.  
  1598.         while ($increment_latest_post_entries <= $show_latest_post_entries) {
  1599.                 echo '<tr><td bgcolor=#ffffff><a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $show_latest_post_items[$increment_latest_post_entries];
  1600.  
  1601.                 if ($dh_summary_comments = opendir("$dir/$show_latest_post_items[$increment_latest_post_entries]/comments/live")) {
  1602.                         while (($entry_summary_comments = readdir($dh_summary_comments)) !== false) {
  1603.                                 if ($entry_summary_comments != "." && $entry_summary_comments != ".." && fnmatch("*", $entry_summary_comments)) {
  1604.                                         $items_summary_comments[] = $entry_summary_comments;
  1605.                                 }
  1606.                         }
  1607.                 closedir($dh_summary_comments);
  1608.                 }
  1609.                 rsort($items_summary_comments);
  1610.                 $summary_comments = count($items_summary_comments);
  1611.  
  1612.                 if ($summary_comments > 0) {
  1613.                         echo '&show=comments';
  1614.                 }
  1615.  
  1616.                 echo '>';
  1617.                 readfile("$dir/$show_latest_post_items[$increment_latest_post_entries]/title.txt");
  1618.                 echo '</a></td>';
  1619.                 echo '<td bgcolor=#ffffff><a href=member.php?id=';
  1620.                 readfile("$dir/$show_latest_post_items[$increment_latest_post_entries]/author.txt");
  1621.                 echo '>';
  1622.                 readfile("$dir/$show_latest_post_items[$increment_latest_post_entries]/author.txt");
  1623.                 echo '</a></td>';
  1624.                 echo '<td bgcolor=#ffffff align=right>';
  1625.                 if (!file_exists("$dir/$show_latest_post_items[$increment_latest_post_entries]/views.txt")) {
  1626.                         echo 0;
  1627.                 }
  1628.                 else {
  1629.                         readfile("$dir/$show_latest_post_items[$increment_latest_post_entries]/views.txt");
  1630.                 }
  1631.                 echo '</td>';
  1632.  
  1633.                 if ($summary_comments < 1) {
  1634.                         echo "<td bgcolor=#ffffff align=right><p>0</p></td>";
  1635.                         echo "<td bgcolor=#ffffff align=right><p>";
  1636.                         $iso_year = substr($show_latest_post_items[$increment_latest_post_entries],0,4);
  1637.                         $iso_month = substr($show_latest_post_items[$increment_latest_post_entries],4,2);
  1638.                         $iso_day = substr($show_latest_post_items[$increment_latest_post_entries],6,2);
  1639.                         $iso_last = $iso_year . "-" . $iso_month . "-" . $iso_day;
  1640.                         echo $iso_last;
  1641.                         echo "</p></td>";
  1642.                 }
  1643.                 else {
  1644.                         echo "<td bgcolor=#ffffff align=right><p>$summary_comments</p></td>";
  1645.                         echo "<td bgcolor=#ffffff align=right><p>";
  1646.                         $iso_year = substr($items_summary_comments[0],0,4);
  1647.                         $iso_month = substr($items_summary_comments[0],4,2);
  1648.                         $iso_day = substr($items_summary_comments[0],6,2);
  1649.                         $iso_last = $iso_year . "-" . $iso_month . "-" . $iso_day;
  1650.                         echo $iso_last;
  1651.                         echo "</p></td>";
  1652.                 }
  1653.                 unset($items_summary_comments);
  1654.  
  1655.                 $increment_latest_post_entries = $increment_latest_post_entries + 1;
  1656.         }
  1657. }
  1658.  
  1659. if ($count_latest_post_items > 0) {
  1660.         echo "</table></div>";
  1661.  
  1662.         if (file_exists("data/round.txt")) {
  1663.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1664.         }
  1665. }
  1666.  
  1667. }
  1668.  
  1669. ?>
  1670.  
  1671. <?php
  1672. if (file_exists("data/panels")) {
  1673.         if ($dh_center_panel_list = opendir("data/panels")) {
  1674.                 while (($entry_center_panel_list = readdir($dh_center_panel_list)) !== false) {
  1675.  
  1676.                         if (file_exists("data/panels/$entry_center_panel_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1677.                                 continue;
  1678.                         }
  1679.  
  1680.                         if (!file_exists("data/panels/$entry_center_panel_list/center.txt")) {
  1681.                                 continue;
  1682.                         }
  1683.  
  1684.                         if ($entry_center_panel_list != "." && $entry_center_panel_list != ".." && fnmatch("*", $entry_center_panel_list)) {
  1685.                                 $show_center_panel_list[] = $entry_center_panel_list;
  1686.                         }
  1687.                 }
  1688.                 closedir($dh_center_panel_list);
  1689.         }
  1690.  
  1691.         sort($show_center_panel_list);
  1692.         reset($show_center_panel_list);
  1693.         $count_center_panel_list = count($show_center_panel_list);
  1694.        
  1695.         if ($count_center_panel_list > 0) {
  1696.                 foreach ($show_center_panel_list as $center_panel_list_entry) {
  1697.                         if (!file_exists("data/panels/$center_panel_list_entry/free.txt")) {
  1698.  
  1699.                                 if (file_exists("data/round.txt")) {
  1700.                                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1701.                                 }
  1702.                                 else {
  1703.                                         echo '<div id=panel_title>';
  1704.                                 }
  1705.  
  1706.                                 readfile("data/panels/$center_panel_list_entry/title.txt");
  1707.  
  1708.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1709.                                         echo "<a href=panels.php#{$center_panel_list_entry}>";
  1710.                                         echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  1711.                                 }
  1712.  
  1713.                                 echo '</div><div id=panel_body>';
  1714.                         }
  1715.  
  1716.                         if (file_exists("data/panels/$center_panel_list_entry/free.txt")) {
  1717.                                 echo '<div id=panel_free>';
  1718.                         }
  1719.  
  1720.                         include("data/panels/$center_panel_list_entry/panel.php");
  1721.                         echo '</div>';
  1722.  
  1723.                         if (file_exists("data/round.txt") and !file_exists("data/panels/$center_panel_list_entry/free.txt")) {
  1724.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1725.                         }
  1726.                 }
  1727.         }
  1728. }
  1729. ?>
  1730.  
  1731. <?php
  1732.  
  1733. if (is_dir($dir)) {
  1734.         if ($dh = opendir($dir)) {
  1735.                 while (($entry_main = readdir($dh)) !== false) {
  1736.  
  1737.                         if (file_exists("data/items/$entry_main/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1738.                                 continue;
  1739.                         }
  1740.  
  1741.                         if (file_exists("data/items/$entry_main/member.txt") and (!isset($_SESSION['logged_in']))) {
  1742.                                 continue;
  1743.                         }
  1744.  
  1745.                         $cat_dir = file_get_contents("data/items/$entry_main/category.txt");
  1746.  
  1747.                         if (file_exists("data/categories/$cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_main/cat.txt")) {
  1748.                                 continue;
  1749.                         }
  1750.  
  1751.                         if (file_exists("data/nocat.txt") and file_exists("data/items/$entry_main/category.txt") and !file_exists("data/items/$entry_main/cat.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and (!isset($_REQUEST['category']) or empty($_REQUEST['category'])) and (!isset($_REQUEST['entry']) or empty($_REQUEST['entry'])) and (!isset($_REQUEST['author']) or empty($_REQUEST['author']))) {
  1752.                                 continue;
  1753.                         }
  1754.  
  1755.                         if ($entry_main != "." && $entry_main != ".." && fnmatch($filter, $entry_main)) {
  1756.                                 if (isset($_REQUEST['category']) and !empty($_REQUEST['category']) and file_exists(strip_tags(strtolower(str_replace(" ", "-", "data/categories/{$_REQUEST['category']}"))))) {
  1757.                                         $category = str_replace(" ", "-", $_REQUEST['category']);
  1758.                                         $category = strtolower($category);
  1759.                                         $category = strip_tags($category);
  1760.                                         if (file_exists("data/items/$entry_main/category.txt") and (file_get_contents("data/items/$entry_main/category.txt") == "$category")) {
  1761.                                                 $items[] = $entry_main;
  1762.                                         }
  1763.                                 }
  1764.                                 elseif (isset($_REQUEST['author']) and !empty($_REQUEST['author']) and file_exists("data/members/active/{$_REQUEST['author']}") and file_exists("data/bb.txt")) {
  1765.                                         if (file_exists("data/items/$entry_main/author.txt") and (file_get_contents("data/items/$entry_main/author.txt") == $_REQUEST['author'])) {
  1766.                                                 $items[] = $entry_main;
  1767.                                         }
  1768.                                 }
  1769.                                 elseif (isset($_REQUEST['author']) and !empty($_REQUEST['author']) and !file_exists("data/members/active/{$_REQUEST['author']}") and (file_get_contents("data/username.txt") == $_REQUEST['author']) and file_exists("data/bb.txt")) {
  1770.                                         if (file_exists("data/items/$entry_main/author.txt") and (file_get_contents("data/items/$entry_main/author.txt") == $_REQUEST['author'])) {
  1771.                                                 $items[] = $entry_main;
  1772.                                         }
  1773.                                 }
  1774.                                 elseif (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "private")) {
  1775.                                         if (file_exists("data/items/$entry_main/private.txt")) {
  1776.                                                 $items[] = $entry_main;
  1777.                                         }
  1778.                                 }
  1779.                                 elseif (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "member")) {
  1780.                                         if (file_exists("data/items/$entry_main/member.txt")) {
  1781.                                                 $items[] = $entry_main;
  1782.                                         }
  1783.                                 }
  1784.                                 elseif (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "passwd")) {
  1785.                                         if (file_exists("data/items/$entry_main/passwd.txt")) {
  1786.                                                 $items[] = $entry_main;
  1787.                                         }
  1788.                                 }
  1789.                                 elseif (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "unfiled")) {
  1790.                                         if (!file_exists("data/items/$entry_main/category.txt")) {
  1791.                                                 $items[] = $entry_main;
  1792.                                         }
  1793.                                 }
  1794.                                 elseif (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "comments")) {
  1795.                                         if (count(glob("data/items/$entry_main/comments/live/*")) === 0) {
  1796.                                                 rmdir("data/items/$entry_main/comments/live");
  1797.                                         }
  1798.                                         if (file_exists("data/items/$entry_main/comments/live")) {
  1799.                                                 $items[] = $entry_main;
  1800.                                         }
  1801.                                 }
  1802.                                 elseif (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "filedrop")) {
  1803.                                         if (count(glob("data/items/$entry_main/filedrop/*")) === 0) {
  1804.                                                 rmdir("data/items/$entry_main/filedrop");
  1805.                                         }
  1806.                                         if (file_exists("data/items/$entry_main/filedrop")) {
  1807.                                                 $items[] = $entry_main;
  1808.                                         }
  1809.                                 }
  1810.                                 elseif (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "album")) {
  1811.                                         if (file_exists("images/$entry_main/album")) {
  1812.                                                 $items[] = $entry_main;
  1813.                                         }
  1814.                                 }
  1815.                                 else {
  1816.                                         $items[] = $entry_main;
  1817.                                 }
  1818.                         }
  1819.                 }
  1820.                 closedir($dh);
  1821.         }
  1822. }
  1823.  
  1824. if (!file_exists("data/old.txt")) {
  1825.         rsort($items);
  1826. }
  1827.  
  1828. if (file_exists("data/old.txt")) {
  1829.         sort($items);
  1830. }
  1831.  
  1832. if (isset($_REQUEST['category']) and !empty($_REQUEST['category'])) {
  1833.  
  1834.         $category = str_replace(" ", "-", $_REQUEST['category']);
  1835.         $category = strtolower($category);
  1836.         $category = strip_tags($category);
  1837.  
  1838.         if (file_exists("data/categories/$category/book.txt")) {
  1839.                 sort($items);
  1840.         }
  1841. }
  1842.  
  1843. reset($items);
  1844.  
  1845. $start = $_REQUEST['start'];
  1846.  
  1847. if (!isset($_REQUEST['start']) or empty($_REQUEST['start'])) {
  1848.         $start = 0;
  1849. }
  1850.  
  1851. $end=$start+$increase;
  1852.    
  1853. $disp=array_slice($items,$start,$increase);
  1854.  
  1855. foreach ($disp as $d) {
  1856.  
  1857.         if (file_exists("$dir/$d/category.txt")) {
  1858.                 $category_check = 'data/categories/' . file_get_contents("$dir/$d/category.txt");
  1859.                 if (!file_exists($category_check)) {
  1860.                         unlink("$dir/$d/category.txt");
  1861.                 }
  1862.         }
  1863.  
  1864.         if (file_exists("$dir/$d/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1865.                 continue;
  1866.         }
  1867.  
  1868.         if (file_exists("$dir/$d/member.txt") and (!isset($_SESSION['logged_in']))) {
  1869.                 continue;
  1870.         }
  1871.  
  1872.         echo '<table border=0 cellspacing=0 cellpadding=0 bgcolor=#cccccc style="background-color: transparent;"><tr><td width=';
  1873.         if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  1874.                 echo "610";
  1875.         }
  1876.         else {
  1877.                 echo "525";
  1878.         }
  1879.         echo '>';
  1880.  
  1881.         if (file_exists("data/round.txt")) {
  1882.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1883.         }
  1884.         else {
  1885.                 echo '<div id=panel_title>';
  1886.         }
  1887.  
  1888.         readfile("$dir/$d/title.txt");
  1889.  
  1890.         // start of wiki mod (20071130)
  1891.  
  1892.         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != $login_username) and file_exists("data/members/active/{$_SESSION['logged_in']}") and file_exists("data/wiki.txt") and (file_exists("$dir/$d/edit.txt") or (file_get_contents("$dir/$d/author.txt") == $_SESSION['logged_in'])) and file_exists("data/members/active/{$_SESSION['logged_in']}/rw.txt") and !file_exists("$dir/$d/passwd.txt")) {
  1893.  
  1894.                 if (file_exists("$dir/$d/wiki/delta") and (count(glob("$dir/$d/wiki/delta/*")) > 0)) {
  1895.                         echo "<a href=wiki.php?entry=$d>";
  1896.                         echo "<img src=images/widget.back.png border=0 width=11 height=11 align=right alt=revisions>";
  1897.                         echo "</a>";
  1898.                 }
  1899.  
  1900.                 echo '<a href=edit.php?entry=';
  1901.                 echo $d;
  1902.                 echo '><img src=images/widget.edit.png border=0 width=11 height=11 align=right alt="edit entry"></a>';
  1903.         }
  1904.  
  1905.         // end of wiki mod (20071130)
  1906.  
  1907.         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1908.  
  1909.                 echo '<a href=del.php?entry=';
  1910.                 echo $d;
  1911.                 echo '><img src=images/widget.del.png border=0 width=11 height=11 align=right alt="delete entry"></a>';
  1912.  
  1913.                 if (!file_exists("$dir/$d/private.txt") and !file_exists("$dir/$d/category.txt") and file_exists("data/bb.txt") and (count(glob("$dir/$d/comments/live/*")) === 0) and (count(glob("$dir/$d/comments/pending/*")) === 0)) {
  1914.                         echo '<a href=move.php?entry=';
  1915.                         echo $d;
  1916.                         echo '><img src=images/widget.move.png border=0 width=11 height=11 align=right alt="move to comment"></a>';
  1917.                 }
  1918.  
  1919.  
  1920.                 if (file_exists("$dir/$d/wiki/delta") and (count(glob("$dir/$d/wiki/delta/*")) > 0)) {
  1921.                         echo "<a href=wiki.php?entry=$d>";
  1922.                         echo "<img src=images/widget.back.png border=0 width=11 height=11 align=right alt=revisions>";
  1923.                         echo "</a>";
  1924.                 }
  1925.  
  1926.                 echo '<a href=edit.php?entry=';
  1927.                 echo $d;
  1928.                 echo '><img src=images/widget.edit.png border=0 width=11 height=11 align=right alt="edit entry"></a>';
  1929.                 if (file_exists("$dir/$d/passwd.txt")) {
  1930.                         echo '<img src=images/widget.protected.png border=0 width=11 height=11 align=right alt="protected entry">';
  1931.                 }
  1932.  
  1933.                 if (file_exists("$dir/$d/private.txt")) {
  1934.                         echo '<img src=images/widget.private.png border=0 width=11 height=11 align=right alt="private entry">';
  1935.                 }
  1936.                 if (file_exists("$dir/$d/member.txt")) {
  1937.                         echo '<img src=images/widget.member.png border=0 width=11 height=11 align=right alt="member-only entry">';
  1938.                 }
  1939.                 if (file_exists("$dir/$d/cat.txt")) {
  1940.                         echo '<img src=images/widget.cat.png border=0 width=11 height=11 align=right alt="always display">';
  1941.                 }
  1942.                 if (file_exists("$dir/$d/category.txt")) {
  1943.  
  1944.                         $read_cat_dir = file_get_contents("$dir/$d/category.txt");
  1945.  
  1946.                         if (file_exists("data/categories/$read_cat_dir/private.txt")) {
  1947.                                 echo '<img src=images/widget.hidden.png border=0 width=11 height=11 align=right alt="category hidden">';
  1948.                         }
  1949.  
  1950.                         if (file_exists("data/nocat.txt")) {
  1951.                                 echo '<img src=images/widget.isolated.png border=0 width=11 height=11 align=right alt="category isolated">';
  1952.                         }
  1953.  
  1954.                         if (file_exists("data/categories/$read_cat_dir/book.txt")) {
  1955.                                 echo '<img src=images/widget.booked.png border=0 width=11 height=11 align=right alt="category booked">';
  1956.                         }
  1957.  
  1958.                         echo '<img src=images/widget.filed.png border=0 width=11 height=11 align=right alt="filed under ';
  1959.                         readfile("$dir/$d/category.txt");
  1960.                         echo '">';
  1961.                 }
  1962.  
  1963.         }
  1964.  
  1965.         echo '</div><div id=panel_entry_body><table border=0 cellspacing=0 cellpadding=0><tr>';
  1966.  
  1967.         if (file_exists("data/bb.txt") and file_exists("data/avatar.txt") and file_exists("$dir/$d/author.txt")) {
  1968.                 echo "<td width=85 valign=top><p>";
  1969.                 $author = file_get_contents("$dir/$d/author.txt");
  1970.                 echo "<a href=member.php?id=$author>";
  1971.                 if ((file_get_contents("data/username.txt") == $author) and (file_exists("images/avatar.jpg") or file_exists("images/avatar.gif") or file_exists("images/avatar.png"))) {
  1972.                         if (file_exists("images/avatar.gif")) {
  1973.                                 $avatar_gif_image_size = getimagesize("images/avatar.gif");
  1974.                                 $avatar_gif_image_width = $avatar_gif_image_size[0];
  1975.                                 $avatar_gif_image_height = $avatar_gif_image_size[1];
  1976.  
  1977.                                 $max_avatar_gif_image_width = 80;
  1978.                        
  1979.                                 if ($avatar_gif_image_width > $max_avatar_gif_image_width) {  
  1980.                                         $sizefactor = (double) ($max_avatar_gif_image_width / $avatar_gif_image_width) ;
  1981.                                         $avatar_gif_image_width = (int) ($avatar_gif_image_width * $sizefactor);
  1982.                                         $avatar_gif_image_height = (int) ($avatar_gif_image_height * $sizefactor);
  1983.                                 }
  1984.  
  1985.                                 echo "<img src=images/avatar.gif border=0 width=";
  1986.                                 echo $avatar_gif_image_width;
  1987.                                 echo " height=";
  1988.                                 echo $avatar_gif_image_height;
  1989.                         }
  1990.                         if (file_exists("images/avatar.jpg")) {
  1991.                                 $avatar_jpg_image_size = getimagesize("images/avatar.jpg");
  1992.                                 $avatar_jpg_image_width = $avatar_jpg_image_size[0];
  1993.                                 $avatar_jpg_image_height = $avatar_jpg_image_size[1];
  1994.                        
  1995.                                 $max_avatar_jpg_image_width = 80;
  1996.                        
  1997.                                 if ($avatar_jpg_image_width > $max_avatar_jpg_image_width) {  
  1998.                                         $sizefactor = (double) ($max_avatar_jpg_image_width / $avatar_jpg_image_width) ;
  1999.                                         $avatar_jpg_image_width = (int) ($avatar_jpg_image_width * $sizefactor);
  2000.                                         $avatar_jpg_image_height = (int) ($avatar_jpg_image_height * $sizefactor);
  2001.                                 }
  2002.  
  2003.                                 echo "<img src=images/avatar.jpg border=0 width=";
  2004.                                 echo $avatar_jpg_image_width;
  2005.                                 echo " height=";
  2006.                                 echo $avatar_jpg_image_height;
  2007.                         }
  2008.                         if (file_exists("images/avatar.png")) {
  2009.                                 $avatar_png_image_size = getimagesize("images/avatar.png");
  2010.                                 $avatar_png_image_width = $avatar_png_image_size[0];
  2011.                                 $avatar_png_image_height = $avatar_png_image_size[1];
  2012.                        
  2013.                                 $max_avatar_png_image_width = 80;
  2014.                        
  2015.                                 if ($avatar_png_image_width > $max_avatar_png_image_width) {  
  2016.                                         $sizefactor = (double) ($max_avatar_png_image_width / $avatar_png_image_width) ;
  2017.                                         $avatar_png_image_width = (int) ($avatar_png_image_width * $sizefactor);
  2018.                                         $avatar_png_image_height = (int) ($avatar_png_image_height * $sizefactor);
  2019.                                 }
  2020.                        
  2021.                                 echo "<img src=images/avatar.png border=0 width=";
  2022.                                 echo $avatar_png_image_width;
  2023.                                 echo " height=";
  2024.                                 echo $avatar_png_image_height;
  2025.                         }
  2026.                 echo "><br>";
  2027.                 }
  2028.                 elseif (file_exists("images/members/$author/avatar.jpg") or file_exists("images/members/$author/avatar.gif") or file_exists("images/members/$author/avatar.png")) {
  2029.                         if (file_exists("images/members/$author/avatar.gif")) {
  2030.                                 $avatar_gif_image_size = getimagesize("images/members/$author/avatar.gif");
  2031.                                 $avatar_gif_image_width = $avatar_gif_image_size[0];
  2032.                                 $avatar_gif_image_height = $avatar_gif_image_size[1];
  2033.  
  2034.                                 $max_avatar_gif_image_width = 80;
  2035.                        
  2036.                                 if ($avatar_gif_image_width > $max_avatar_gif_image_width) {  
  2037.                                         $sizefactor = (double) ($max_avatar_gif_image_width / $avatar_gif_image_width) ;
  2038.                                         $avatar_gif_image_width = (int) ($avatar_gif_image_width * $sizefactor);
  2039.                                         $avatar_gif_image_height = (int) ($avatar_gif_image_height * $sizefactor);
  2040.                                 }
  2041.  
  2042.                                 echo "<img src=images/members/$author/avatar.gif border=0 width=";
  2043.                                 echo $avatar_gif_image_width;
  2044.                                 echo " height=";
  2045.                                 echo $avatar_gif_image_height;
  2046.                         }
  2047.                         if (file_exists("images/members/$author/avatar.jpg")) {
  2048.                                 $avatar_jpg_image_size = getimagesize("images/members/$author/avatar.jpg");
  2049.                                 $avatar_jpg_image_width = $avatar_jpg_image_size[0];
  2050.                                 $avatar_jpg_image_height = $avatar_jpg_image_size[1];
  2051.                        
  2052.                                 $max_avatar_jpg_image_width = 80;
  2053.                        
  2054.                                 if ($avatar_jpg_image_width > $max_avatar_jpg_image_width) {  
  2055.                                         $sizefactor = (double) ($max_avatar_jpg_image_width / $avatar_jpg_image_width) ;
  2056.                                         $avatar_jpg_image_width = (int) ($avatar_jpg_image_width * $sizefactor);
  2057.                                         $avatar_jpg_image_height = (int) ($avatar_jpg_image_height * $sizefactor);
  2058.                                 }
  2059.  
  2060.                                 echo "<img src=images/members/$author/avatar.jpg border=0 width=";
  2061.                                 echo $avatar_jpg_image_width;
  2062.                                 echo " height=";
  2063.                                 echo $avatar_jpg_image_height;
  2064.                         }
  2065.                         if (file_exists("images/members/$author/avatar.png")) {
  2066.                                 $avatar_png_image_size = getimagesize("images/members/$author/avatar.png");
  2067.                                 $avatar_png_image_width = $avatar_png_image_size[0];
  2068.                                 $avatar_png_image_height = $avatar_png_image_size[1];
  2069.                        
  2070.                                 $max_avatar_png_image_width = 80;
  2071.                        
  2072.                                 if ($avatar_png_image_width > $max_avatar_png_image_width) {  
  2073.                                         $sizefactor = (double) ($max_avatar_png_image_width / $avatar_png_image_width) ;
  2074.                                         $avatar_png_image_width = (int) ($avatar_png_image_width * $sizefactor);
  2075.                                         $avatar_png_image_height = (int) ($avatar_png_image_height * $sizefactor);
  2076.                                 }
  2077.                        
  2078.                                 echo "<img src=images/members/$author/avatar.png border=0 width=";
  2079.                                 echo $avatar_png_image_width;
  2080.                                 echo " height=";
  2081.                                 echo $avatar_png_image_height;
  2082.                         }
  2083.                 echo "><br>";
  2084.                 }
  2085.                 echo "$author</a><br>";
  2086.                 if ((file_get_contents("data/username.txt") == $author) and file_exists("data/rank.txt")) {
  2087.                         echo "administrator<br>";
  2088.                 }
  2089.                 elseif (file_exists("data/members/active/$author/rank.txt") and file_exists("data/rank.txt")) {
  2090.                         $rank = file_get_contents("data/members/active/$author/rank.txt");
  2091.                         echo "$rank<br>";
  2092.                 }
  2093.                 elseif (!file_exists("data/members/active/$author/rank.txt") and file_exists("data/rank.txt")) {
  2094.                         echo "member<br>";
  2095.                 }
  2096.  
  2097.                 if ($dh_posts = opendir("data/items")) {
  2098.                         while (($entry_posts = readdir($dh_posts)) !== false) {
  2099.  
  2100.                                 if (file_exists("data/items/$entry_posts/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  2101.                                         continue;
  2102.                                 }
  2103.  
  2104.                                 // hide_member (20070606)
  2105.                                 //if (file_exists("data/items/$entry_posts/member.txt") and (!isset($_SESSION['logged_in']))) {
  2106.                                 //      continue;
  2107.                                 //}
  2108.  
  2109.                                 $post_cat_dir = file_get_contents("data/items/$entry_posts/category.txt");
  2110.  
  2111.                                 if (file_exists("data/categories/$post_cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_posts/cat.txt")) {
  2112.                                         continue;
  2113.                                 }
  2114.  
  2115.                                 if ($entry_posts != "." && $entry_posts != ".." && fnmatch("*", $entry_posts)) {
  2116.                                         if (file_exists("data/members/active/$author") and file_exists("data/bb.txt")) {
  2117.                                                 if (file_exists("data/items/$entry_posts/author.txt") and (file_get_contents("data/items/$entry_posts/author.txt") == $author)) {
  2118.                                                         $items_posts[] = $entry_posts;
  2119.                                                 }
  2120.                                         }
  2121.                                         elseif (!file_exists("data/members/active/$author") and (file_get_contents("data/username.txt") == $author) and file_exists("data/bb.txt")) {
  2122.                                                 if (file_exists("data/items/$entry_posts/author.txt") and (file_get_contents("data/items/$entry_posts/author.txt") == $author)) {
  2123.                                                         $items_posts[] = $entry_posts;
  2124.                                                 }
  2125.                                         }
  2126.                                 }
  2127.                         }
  2128.                 closedir($dh_posts);
  2129.                 }
  2130.                 $posts = count($items_posts);
  2131.                 if ($posts == 1) {
  2132.                         echo "$posts post";
  2133.                 }
  2134.                 if ($posts > 1) {
  2135.                         echo "$posts posts";
  2136.                 }
  2137.                 unset($items_posts);
  2138.  
  2139.                 echo "</p></td><td width=513 valign=top>";
  2140.  
  2141.         }
  2142.         else {
  2143.                 echo "<td width=598 valign=top>";
  2144.         }
  2145.  
  2146.         if (file_exists("$dir/$d/passwd.txt")) {
  2147.                 $passwd = file_get_contents("$dir/$d/passwd.txt");
  2148.         }
  2149.  
  2150.         if (isset($_REQUEST['passwd']) and !empty($_REQUEST['passwd'])) {
  2151.                 $crypt_passwd = sha1($_REQUEST['passwd']);
  2152.                 $crypt_passwd = md5($crypt_passwd);
  2153.                 $crypt_passwd = crypt($crypt_passwd, $crypt_passwd);
  2154.         }
  2155.  
  2156.         echo '<font style="font-size: 10px; color: #999999;">';
  2157.         if ((file_exists("$dir/$d/author.txt") and (file_exists("data/bb.txt") and !file_exists("data/avatar.txt")) or (file_exists("$dir/$d/author.txt") and (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username) and !file_exists("data/avatar.txt"))))) {
  2158.                 $xavatar_author = file_get_contents("$dir/$d/author.txt");
  2159.                 echo "<a href=member.php?id=$xavatar_author>$xavatar_author</a> - ";
  2160.         }
  2161.         readfile("$dir/$d/date.txt");
  2162.         if ((isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) or file_exists("$dir/$d/lastmod.txt")) {
  2163.                 if (file_exists("$dir/$d/revisions.txt")) {
  2164.                         echo ' (Revision ';
  2165.                         readfile("$dir/$d/revisions.txt");
  2166.                         echo " - ";
  2167.                         echo date("l, M j, Y, g:i A", filemtime("$dir/$d/body.txt"));
  2168.                         echo ')';
  2169.                 }
  2170.         }
  2171.         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2172.                 if (file_exists("$dir/$d/category.txt")) {
  2173.                         echo ' Filed under ';
  2174.                         $category_key = file_get_contents("$dir/$d/category.txt");
  2175.                         $category_key = strtolower($category_key);
  2176.                         if (file_exists("data/categories/{$category_key}/title.txt")) {
  2177.                                 $category_dsp = file_get_contents("data/categories/{$category_key}/title.txt");
  2178.                                 echo "$category_key ($category_dsp)";
  2179.                         }
  2180.                         else {
  2181.                                 echo "$category_key";
  2182.                         }
  2183.                 }
  2184.  
  2185.         }
  2186.         echo '</font><font style="font-size: 5px;"><br><br></font>';
  2187.  
  2188.         if (file_exists("$dir/$d/passwd.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and (!isset($_REQUEST['passwd']) or ($crypt_passwd != $passwd))) {
  2189.                 echo "This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$d>here</a> to enter it.";
  2190.         }
  2191.         else {
  2192.                 $entry_body = file_get_contents("$dir/$d/body.txt");
  2193.                 if (file_exists("data/pf.txt") and file_exists("data/pf-badwords.txt") and (!isset($_SESSION['logged_in']) or empty($_SESSION['logged_in']) or (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt"))))) {
  2194.                         $badwords = file_get_contents("data/pf-badwords.txt");
  2195.                         if (file_exists("data/pf-censor.txt")) {
  2196.                                 $censor = file_get_contents("data/pf-censor.txt");
  2197.                         }
  2198.                         else {
  2199.                                 $censor = "[expletive]";
  2200.                         }
  2201.                         $entry_body = preg_replace("/\b($badwords)\b/i",$censor,$entry_body);
  2202.                 }
  2203.                 echo $entry_body;
  2204.         }
  2205.  
  2206.         if ((file_get_contents("data/username.txt") == $author) and file_exists("data/sig.txt") and file_exists("data/bb.txt") and file_exists("data/bb-sig.txt")) {
  2207.                 $sig = file_get_contents("data/sig.txt");
  2208.                 echo "<br><br>--<br>$sig";
  2209.         }
  2210.         elseif (file_exists("data/members/active/$author/sig.txt") and file_exists("data/bb.txt")  and file_exists("data/bb-sig.txt")) {
  2211.                 $sig = file_get_contents("data/members/active/$author/sig.txt");
  2212.                 echo "<br><br>--<br>$sig";
  2213.         }
  2214.  
  2215.         echo '</td></tr></table>';
  2216.  
  2217.         if (file_exists("data/round.txt")) {
  2218.                 echo "<div class=rbspace></div>";
  2219.         }
  2220.  
  2221.         echo '</div><div id=panel_footer>';
  2222.         echo '<font style="font-size: 10px; color: ';
  2223.         if (file_exists("data/colors/pf-font.txt")) {
  2224.                 readfile("data/colors/pf-font.txt");
  2225.         }
  2226.         else {
  2227.                 echo "#999999";
  2228.         }
  2229.         echo ';">';
  2230.  
  2231. if (!file_exists("data/nocomment.txt")) {
  2232.  
  2233.         if (!file_exists("$dir/$d/comments/live")) {
  2234.                 echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '&show=comments>add comment</a>';
  2235.         }
  2236.         else {
  2237.                 if ($dh_comments = opendir("$dir/$d/comments/live")) {
  2238.                         while (($entry_comments = readdir($dh_comments)) !== false) {
  2239.                                 if ($entry_comments != "." && $entry_comments != ".." && fnmatch("*", $entry_comments)) {
  2240.                                         $items_comments[] = $entry_comments;
  2241.                                 }
  2242.                         }
  2243.                 closedir($dh_comments);
  2244.                 }
  2245.                 $comments = count($items_comments);
  2246.                 echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '&show=comments>';
  2247.                 if ($comments == 1) {
  2248.                         echo $comments . ' comment';
  2249.                 }
  2250.                 elseif ($comments < 1) {
  2251.                         echo 'add comment';
  2252.                 }
  2253.                 else {
  2254.                         echo $comments . ' comments';
  2255.                 }
  2256.                 echo '</a>';
  2257.                 unset($items_comments);
  2258.         }
  2259.  
  2260. }
  2261. else {
  2262.         echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '>permalink</a>';
  2263. }
  2264.  
  2265.         if (file_exists("$dir/$d/views.txt")) {
  2266.                 $fp_views_txt = fopen("$dir/$d/views.txt","r");
  2267.                 $views_value = fread($fp_views_txt,filesize("$dir/$d/views.txt"));
  2268.                 fclose($fp_views_txt);
  2269.                 if ($views_value == 1) {
  2270.                         echo ' ( ' . $views_value . ' view ) ';
  2271.                 }
  2272.                 elseif ($views_value > 1) {
  2273.                         echo ' ( ' . $views_value . ' views ) ';
  2274.                 }
  2275.                 else {
  2276.                         echo ' ';
  2277.                 }
  2278.         }
  2279.  
  2280.         if (!file_exists("images/$d/album")) {
  2281.                 echo ' ';
  2282.         }
  2283.         else {
  2284.                 if ($dh_album = opendir("images/$d/album")) {
  2285.                         while (($entry_album = readdir($dh_album)) !== false) {
  2286.                                 if ($entry_album != "." && $entry_album != ".." && fnmatch("*", $entry_album)) {
  2287.                                         $items_album[] = $entry_album;
  2288.                                 }
  2289.                         }
  2290.                 closedir($dh_album);
  2291.                 }
  2292.                 $album = count($items_album);
  2293.                 echo ' | <a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '&show=album>';
  2294.                 if ($album == 1) {
  2295.                         echo $album . ' image';
  2296.                 }
  2297.                 elseif ($album < 1) {
  2298.                         echo 'album';
  2299.                 }
  2300.                 else {
  2301.                         echo $album . ' images';
  2302.                 }
  2303.                 echo '</a>';
  2304.                 unset($items_album);
  2305.         }
  2306.  
  2307.         if (file_exists("images/$d/album") and isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST['show']) and !empty($_REQUEST['show']) and ($_REQUEST['show'] == album)) {
  2308.                 if (!file_exists("$dir/$d/album")) {
  2309.                         mkdir("$dir/$d/album");
  2310.                 }
  2311.                 if ((!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  2312.                         $fp_album_views_txt = fopen("$dir/$d/album/views.txt","r");
  2313.                         $album_views_value = fread($fp_album_views_txt,filesize("$dir/$d/album/views.txt"));
  2314.                         fclose($fp_album_views_txt);
  2315.                         $album_views_value = $album_views_value + 1;
  2316.                         $fp_album_views_txt = fopen("$dir/$d/album/views.txt","w");
  2317.                         fwrite($fp_album_views_txt, $album_views_value);
  2318.                         fclose($fp_album_views_txt);
  2319.                 }
  2320.         }
  2321.  
  2322.         $fp_album_views_txt = fopen("$dir/$d/album/views.txt","r");
  2323.         $album_views_value = fread($fp_album_views_txt,filesize("$dir/$d/album/views.txt"));
  2324.         fclose($fp_album_views_txt);
  2325.         if ($album_views_value == 1) {
  2326.                 echo ' ( ' . $album_views_value . ' view ) ';
  2327.         }
  2328.         elseif ($album_views_value > 1) {
  2329.                 echo ' ( ' . $album_views_value . ' views ) ';
  2330.         }
  2331.         else {
  2332.                 echo ' ';
  2333.         }
  2334.  
  2335.         if (!file_exists("data/items/$d/filedrop/files")) {
  2336.                 echo ' ';
  2337.         }
  2338.         else {
  2339.                 if ($dh_filedrop = opendir("data/items/$d/filedrop/files")) {
  2340.                         while (($dl_file = readdir($dh_filedrop)) !== false) {
  2341.                                 if ($dl_file != "." && $dl_file != ".." && fnmatch("*", $dl_file)) {
  2342.                                         $items_filedrop[] = $dl_file;
  2343.                                 }
  2344.                         }
  2345.                 closedir($dh_filedrop);
  2346.                 }
  2347.                 $filedrop = count($items_filedrop);
  2348.                 echo ' | <a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '&show=filedrop>';
  2349.                 if ($filedrop == 1) {
  2350.                         echo $filedrop . ' file';
  2351.                 }
  2352.                 elseif ($filedrop < 1) {
  2353.                         echo 'filedrop';
  2354.                 }
  2355.                 else {
  2356.                         echo $filedrop . ' files';
  2357.                 }
  2358.                 echo '</a> ';
  2359.                 unset($items_filedrop);
  2360.         }
  2361.  
  2362.         if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST['show']) and !empty($_REQUEST['show']) and ($_REQUEST['show'] == filedrop)) {
  2363.                 if (!file_exists("$dir/$d/filedrop")) {
  2364.                         mkdir("$dir/$d/filedrop");
  2365.                 }
  2366.                 if (file_exists("data/items/$d/filedrop/files") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  2367.                         $fp_filedrop_views_txt = fopen("$dir/$d/filedrop/views.txt","r");
  2368.                         $filedrop_views_value = fread($fp_filedrop_views_txt,filesize("$dir/$d/filedrop/views.txt"));
  2369.                         fclose($fp_filedrop_views_txt);
  2370.                         $filedrop_views_value = $filedrop_views_value + 1;
  2371.                         $fp_filedrop_views_txt = fopen("$dir/$d/filedrop/views.txt","w");
  2372.                         fwrite($fp_filedrop_views_txt, $filedrop_views_value);
  2373.                         fclose($fp_filedrop_views_txt);
  2374.                 }
  2375.         }
  2376.  
  2377.         $fp_filedrop_views_txt = fopen("$dir/$d/filedrop/views.txt","r");
  2378.         $filedrop_views_value = fread($fp_filedrop_views_txt,filesize("$dir/$d/filedrop/views.txt"));
  2379.         fclose($fp_filedrop_views_txt);
  2380.         if ($filedrop_views_value == 1) {
  2381.                 echo ' ( ' . $filedrop_views_value . ' view ) ';
  2382.         }
  2383.         elseif ($filedrop_views_value > 1) {
  2384.                 echo ' ( ' . $filedrop_views_value . ' views ) ';
  2385.         }
  2386.         else {
  2387.                 echo ' ';
  2388.         }
  2389.  
  2390.         if (!file_exists("data/nopdf.txt") and file_exists("$dir/$d/pdf/file")) {
  2391.  
  2392.                 echo "| <a href={$_SERVER['PHP_SELF']}?entry=$d&show=pdf>pdf</a> ";
  2393.  
  2394.                 if (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) {
  2395.                         $pdf_views_value = file_get_contents("$dir/$d/pdf/count/views.txt");
  2396.                         $pdf_views_value = $pdf_views_value + 1;
  2397.                         $fp_pdf_views_txt = fopen("$dir/$d/pdf/count/views.txt","w");
  2398.                         fwrite($fp_pdf_views_txt, $pdf_views_value);
  2399.                         fclose($fp_pdf_views_txt);
  2400.                 }
  2401.  
  2402.                 $pdf_views_value = file_get_contents("$dir/$d/pdf/count/views.txt");
  2403.                 if ($pdf_views_value == 1) {
  2404.                         echo ' ( ' . $pdf_views_value . ' view ) ';
  2405.                 }
  2406.                 elseif ($pdf_views_value > 1) {
  2407.                         echo ' ( ' . $pdf_views_value . ' views ) ';
  2408.                 }
  2409.                 else {
  2410.                         echo ' ';
  2411.                 }
  2412.         }
  2413.  
  2414.         if (!file_exists("data/nocomment.txt")) {
  2415.                 echo '| <a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '>permalink</a></font>';
  2416.         }
  2417.  
  2418.         echo '</div>';
  2419.  
  2420.         if (file_exists("data/round.txt")) {
  2421.                 echo '<b class="rbbottom"><b class="rb4e"></b><b class="rb3e"></b><b class="rb2e"></b><b class="rb1e"></b></b>';
  2422.         }
  2423.  
  2424.         echo '</td></tr></table>';
  2425.  
  2426. // entry panel
  2427.  
  2428. unset($show_per_entry_panel_list);
  2429.  
  2430. if (file_exists("data/panels")) {
  2431.         if ($dh_per_entry_panel_list = opendir("data/panels")) {
  2432.                 while (($entry_per_entry_panel_list = readdir($dh_per_entry_panel_list)) !== false) {
  2433.  
  2434.                         if (file_exists("data/panels/$entry_per_entry_panel_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  2435.                                 continue;
  2436.                         }
  2437.  
  2438.                         if (!file_exists("data/panels/$entry_per_entry_panel_list/entry.txt")) {
  2439.                                 continue;
  2440.                         }
  2441.  
  2442.                         if ($entry_per_entry_panel_list != "." && $entry_per_entry_panel_list != ".." && fnmatch("*", $entry_per_entry_panel_list)) {
  2443.                                 $show_per_entry_panel_list[] = $entry_per_entry_panel_list;
  2444.                         }
  2445.                 }
  2446.                 closedir($dh_per_entry_panel_list);
  2447.         }
  2448.  
  2449.         sort($show_per_entry_panel_list);
  2450.         reset($show_per_entry_panel_list);
  2451.         $count_per_entry_panel_list = count($show_per_entry_panel_list);
  2452.        
  2453.         if ($count_per_entry_panel_list > 0) {
  2454.                 foreach ($show_per_entry_panel_list as $per_entry_panel_list_entry) {
  2455.                         if (!file_exists("data/panels/$per_entry_panel_list_entry/free.txt")) {
  2456.  
  2457.                                 if (file_exists("data/round.txt")) {
  2458.                                         echo '<b class="rbper_entry"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  2459.                                 }
  2460.                                 else {
  2461.                                         echo '<div id=panel_title>';
  2462.                                 }
  2463.  
  2464.                                 readfile("data/panels/$per_entry_panel_list_entry/title.txt");
  2465.  
  2466.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2467.                                         echo "<a href=panels.php#{$per_entry_panel_list_entry}>";
  2468.                                         echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  2469.                                 }
  2470.  
  2471.                                 echo '</div><div id=panel_body>';
  2472.                         }
  2473.  
  2474.                         if (file_exists("data/panels/$per_entry_panel_list_entry/free.txt")) {
  2475.                                 echo '<div id=panel_free>';
  2476.                         }
  2477.  
  2478.                         include("data/panels/$per_entry_panel_list_entry/panel.php");
  2479.                         echo '</div>';
  2480.  
  2481.                         if (file_exists("data/round.txt") and !file_exists("data/panels/$per_entry_panel_list_entry/free.txt")) {
  2482.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  2483.                         }
  2484.                 }
  2485.         }
  2486. }
  2487.  
  2488.  
  2489. // entry panel
  2490.  
  2491.  
  2492.  
  2493.         if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST['show']) and !empty($_REQUEST['show']) and ($_REQUEST['show'] == album) and file_exists("images/$d/album")) {
  2494.                 echo '<table border=0 cellspacing=0 cellpadding=0 width=';
  2495.  
  2496.                 if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  2497.                         echo "610";
  2498.                 }
  2499.                 else {
  2500.                         echo "525";
  2501.                 }
  2502.  
  2503.                 echo '><tr><td>';
  2504.  
  2505.                 if (file_exists("data/round.txt")) {
  2506.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  2507.                 }
  2508.                 else {
  2509.                         echo '<div id=panel_title>';
  2510.                 }
  2511.  
  2512.                 echo 'Album';
  2513.                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2514.                         echo '<a href=del.php?entry=';
  2515.                         echo $d;
  2516.                         echo '&target=album><img src=images/widget.del.png border=0 width=11 height=11 align=right alt="delete album"></a>';
  2517.                 }
  2518.                 echo '</div><div id=panel_body>';
  2519.  
  2520.                 if (file_exists("$dir/$d/passwd.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and (!isset($_REQUEST['passwd']) or ($crypt_passwd != $passwd))) {
  2521.                         echo "This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$d&show=album>here</a> to enter it.";
  2522.                 }
  2523.                 else {
  2524.        
  2525.                         /* thumbnail auto-clean-up (20060409) - This should delete thumbnails of non-existent album images. */
  2526.        
  2527.                         if (file_exists("images/$d/thumbnails")) {
  2528.                                 if ($dh_album = opendir("images/$d/thumbnails")) {
  2529.                                         while (($thumbnail_album = readdir($dh_album)) !== false) {
  2530.                                                 if ($thumbnail_album != "." && $thumbnail_album != ".." && fnmatch("*", $thumbnail_album)) {
  2531.                                                         $current_thumbnail = "images/$d/thumbnails/$thumbnail_album";
  2532.                                                         $parent_image = str_replace("-thumbnail.jpg","",$thumbnail_album);
  2533.                                                         $parent_image = "images/$d/album/$parent_image";
  2534.                                                         if (file_exists($current_thumbnail) and !file_exists($parent_image)) {
  2535.                                                                 unlink($current_thumbnail);
  2536.                                                         }
  2537.                                                 }
  2538.                                         }
  2539.                                 }
  2540.                         }
  2541.  
  2542.                         /* caption auto-clean-up (20070216) This should delete captions of non-existent album images. */
  2543.  
  2544.                         if (file_exists("data/items/$d/album/captions")) {
  2545.                                 if ($dh_album = opendir("data/items/$d/album/captions")) {
  2546.                                         while (($caption_album = readdir($dh_album)) !== false) {
  2547.                                                 if ($caption_album != "." && $caption_album != ".." && fnmatch("*", $caption_album)) {
  2548.                                                         $current_caption = "data/items/$d/album/captions/$caption_album";
  2549.                                                         $parent_image = str_replace(".txt","",$caption_album);
  2550.                                                         $parent_image = "images/$d/album/$parent_image";
  2551.                                                         if (file_exists($current_caption) and !file_exists($parent_image)) {
  2552.                                                                 unlink($current_caption);
  2553.                                                         }
  2554.                                                 }
  2555.                                         }
  2556.                                 }
  2557.                         }
  2558.        
  2559.                         /* auto-sort entries (20060409) - MAJ previously relied on readdir() alone, causing entries to be displayed in the order in which they are stored by the filesystem. */
  2560.        
  2561.                         if (file_exists("images/$d/album")) {
  2562.                                 if ($dh_album = opendir("images/$d/album")) {
  2563.                                         while (($entry_album = readdir($dh_album)) !== false) {
  2564.                                                 if ($entry_album != "." && $entry_album != ".." && fnmatch("*", $entry_album)) {
  2565.                                                         $sort_album[] = $entry_album;
  2566.                                                 }
  2567.                                         }
  2568.                                 closedir($dh_album);
  2569.                                 }
  2570.        
  2571.                                 sort($sort_album);
  2572.                                 reset($sort_album);
  2573.                                 $count_album_entry = count($sort_album);
  2574.                                
  2575.                                 if ($count_album_entry < 1) {
  2576.                                         rmdirr("images/$d/album");
  2577.                                         rmdirr("images/$d/thumbnails");                        
  2578.                                 }
  2579.                                 else {
  2580.                                         foreach($sort_album as $album_entry) {
  2581.                                                 $current_image = "images/$d/album/$album_entry";
  2582.                                                 $current_image_size = getimagesize($current_image);
  2583.                                                 $current_width = $current_image_size[0];
  2584.                                                 $current_height = $current_image_size[1];
  2585.                                                 $max_width = 98;
  2586.                                                 $max_height = 73;
  2587.  
  2588.                                                 if (($current_width > $max_width) || ($current_height > $max_height)) {  
  2589.  
  2590.                                                         if ($current_height > $current_width) {
  2591.                                                                 $sizefactor = (double) ($max_height / $current_height);
  2592.                                                         }
  2593.                                                         else {
  2594.                                                                 $sizefactor = (double) ($max_width / $current_width) ;
  2595.                                                         }
  2596.  
  2597.                                                         $new_width = (int) ($current_width * $sizefactor);
  2598.                                                         $new_height = (int) ($current_height * $sizefactor);
  2599.                                                 }
  2600.                                                 else {
  2601.                                                         $new_width = $current_width;
  2602.                                                         $new_height = $current_height;
  2603.                                                 }
  2604.  
  2605.                                                 /* auto-thumbnails (20060213) - In maj-0.14-20060131, album thumbnails were simply the original images displayed with smaller "width=" and "height=" values. Album index loading was painfully slow since the browser had to download the original images from the server. This should speed things up. We placed the "function" here instead of edit.php or add.php to make auto-thumbnail generation available for maj-0.14-20060131 users who may already have existing albums. */
  2606.        
  2607.                                                 if (!file_exists("images/$d/thumbnails/{$album_entry}-thumbnail.jpg")) {
  2608.        
  2609.                                                         $work_thumb = imagecreatetruecolor($new_width,$new_height);
  2610.                                                         $get_mimetype = image_type_to_mime_type(exif_imagetype($current_image));
  2611.  
  2612.                                                         switch($get_mimetype) {
  2613.                                                                 case "image/jpg":
  2614.                                                                 case "image/jpeg":
  2615.                                                                         $work_image = imagecreatefromjpeg($current_image);
  2616.                                                                         break;
  2617.                                                                 case "image/gif":
  2618.                                                                         $work_image = imagecreatefromgif($current_image);
  2619.                                                                         break;
  2620.                                                                 case "image/png":
  2621.                                                                         $work_image = imagecreatefrompng($current_image);
  2622.                                                                         break;
  2623.                                                         }
  2624.        
  2625.                                                         imagecopyresampled($work_thumb,$work_image,0,0,0,0,$new_width,$new_height,$current_width,$current_height);
  2626.        
  2627.                                                         if (!file_exists("images/$d/thumbnails")) {
  2628.                                                                 mkdir("images/$d/thumbnails");
  2629.                                                         }
  2630.        
  2631.                                                         imagejpeg($work_thumb,"images/$d/thumbnails/{$album_entry}-thumbnail.jpg",80);
  2632.        
  2633.                                                 }
  2634.  
  2635.                                                 echo "<a href=\"album.php?entry=$d&show=$album_entry\">";
  2636.  
  2637.                                                 /* auto-thumbnails (20060519) - Just in case php-gd does not exist, do it the old way. */
  2638.  
  2639.                                                 if (!file_exists("images/$d/thumbnails/{$album_entry}-thumbnail.jpg")) {
  2640.                                                         echo "<img src=\"images/$d/album/$album_entry\" width=$new_width height=$new_height border=0 hspace=2 vspace=2";
  2641.                                                 }
  2642.                                                 else {
  2643.                                                         echo "<img src=\"images/$d/thumbnails/{$album_entry}-thumbnail.jpg\" width=$new_width height=$new_height border=0 hspace=2 vspace=2";
  2644.                                                 }
  2645.  
  2646.                                                 if (file_exists("data/items/$d/album/captions/{$album_entry}.txt")) {
  2647.                                                         echo ' alt="';
  2648.                                                         $img_alt = file_get_contents("data/items/$d/album/captions/{$album_entry}.txt");
  2649.                                                         $img_alt = strip_tags($img_alt);
  2650.                                                         echo $img_alt;
  2651.                                                         echo '"';
  2652.                                                 }
  2653.                                                 echo "></a>";
  2654.                                         }
  2655.                                 }
  2656.                         }
  2657.                 }
  2658.                 echo '</div>';
  2659.  
  2660.                 if (file_exists("data/round.txt")) {
  2661.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  2662.                 }
  2663.  
  2664.                 echo '</td></tr></table>';
  2665.  
  2666.         }
  2667.  
  2668.         if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST['show']) and !empty($_REQUEST['show']) and ($_REQUEST['show'] == filedrop) and file_exists("$dir/$d/filedrop/files")) {
  2669.                 echo '<table border=0 cellspacing=0 cellpadding=0 width=';
  2670.  
  2671.                 if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  2672.                         echo "610";
  2673.                 }
  2674.                 else {
  2675.                         echo "525";
  2676.                 }
  2677.  
  2678.                 echo '><tr><td>';
  2679.  
  2680.                 if (file_exists("data/round.txt")) {
  2681.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  2682.                 }
  2683.                 else {
  2684.                         echo '<div id=panel_title>';
  2685.                 }
  2686.  
  2687.                 echo 'Filedrop';
  2688.                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2689.                         echo '<a href=del.php?entry=';
  2690.                         echo $d;
  2691.                         echo '&target=filedrop><img src=images/widget.del.png border=0 width=11 height=11 align=right alt="delete filedrop"></a>';
  2692.                 }
  2693.                 echo '</div><div id=panel_body>';
  2694.  
  2695.                 if (file_exists("$dir/$d/passwd.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and (!isset($_REQUEST['passwd']) or ($crypt_passwd != $passwd))) {
  2696.                         echo "This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$d&show=filedrop>here</a> to enter it.";
  2697.                 }
  2698.                 else {
  2699.  
  2700.                         if ($dh_filedrop = opendir("data/items/$d/filedrop/files")) {
  2701.                                 while (($dl_file = readdir($dh_filedrop)) !== false) {
  2702.                                         if ($dl_file != "." && $dl_file != ".." && fnmatch("*", $dl_file)) {
  2703.                                                 echo '<table border=0 cellspacing=0 cellpadding=4><tr><td>';
  2704.                                                 echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '&download=' . $dl_file. '&type=filedrop>';
  2705.                                                 echo '<img src=images/filedrop.png width=36 height=36 border=0 alt="download file"></a></td>';
  2706.                                                 echo '<td><p><b>';
  2707.                                                 echo $dl_file;
  2708.                                                 echo'</b>';
  2709.                                                 if (file_exists("data/items/$d/filedrop/sha1.txt")) {
  2710.                                                         $sha1 = sha1_file("data/items/$d/filedrop/files/$dl_file");
  2711.                                                         echo "<br />$sha1 (<a href=http://www.faqs.org/rfcs/rfc3174 target=_maj>sha1</a>)";
  2712.                                                 }
  2713.                                                 if (file_exists("data/items/$d/filedrop/md5.txt")) {
  2714.                                                         $md5 = md5_file("data/items/$d/filedrop/files/$dl_file");
  2715.                                                         echo "<br />$md5 (<a href=http://www.faqs.org/rfcs/rfc1321 target=_maj>md5</a>)";
  2716.                                                 }
  2717.                                                 $size = filesize("data/items/$d/filedrop/files/$dl_file");
  2718.                                                 $size_string = ($size > 512)?(  ($size/1024 > 512)  ?sprintf("%.02f MB",($size/1024)/1024)  :sprintf("%.02f KB",$size/1024))  :sprintf("%d B",$size);
  2719.                                                 echo "<br />$size_string";
  2720.                                                 $filedrop_count_file = "data/items/$d/filedrop/count/$dl_file" . '.txt';
  2721.                                                 if (file_exists($filedrop_count_file)) {
  2722.                                                         $fp_filedrop_count = fopen($filedrop_count_file, "r");
  2723.                                                         $filedrop_count = fread($fp_filedrop_count, filesize($filedrop_count_file));
  2724.                                                         fclose($fp_filedrop_count);
  2725.                                                         echo '<br>';
  2726.                                                         echo $filedrop_count;
  2727.                                                         if ($filedrop_count == 1) {
  2728.                                                                 echo ' download';
  2729.                                                         }
  2730.                                                         if ($filedrop_count > 1) {
  2731.                                                                 echo ' downloads';
  2732.                                                         }
  2733.                                                 }
  2734.                                                 echo '</p></td></tr></table>';
  2735.                                         }
  2736.                                 }
  2737.                         closedir($dh_filedrop);
  2738.                         }
  2739.                 }
  2740.                 echo '</div>';
  2741.  
  2742.                 if (file_exists("data/round.txt")) {
  2743.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  2744.                 }
  2745.  
  2746.                 echo '</td></tr></table>';
  2747.         }
  2748.  
  2749.         if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST['show']) and !empty($_REQUEST['show']) and ($_REQUEST['show'] == pdf) and file_exists("data/items/$d/pdf/file")) {
  2750.                 echo '<table border=0 cellspacing=0 cellpadding=0 width=';
  2751.  
  2752.                 if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  2753.                         echo "610";
  2754.                 }
  2755.                 else {
  2756.                         echo "525";
  2757.                 }
  2758.  
  2759.                 echo '><tr><td>';
  2760.  
  2761.                 if (file_exists("data/round.txt")) {
  2762.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  2763.                 }
  2764.                 else {
  2765.                         echo '<div id=panel_title>';
  2766.                 }
  2767.  
  2768.                 echo 'PDF';
  2769.                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2770.                         echo '<a href=del.php?entry=';
  2771.                         echo $d;
  2772.                         echo '&target=pdf><img src=images/widget.del.png border=0 width=11 height=11 align=right alt="delete pdf"></a>';
  2773.                 }
  2774.                 echo '</div><div id=panel_body>';
  2775.  
  2776.                 if (file_exists("$dir/$d/passwd.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and (!isset($_REQUEST['passwd']) or ($crypt_passwd != $passwd))) {
  2777.                         echo "This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$d&show=pdf>here</a> to enter it.";
  2778.                 }
  2779.                 else {
  2780.  
  2781.                         if ($dh_pdf = opendir("data/items/$d/pdf/file")) {
  2782.                                 while (($dl_file = readdir($dh_pdf)) !== false) {
  2783.                                         if ($dl_file != "." && $dl_file != ".." && fnmatch("*", $dl_file)) {
  2784.                                                 echo '<table border=0 cellspacing=0 cellpadding=4><tr><td>';
  2785.                                                 echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '&download=' . $dl_file. '&type=pdf>';
  2786.                                                 echo '<img src=images/pdf.png width=48 height=48 border=0 alt="download file"></a></td>';
  2787.                                                 echo '<td><p><b>';
  2788.                                                 echo $dl_file;
  2789.                                                 echo'</b><br>';
  2790.                                                 $size = filesize("data/items/$d/pdf/file/$dl_file");
  2791.                                                 $size_string = ($size > 512)?(  ($size/1024 > 512)  ?sprintf("%.02f MB",($size/1024)/1024)  :sprintf("%.02f KB",$size/1024))  :sprintf("%d B",$size);
  2792.                                                 echo $size_string;
  2793.                                                 $pdf_count_file = "data/items/$d/pdf/count/dl.txt";
  2794.                                                 if (file_exists($pdf_count_file)) {
  2795.                                                         $fp_pdf_count = fopen($pdf_count_file, "r");
  2796.                                                         $pdf_count = fread($fp_pdf_count, filesize($pdf_count_file));
  2797.                                                         fclose($fp_pdf_count);
  2798.                                                         echo '<br>';
  2799.                                                         echo $pdf_count;
  2800.                                                         if ($pdf_count == 1) {
  2801.                                                                 echo ' download';
  2802.                                                         }
  2803.                                                         if ($pdf_count > 1) {
  2804.                                                                 echo ' downloads';
  2805.                                                         }
  2806.                                                 }
  2807.                                                 echo '</p></td></tr></table>';
  2808.                                         }
  2809.                                 }
  2810.                         closedir($dh_pdf);
  2811.                         }
  2812.                 }
  2813.                 echo '</div>';
  2814.  
  2815.                 if (file_exists("data/round.txt")) {
  2816.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  2817.                 }
  2818.  
  2819.                 echo '</td></tr></table>';
  2820.         }
  2821.  
  2822.         if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry']) and isset($_REQUEST['show']) and !empty($_REQUEST['show']) and ($_REQUEST['show'] == comments) and !file_exists("data/nocomment.txt")) {
  2823.  
  2824.                 if (file_exists("$dir/$d/passwd.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and (!isset($_REQUEST['passwd']) or ($crypt_passwd != $passwd))) {
  2825.                 }
  2826.                 else {
  2827.                         echo '<table border=0 cellspacing=0 cellpadding=0 width=';
  2828.  
  2829.                         if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  2830.                                 echo "610";
  2831.                         }
  2832.                         else {
  2833.                                 echo "525";
  2834.                         }
  2835.  
  2836.                         echo '><tr><td>';
  2837.                         if ($dh_comments = opendir("$dir/$d/comments/live")) {
  2838.                                 while (($entry_comments = readdir($dh_comments)) !== false) {
  2839.                                         if ($entry_comments != "." && $entry_comments != ".." && fnmatch("*", $entry_comments)) {                                       $show_comments[] = $entry_comments;
  2840.                                         }
  2841.                                 }
  2842.                         closedir($dh_comments);
  2843.                         }
  2844.        
  2845.                         asort($show_comments);
  2846.                         reset($show_comments);
  2847.                         foreach ($show_comments as $comment) {
  2848.  
  2849.                                 if (file_exists("data/round.txt")) {
  2850.                                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  2851.                                 }
  2852.                                 else {
  2853.                                         echo '<div id=panel_title>';
  2854.                                 }
  2855.        
  2856.                                 if (file_exists("$dir/$d/comments/live/$comment/url.txt")) {
  2857.                                         echo '<a target=_maj href=';
  2858.                                         readfile("$dir/$d/comments/live/$comment/url.txt");
  2859.                                         echo '>';
  2860.                                 }
  2861.        
  2862.                                 readfile("$dir/$d/comments/live/$comment/firstname.txt");
  2863.                                 echo ' ';
  2864.                                 readfile("$dir/$d/comments/live/$comment/lastname.txt");
  2865.        
  2866.                                 if (file_exists("$dir/$d/comments/live/$comment/url.txt")) {
  2867.                                         echo '</a>';
  2868.                                 }
  2869.        
  2870.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2871.                                         echo '  &lt;';
  2872.                                         readfile("$dir/$d/comments/live/$comment/email.txt");
  2873.                                         echo '&gt;';
  2874.                                 }
  2875.        
  2876.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2877.                                         echo '<a href=del.php?entry=' . $d . '&comment=' . $comment . '&type=live><img src=images/widget.del.png width=11 height=11 border=0 align=right alt="delete comment"></a>';
  2878.                                         echo '<a href=move.php?entry=' . $d . '&comment=' . $comment . '&type=live><img src=images/widget.move.png width=11 height=11 border=0 align=right alt="move comment"></a>';
  2879.                                         echo '<a href=edit.php?entry=' . $d . '&comment=' . $comment . '&type=live><img src=images/widget.edit.png width=11 height=11 border=0 align=right alt="edit comment"></a>';
  2880.                                 }
  2881.                                 echo '</div><div id=panel_body><table border=0 cellspacing=0 cellpadding=0><tr>';
  2882.                                
  2883.                                 if (file_exists("data/bb.txt") and file_exists("data/avatar.txt") and file_exists("$dir/$d/comments/live/$comment/author.txt")) {
  2884.                                         echo "<td width=85 valign=top><p>";
  2885.                                         $c_author = file_get_contents("$dir/$d/comments/live/$comment/author.txt");
  2886.                                         echo "<a href=member.php?id=$c_author>";
  2887.                                         if ((file_get_contents("data/username.txt") == $c_author) and (file_exists("images/avatar.jpg") or file_exists("images/avatar.gif") or file_exists("images/avatar.png"))) {
  2888.                                                 if (file_exists("images/avatar.gif")) {
  2889.                                                         $c_avatar_gif_image_size = getimagesize("images/avatar.gif");
  2890.                                                         $c_avatar_gif_image_width = $c_avatar_gif_image_size[0];
  2891.                                                         $c_avatar_gif_image_height = $c_avatar_gif_image_size[1];
  2892.                        
  2893.                                                         $c_max_avatar_gif_image_width = 80;
  2894.                                                
  2895.                                                         if ($c_avatar_gif_image_width > $c_max_avatar_gif_image_width) {  
  2896.                                                                 $sizefactor = (double) ($c_max_avatar_gif_image_width / $c_avatar_gif_image_width) ;
  2897.                                                                 $c_avatar_gif_image_width = (int) ($c_avatar_gif_image_width * $sizefactor);
  2898.                                                                 $c_avatar_gif_image_height = (int) ($c_avatar_gif_image_height * $sizefactor);
  2899.                                                         }
  2900.                        
  2901.                                                         echo "<img src=images/avatar.gif border=0 width=";
  2902.                                                         echo $c_avatar_gif_image_width;
  2903.                                                         echo " height=";
  2904.                                                         echo $c_avatar_gif_image_height;
  2905.                                                 }
  2906.                                                 if (file_exists("images/avatar.jpg")) {
  2907.                                                         $c_avatar_jpg_image_size = getimagesize("images/avatar.jpg");
  2908.                                                         $c_avatar_jpg_image_width = $c_avatar_jpg_image_size[0];
  2909.                                                         $c_avatar_jpg_image_height = $c_avatar_jpg_image_size[1];
  2910.                                                
  2911.                                                         $c_max_avatar_jpg_image_width = 80;
  2912.                                                
  2913.                                                         if ($c_avatar_jpg_image_width > $c_max_avatar_jpg_image_width) {  
  2914.                                                                 $sizefactor = (double) ($c_max_avatar_jpg_image_width / $c_avatar_jpg_image_width) ;
  2915.                                                                 $c_avatar_jpg_image_width = (int) ($c_avatar_jpg_image_width * $sizefactor);
  2916.                                                                 $c_avatar_jpg_image_height = (int) ($c_avatar_jpg_image_height * $sizefactor);
  2917.                                                         }
  2918.                        
  2919.                                                         echo "<img src=images/avatar.jpg border=0 width=";
  2920.                                                         echo $c_avatar_jpg_image_width;
  2921.                                                         echo " height=";
  2922.                                                         echo $c_avatar_jpg_image_height;
  2923.                                                 }
  2924.                                                 if (file_exists("images/avatar.png")) {
  2925.                                                         $c_avatar_png_image_size = getimagesize("images/avatar.png");
  2926.                                                         $c_avatar_png_image_width = $c_avatar_png_image_size[0];
  2927.                                                         $c_avatar_png_image_height = $c_avatar_png_image_size[1];
  2928.                                                
  2929.                                                         $c_max_avatar_png_image_width = 80;
  2930.                                                
  2931.                                                         if ($c_avatar_png_image_width > $c_max_avatar_png_image_width) {  
  2932.                                                                 $sizefactor = (double) ($c_max_avatar_png_image_width / $c_avatar_png_image_width) ;
  2933.                                                                 $c_avatar_png_image_width = (int) ($c_avatar_png_image_width * $sizefactor);
  2934.                                                                 $c_avatar_png_image_height = (int) ($c_avatar_png_image_height * $sizefactor);
  2935.                                                         }
  2936.                                                
  2937.                                                         echo "<img src=images/avatar.png border=0 width=";
  2938.                                                         echo $c_avatar_png_image_width;
  2939.                                                         echo " height=";
  2940.                                                         echo $c_avatar_png_image_height;
  2941.                                                 }
  2942.                                         echo "><br>";
  2943.                                         }
  2944.                                         elseif (file_exists("images/members/$c_author/avatar.jpg") or file_exists("images/members/$c_author/avatar.gif") or file_exists("images/members/$c_author/avatar.png")) {
  2945.                                                 if (file_exists("images/members/$c_author/avatar.gif")) {
  2946.                                                         $c_avatar_gif_image_size = getimagesize("images/members/$c_author/avatar.gif");
  2947.                                                         $c_avatar_gif_image_width = $c_avatar_gif_image_size[0];
  2948.                                                         $c_avatar_gif_image_height = $c_avatar_gif_image_size[1];
  2949.                        
  2950.                                                         $c_max_avatar_gif_image_width = 80;
  2951.                                                
  2952.                                                         if ($c_avatar_gif_image_width > $c_max_avatar_gif_image_width) {  
  2953.                                                                 $sizefactor = (double) ($c_max_avatar_gif_image_width / $c_avatar_gif_image_width) ;
  2954.                                                                 $c_avatar_gif_image_width = (int) ($c_avatar_gif_image_width * $sizefactor);
  2955.                                                                 $c_avatar_gif_image_height = (int) ($c_avatar_gif_image_height * $sizefactor);
  2956.                                                         }
  2957.                        
  2958.                                                         echo "<img src=images/members/$c_author/avatar.gif border=0 width=";
  2959.                                                         echo $c_avatar_gif_image_width;
  2960.                                                         echo " height=";
  2961.                                                         echo $c_avatar_gif_image_height;
  2962.                                                 }
  2963.                                                 if (file_exists("images/members/$c_author/avatar.jpg")) {
  2964.                                                         $c_avatar_jpg_image_size = getimagesize("images/members/$c_author/avatar.jpg");
  2965.                                                         $c_avatar_jpg_image_width = $c_avatar_jpg_image_size[0];
  2966.                                                         $c_avatar_jpg_image_height = $c_avatar_jpg_image_size[1];
  2967.                                                
  2968.                                                         $c_max_avatar_jpg_image_width = 80;
  2969.                                                
  2970.                                                         if ($c_avatar_jpg_image_width > $c_max_avatar_jpg_image_width) {  
  2971.                                                                 $sizefactor = (double) ($c_max_avatar_jpg_image_width / $c_avatar_jpg_image_width) ;
  2972.                                                                 $c_avatar_jpg_image_width = (int) ($c_avatar_jpg_image_width * $sizefactor);
  2973.                                                                 $c_avatar_jpg_image_height = (int) ($c_avatar_jpg_image_height * $sizefactor);
  2974.                                                         }
  2975.                        
  2976.                                                         echo "<img src=images/members/$c_author/avatar.jpg border=0 width=";
  2977.                                                         echo $c_avatar_jpg_image_width;
  2978.                                                         echo " height=";
  2979.                                                         echo $c_avatar_jpg_image_height;
  2980.                                                 }
  2981.                                                 if (file_exists("images/members/$c_author/avatar.png")) {
  2982.                                                         $c_avatar_png_image_size = getimagesize("images/members/$c_author/avatar.png");
  2983.                                                         $c_avatar_png_image_width = $c_avatar_png_image_size[0];
  2984.                                                         $c_avatar_png_image_height = $c_avatar_png_image_size[1];
  2985.                                                
  2986.                                                         $c_max_avatar_png_image_width = 80;
  2987.                                                
  2988.                                                         if ($c_avatar_png_image_width > $c_max_avatar_png_image_width) {  
  2989.                                                                 $sizefactor = (double) ($c_max_avatar_png_image_width / $c_avatar_png_image_width) ;
  2990.                                                                 $c_avatar_png_image_width = (int) ($c_avatar_png_image_width * $sizefactor);
  2991.                                                                 $c_avatar_png_image_height = (int) ($c_avatar_png_image_height * $sizefactor);
  2992.                                                         }
  2993.                                                
  2994.                                                         echo "<img src=images/members/$c_author/avatar.png border=0 width=";
  2995.                                                         echo $c_avatar_png_image_width;
  2996.                                                         echo " height=";
  2997.                                                         echo $c_avatar_png_image_height;
  2998.                                                 }
  2999.                                         echo "><br>";
  3000.                                         }
  3001.                                         echo "$c_author</a><br>";
  3002.                                         if ((file_get_contents("data/username.txt") == $c_author) and file_exists("data/rank.txt")) {
  3003.                                                 echo "administrator<br>";
  3004.                                         }
  3005.                                         elseif (file_exists("data/members/active/$c_author/rank.txt") and file_exists("data/rank.txt")) {
  3006.                                                 $c_rank = file_get_contents("data/members/active/$c_author/rank.txt");
  3007.                                                 echo "$c_rank<br>";
  3008.                                         }
  3009.                                         elseif (!file_exists("data/members/active/$c_author/rank.txt") and file_exists("data/rank.txt")) {
  3010.                                                 echo "member<br>";
  3011.                                         }
  3012.                        
  3013.                                         if ($c_dh_posts = opendir("data/items")) {
  3014.                                                 while (($c_entry_posts = readdir($c_dh_posts)) !== false) {
  3015.                        
  3016.                                                         if (file_exists("data/items/$c_entry_posts/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  3017.                                                                 continue;
  3018.                                                         }
  3019.                        
  3020.                                                         if (file_exists("data/items/$c_entry_posts/member.txt") and (!isset($_SESSION['logged_in']))) {
  3021.                                                                 continue;
  3022.                                                         }
  3023.                        
  3024.                                                         $c_post_cat_dir = file_get_contents("data/items/$c_entry_posts/category.txt");
  3025.                        
  3026.                                                         if (file_exists("data/categories/$c_post_cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$c_entry_posts/cat.txt")) {
  3027.                                                                 continue;
  3028.                                                         }
  3029.                        
  3030.                                                         if ($c_entry_posts != "." && $c_entry_posts != ".." && fnmatch("*", $c_entry_posts)) {
  3031.                                                                 if (file_exists("data/members/active/$c_author") and file_exists("data/bb.txt")) {
  3032.                                                                         if (file_exists("data/items/$c_entry_posts/author.txt") and (file_get_contents("data/items/$c_entry_posts/author.txt") == $c_author)) {
  3033.                                                                                 $c_items_posts[] = $c_entry_posts;
  3034.                                                                         }
  3035.                                                                 }
  3036.                                                                 elseif (!file_exists("data/members/active/$c_author") and (file_get_contents("data/username.txt") == $c_author) and file_exists("data/bb.txt")) {
  3037.                                                                         if (file_exists("data/items/$c_entry_posts/author.txt") and (file_get_contents("data/items/$c_entry_posts/author.txt") == $c_author)) {
  3038.                                                                                 $c_items_posts[] = $c_entry_posts;
  3039.                                                                         }
  3040.                                                                 }
  3041.                                                         }
  3042.                                                 }
  3043.                                         closedir($c_dh_posts);
  3044.                                         }
  3045.                                         $c_posts = count($c_items_posts);
  3046.                                         if ($c_posts == 1) {
  3047.                                                 echo "$c_posts post";
  3048.                                         }
  3049.                                         if ($c_posts > 1) {
  3050.                                                 echo "$c_posts posts";
  3051.                                         }
  3052.                                         unset($c_items_posts);
  3053.                        
  3054.                                         echo "</p></td><td width=513 valign=top>";
  3055.                                 }
  3056.                                 else {
  3057.                                         echo "<td width=598 valign=top>";
  3058.                                 }
  3059.  
  3060.                                 echo '<p><font style="font-size: 10px; color: #999999;">';
  3061.                                 if ((file_exists("$dir/$d/comments/live/$comment/author.txt") and (file_exists("data/bb.txt") and !file_exists("data/avatar.txt")) or (file_exists("$dir/$d/comments/live/$comment/author.txt") and (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username) and !file_exists("data/avatar.txt"))))) {
  3062.                                         $cxavatar_author = file_get_contents("$dir/$d/comments/live/$comment/author.txt");
  3063.                                         echo "<a href=member.php?id=$cxavatar_author>$cxavatar_author</a> - ";
  3064.                                 }
  3065.                                 readfile("$dir/$d/comments/live/$comment/timestamp.txt");
  3066.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  3067.                                         if (file_exists("$dir/$d/comments/live/$comment/revisions.txt")) {
  3068.                                                 echo '  (Revision ';
  3069.                                                 readfile("$dir/$d/comments/live/$comment/revisions.txt");
  3070.                                                 echo ')';
  3071.                                         }
  3072.                                 }
  3073.                                 echo '</font><font style="font-size: 5px;"><br><br></font>';
  3074.                                 $entry_comment = file_get_contents("$dir/$d/comments/live/$comment/comment.txt");
  3075.                                 if (file_exists("data/pf.txt") and file_exists("data/pf-badwords.txt") and (!isset($_SESSION['logged_in']) or empty($_SESSION['logged_in']) or (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt"))))) {
  3076.                                         $badwords = file_get_contents("data/pf-badwords.txt");
  3077.                                         if (file_exists("data/pf-censor.txt")) {
  3078.                                                 $censor = file_get_contents("data/pf-censor.txt");
  3079.                                         }
  3080.                                         else {
  3081.                                                 $censor = "[expletive]";
  3082.                                         }
  3083.                                         $entry_comment = preg_replace("/\b($badwords)\b/i",$censor,$entry_comment);
  3084.                                 }
  3085.                                 echo $entry_comment;
  3086.                                 echo '</p></tr></table></div>';
  3087.  
  3088.                                 if (file_exists("data/round.txt")) {
  3089.                                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3090.                                 }
  3091.                         }
  3092.                         unset($show_comments);
  3093.                         echo '</td></tr></table>';
  3094.                 }
  3095.  
  3096. if (!file_exists("data/nocomment.txt")) {
  3097.  
  3098.                 echo '<p><table border=0 cellspacing=0 cellpadding=0 width=';
  3099.  
  3100.                 if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  3101.                         echo "610";
  3102.                 }
  3103.                 else {
  3104.                         echo "525";
  3105.                 }
  3106.  
  3107.                 echo '><tr><td>';
  3108.                 echo '<p><font style="font-size: 12px;"><b>Add Comment</b></font></p>';
  3109.  
  3110.                 if (file_exists("$dir/$d/passwd.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and (!isset($_REQUEST['passwd']) or ($crypt_passwd != $passwd))) {
  3111.                         echo "<p>This entry is password protected. If you know the magic word, click <a href=passwd.php?entry=$d&show=comments>here</a> to enter it.</p>";
  3112.                 }
  3113.                 else {
  3114.        
  3115.                         $captcha_rand = str_rand(7);
  3116.        
  3117.                         echo "<p>Fill out the form below";
  3118.  
  3119.                         if (!isset($_SESSION['logged_in']) or (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt")))) {
  3120.                                 echo " and enter <b>$captcha_rand</b> in the anti-spam field";
  3121.                         }
  3122.  
  3123.                         echo " to add your comment.";
  3124.  
  3125.                         if (!isset($_SESSION['logged_in']) or (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt")))) {
  3126.                                 echo " Note that it will not be posted immediately, but will be ";
  3127.                        
  3128.                                 if (file_exists("data/email.txt")) {
  3129.                                         echo "e-mailed";
  3130.                                 }
  3131.                                 else {
  3132.                                         echo "sent";
  3133.                                 }
  3134.        
  3135.                                 echo " to me first.";
  3136.  
  3137.                                 if (!isset($_SESSION['logged_in']) or (isset($_SESSION['logged_in']) and !file_exists("data/members/active/{$_SESSION['logged_in']}"))) {
  3138.                                         echo " Comments with bogus contact information will be discarded.";
  3139.                                 }
  3140.                         }
  3141.                         echo "</p>";
  3142.  
  3143.                         ?>
  3144.                        
  3145.                         <table border=0 cellspacing=2 cellpadding=0 width=500>
  3146.                         <form enctype="multipart/form-data" action="<?php echo $_SERVER['PHP_SELF']; ?>?entry=<?php echo $d; ?>&show=comments" method="post">
  3147.                         <input type=hidden name=captcha_get value="<?php echo $captcha_rand; ?>">
  3148.                         <tr>
  3149.  
  3150. <?php
  3151. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == file_get_contents("data/username.txt"))) {
  3152. ?>
  3153.         <td width=75><p></p></td><td><input type=hidden name=cauthor value="<?php echo $_SESSION['logged_in']; ?>"><input type=hidden name=firstname value="<?php $logged_in_author = explode(" ", file_get_contents("data/author.txt")); echo trim(str_replace(",","",$logged_in_author[0])); ?>"></p></td>
  3154. <?php
  3155. }
  3156. elseif (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt")) and file_exists("data/members/active/{$_SESSION['logged_in']}") and file_exists("data/bb.txt")) {
  3157. ?>
  3158.         <td width=75><p></p></td><td><input type=hidden name=cauthor value="<?php echo $_SESSION['logged_in']; ?>"><input type=hidden name=firstname value="<?php echo file_get_contents("data/members/active/{$_SESSION['logged_in']}/firstname.txt"); ?>"></p></td>
  3159. <?php
  3160. }
  3161. else {
  3162.  
  3163. ?>
  3164.  
  3165. <td width=75><p>First Name*</p></td><td width=300><input class=input type=text autocomplete=off name=firstname maxlength=30></td>
  3166.  
  3167. <?php
  3168.  
  3169. }
  3170.  
  3171. ?>
  3172.                         <td rowspan=7 valign=top width=75 align=right>
  3173.                         <table border=0 cellspacing=1 cellpadding=2>
  3174.                         <tr><td><img src=images/smileys/crying.png border=0></td><td><p>:((</p></td><td ><p>crying</p></td></tr>
  3175.                         <tr><td><img src=images/smileys/frown.png border=0></td><td><p>:(</p></td><td><p>frown</p></td></tr>
  3176.                         <tr><td><img src=images/smileys/indifferent.png border=0></td><td><p>:|</p></td><td><p>indifferent</p></td></tr>
  3177.                         <tr><td><img src=images/smileys/laughing.png border=0></td><td><p>:D</p></td><td><p>laughing</p></td></tr>
  3178.                         <tr><td><img src=images/smileys/lick.png border=0></td><td><p>:P</p></td><td><p>lick</p></td></tr>
  3179.                         <tr><td><img src=images/smileys/ohno.png border=0></td><td><p>:O</p></td><td><p>oh no!</p></td></tr>
  3180.                         <tr><td><img src=images/smileys/smile.png border=0></td><td><p>:)</p></td><td><p>smile</p></td></tr>
  3181.                         <tr><td><img src=images/smileys/surprised.png border=0></td><td><p>=)</p></td><td><p>surprised</p></td></tr>
  3182.                         <tr><td><img src=images/smileys/undecided.png border=0></td><td><p>:\</p></td><td><p>undecided</p></td></tr>
  3183.                         <tr><td><img src=images/smileys/wink.png border=0></td><td><p>;)</p></td><td><p>wink</p></td></tr>
  3184.                         </td></tr>
  3185.                         </table>
  3186.  
  3187. <?php
  3188. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == file_get_contents("data/username.txt"))) {
  3189. ?>
  3190.         <td width=75><p></p></td><td><input type=hidden name=lastname value="<?php echo trim(str_replace(",","",$logged_in_author[1])); ?>"></p></td>
  3191. <?php
  3192. }
  3193. elseif (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt")) and file_exists("data/members/active/{$_SESSION['logged_in']}") and file_exists("data/bb.txt")) {
  3194. ?>
  3195.         <td width=75><p></p></td><td><input type=hidden name=lastname value="<?php echo file_get_contents("data/members/active/{$_SESSION['logged_in']}/lastname.txt"); ?>"></p></td>
  3196. <?php
  3197. }
  3198. else {
  3199.  
  3200. ?>
  3201.  
  3202.                         <tr><td><p>Last Name*</p></td><td><input class=input type=text autocomplete=off name=lastname maxlength=30></td></tr>
  3203.  
  3204. <?php
  3205.  
  3206. }
  3207.  
  3208. ?>
  3209.  
  3210. <?php
  3211. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == file_get_contents("data/username.txt"))) {
  3212.         if (file_exists("data/email.txt")) {
  3213. ?>
  3214.                 <td width=75><p></p></td><td colspan=2><input type=hidden name=email value="<?php echo file_get_contents("data/email.txt"); ?>"></p></td>
  3215. <?php
  3216.         }
  3217.         else {
  3218.                 echo "<tr><td><p>E-mail*</p></td><td colspan=2><input class=input type=text autocomplete=off name=email maxlength=60></td></tr>";
  3219.         }
  3220. }
  3221. elseif (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt")) and file_exists("data/members/active/{$_SESSION['logged_in']}") and file_exists("data/bb.txt")) {
  3222. ?>
  3223.         <td width=75><p></p></td><td colspan=2><input type=hidden name=email value="<?php echo file_get_contents("data/members/active/{$_SESSION['logged_in']}/email.txt"); ?>"></p></td>
  3224. <?php
  3225. }
  3226. else {
  3227.  
  3228. ?>
  3229.  
  3230.                         <tr><td><p>E-mail*</p></td><td colspan=2><input class=input type=text autocomplete=off name=email maxlength=60></td></tr>
  3231.  
  3232. <?php
  3233.  
  3234. }
  3235.  
  3236. ?>
  3237.  
  3238. <?php
  3239. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == file_get_contents("data/username.txt"))) {
  3240. ?>
  3241.         <td width=75><p></p></td><td colspan=2><input type=hidden name=url value="<?php file_get_contents("data/url.txt"); ?>"></p></td>
  3242. <?php
  3243. }
  3244. elseif (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt")) and file_exists("data/members/active/{$_SESSION['logged_in']}") and file_exists("data/bb.txt")) {
  3245. ?>
  3246.         <td width=75><p></p></td><td colspan=2><input type=hidden name=url value="<?php if (file_exists("data/members/active/{$_SESSION['logged_in']}/url.txt")) { echo file_get_contents("data/members/active/{$_SESSION['logged_in']}/url.txt"); } ?>"></p></td>
  3247. <?php
  3248. }
  3249. else {
  3250.  
  3251. ?>
  3252.  
  3253.                         <tr><td><p>Website</p></td><td colspan=2><input class=input type=text autocomplete=off name=url maxlength=300></td></tr>
  3254.  
  3255. <?php
  3256.  
  3257. }
  3258.  
  3259. ?>
  3260.  
  3261.                         <tr><td><p>Comment*</p></td><td><textarea class=input name=new_comment rows=15></textarea></td></tr>
  3262.                         <?php
  3263.                         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == file_get_contents("data/username.txt"))) {
  3264.                                 echo "<input type=hidden name=captcha_put value=\"$captcha_rand\">";
  3265.                         }
  3266.                         else {
  3267.                                 echo "<tr><td><p>Anti-Spam*</p></td><td><input class=input type=text autocomplete=off name=captcha_put maxlength=7></td></tr>";
  3268.                         }
  3269.                         ?>
  3270.  
  3271.                         <tr><td><p></p></td><td><input class=input type=submit value="click here to submit your comment"></td></tr>
  3272.                         </form>
  3273.                         </table>
  3274.                 <?php } ?>
  3275.                 </td></tr></table></p>
  3276.  
  3277. <?php
  3278. }
  3279.  
  3280. if (!isset($_SESSION['logged_in']) or (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] != file_get_contents("data/username.txt") and file_exists("data/members/active/{$_SESSION['logged_in']}")))) {
  3281.         if (isset($_REQUEST['show']) and !empty($_REQUEST['show']) and isset($_POST['captcha_put']) and !empty($_REQUEST['captcha_get']) and isset($_POST['firstname']) and !empty($_POST['firstname']) and isset($_POST['lastname']) and !empty($_POST['lastname']) and isset($_POST['email']) and !empty($_POST['email']) and isset($_POST['new_comment']) and !empty($_POST['new_comment']) and isset($_POST['captcha_put']) and !empty($_POST['captcha_put']) and ($_REQUEST['captcha_get'] == $_POST['captcha_put']) and (ereg("@", $_POST['email'])) and (ereg("\.", $_POST['email']))) {
  3282.                 echo '<p><table border=0 cellspacing=0 cellpadding=0><tr><td><p><font style="font-size: 12px;"><b>Thanks!</b></font></p><p>Your comment has been submitted for approval.<br>Please check back soon to see if it has been posted.</p></td></tr></table></p>';
  3283.         }
  3284. }
  3285.  ?>
  3286.        
  3287.  
  3288.  
  3289.                 <?php
  3290.         }
  3291. }
  3292. ?>
  3293.  
  3294. <?php
  3295. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username) and isset($_REQUEST['entry']) and !empty($_REQUEST['entry'])) {
  3296.         if ($dh_pending_comments = opendir("$dir/$d/comments/pending")) {
  3297.                 while (($entry_pending_comments = readdir($dh_pending_comments)) !== false) {
  3298.                         if ($entry_pending_comments != "." && $entry_pending_comments != ".." && fnmatch("*", $entry_pending_comments)) {
  3299.                                 $show_pending_comments[] = $entry_pending_comments;
  3300.                         }
  3301.                 }
  3302.                 closedir($dh_pending_comments);
  3303.         }
  3304.  
  3305.         asort($show_pending_comments);
  3306.         reset($show_pending_comments);
  3307.         $count_pending_comments = count($show_pending_comments);
  3308.  
  3309.         if ($count_pending_comments > 0) {
  3310.                 if ($count_pending_comments == 1) {
  3311.                         echo '<p><b>Pending Comment</b></p>';
  3312.                 }
  3313.                 else {
  3314.                         echo '<p><b>Pending Comments</b></p>';
  3315.                 }
  3316.                 foreach ($show_pending_comments as $pending_comment) {
  3317.                         echo '<p><table border=0 cellspacing=0 cellpadding=0 width=';
  3318.        
  3319.                         if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  3320.                                 echo "610";
  3321.                         }
  3322.                         else {
  3323.                                 echo "525";
  3324.                         }
  3325.  
  3326.                         echo '><tr><td>';
  3327.  
  3328.                         if (file_exists("data/round.txt")) {
  3329.                                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3330.                         }
  3331.                         else {
  3332.                                 echo '<div id=panel_title>';
  3333.                         }
  3334.  
  3335.                         if (file_exists("$dir/$d/comments/pending/$pending_comment/url.txt")) {
  3336.                                 echo '<a target=_maj href=';
  3337.                                 readfile("$dir/$d/comments/pending/$pending_comment/url.txt");
  3338.                                 echo '>';
  3339.                         }
  3340.        
  3341.                         readfile("$dir/$d/comments/pending/$pending_comment/firstname.txt");
  3342.                         echo ' ';
  3343.                         readfile("$dir/$d/comments/pending/$pending_comment/lastname.txt");
  3344.        
  3345.                         if (file_exists("$dir/$d/comments/pending/$pending_comment/url.txt")) {
  3346.                                 echo '</a>';
  3347.                         }
  3348.        
  3349.                         echo ' &lt;';
  3350.                         readfile("$dir/$d/comments/pending/$pending_comment/email.txt");
  3351.                         echo '&gt;';
  3352.  
  3353.                         echo '<a href=del.php?entry=' . $d . '&comment=' . $pending_comment . '&type=pending><img src=images/widget.del.png width=11 height=11 border=0 align=right alt="delete comment"></a>';
  3354.  
  3355.                         $pending_comment_key_file = "$dir/$d/comments/pending/$pending_comment/key.txt";
  3356.                         $open_pending_comment_key_file = fopen($pending_comment_key_file,"r");
  3357.                         $pending_comment_login_key = fread($open_pending_comment_key_file,filesize($pending_comment_key_file));
  3358.                         fclose($open_pending_comment_key_file);
  3359.  
  3360.                         echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $d . '&comment=' . $pending_comment . '&key=' . $pending_comment_login_key . '&action=approve><img src=images/widget.cat.png width=11 height=11 border=0 align=right alt="post comment"></a>';
  3361.  
  3362.                         echo '<a href=move.php?entry=' . $d . '&comment=' . $pending_comment . '&type=pending><img src=images/widget.move.png width=11 height=11 border=0 align=right alt="move comment"></a>';
  3363.  
  3364.                         echo '<a href=edit.php?entry=' . $d . '&comment=' . $pending_comment . '&type=pending><img src=images/widget.edit.png width=11 height=11 border=0 align=right alt="edit comment"></a>';
  3365.  
  3366.                         echo '</div><div id=panel_body><table border=0 cellspacing=0 cellpadding=0><tr>';
  3367.  
  3368.                         if (file_exists("data/bb.txt") and file_exists("data/avatar.txt") and file_exists("$dir/$d/comments/pending/$pending_comment/author.txt")) {
  3369.                                 echo "<td width=85 valign=top><p>";
  3370.                                 $pc_author = file_get_contents("$dir/$d/comments/pending/$pending_comment/author.txt");
  3371.                                 echo "<a href=member.php?id=$pc_author>";
  3372.                                 if ((file_get_contents("data/username.txt") == $pc_author) and (file_exists("images/avatar.jpg") or file_exists("images/avatar.gif") or file_exists("images/avatar.png"))) {
  3373.                                         if (file_exists("images/avatar.gif")) {
  3374.                                                 $pc_avatar_gif_image_size = getimagesize("images/avatar.gif");
  3375.                                                 $pc_avatar_gif_image_width = $pc_avatar_gif_image_size[0];
  3376.                                                 $pc_avatar_gif_image_height = $pc_avatar_gif_image_size[1];
  3377.                
  3378.                                                 $pc_max_avatar_gif_image_width = 80;
  3379.                                        
  3380.                                                 if ($pc_avatar_gif_image_width > $pc_max_avatar_gif_image_width) {  
  3381.                                                         $sizefactor = (double) ($pc_max_avatar_gif_image_width / $pc_avatar_gif_image_width) ;
  3382.                                                         $pc_avatar_gif_image_width = (int) ($pc_avatar_gif_image_width * $sizefactor);
  3383.                                                         $pc_avatar_gif_image_height = (int) ($pc_avatar_gif_image_height * $sizefactor);
  3384.                                                 }
  3385.                
  3386.                                                 echo "<img src=images/avatar.gif border=0 width=";
  3387.                                                 echo $pc_avatar_gif_image_width;
  3388.                                                 echo " height=";
  3389.                                                 echo $pc_avatar_gif_image_height;
  3390.                                         }
  3391.                                         if (file_exists("images/avatar.jpg")) {
  3392.                                                 $pc_avatar_jpg_image_size = getimagesize("images/avatar.jpg");
  3393.                                                 $pc_avatar_jpg_image_width = $pc_avatar_jpg_image_size[0];
  3394.                                                 $pc_avatar_jpg_image_height = $pc_avatar_jpg_image_size[1];
  3395.                                        
  3396.                                                 $pc_max_avatar_jpg_image_width = 80;
  3397.                                        
  3398.                                                 if ($pc_avatar_jpg_image_width > $pc_max_avatar_jpg_image_width) {  
  3399.                                                         $sizefactor = (double) ($pc_max_avatar_jpg_image_width / $pc_avatar_jpg_image_width) ;
  3400.                                                         $pc_avatar_jpg_image_width = (int) ($pc_avatar_jpg_image_width * $sizefactor);
  3401.                                                         $pc_avatar_jpg_image_height = (int) ($pc_avatar_jpg_image_height * $sizefactor);
  3402.                                                 }
  3403.                
  3404.                                                 echo "<img src=images/avatar.jpg border=0 width=";
  3405.                                                 echo $pc_avatar_jpg_image_width;
  3406.                                                 echo " height=";
  3407.                                                 echo $pc_avatar_jpg_image_height;
  3408.                                         }
  3409.                                         if (file_exists("images/avatar.png")) {
  3410.                                                 $pc_avatar_png_image_size = getimagesize("images/avatar.png");
  3411.                                                 $pc_avatar_png_image_width = $pc_avatar_png_image_size[0];
  3412.                                                 $pc_avatar_png_image_height = $pc_avatar_png_image_size[1];
  3413.                                        
  3414.                                                 $pc_max_avatar_png_image_width = 80;
  3415.                                        
  3416.                                                 if ($pc_avatar_png_image_width > $pc_max_avatar_png_image_width) {  
  3417.                                                         $sizefactor = (double) ($pc_max_avatar_png_image_width / $pc_avatar_png_image_width) ;
  3418.                                                         $pc_avatar_png_image_width = (int) ($pc_avatar_png_image_width * $sizefactor);
  3419.                                                         $pc_avatar_png_image_height = (int) ($pc_avatar_png_image_height * $sizefactor);
  3420.                                                 }
  3421.                                        
  3422.                                                 echo "<img src=images/avatar.png border=0 width=";
  3423.                                                 echo $pc_avatar_png_image_width;
  3424.                                                 echo " height=";
  3425.                                                 echo $pc_avatar_png_image_height;
  3426.                                         }
  3427.                                 echo "><br>";
  3428.                                 }
  3429.                                 elseif (file_exists("images/members/$pc_author/avatar.jpg") or file_exists("images/members/$pc_author/avatar.gif") or file_exists("images/members/$pc_author/avatar.png")) {
  3430.                                         if (file_exists("images/members/$pc_author/avatar.gif")) {
  3431.                                                 $pc_avatar_gif_image_size = getimagesize("images/members/$pc_author/avatar.gif");
  3432.                                                 $pc_avatar_gif_image_width = $pc_avatar_gif_image_size[0];
  3433.                                                 $pc_avatar_gif_image_height = $pc_avatar_gif_image_size[1];
  3434.                
  3435.                                                 $pc_max_avatar_gif_image_width = 80;
  3436.                                        
  3437.                                                 if ($pc_avatar_gif_image_width > $pc_max_avatar_gif_image_width) {  
  3438.                                                         $sizefactor = (double) ($pc_max_avatar_gif_image_width / $pc_avatar_gif_image_width) ;
  3439.                                                         $pc_avatar_gif_image_width = (int) ($pc_avatar_gif_image_width * $sizefactor);
  3440.                                                         $pc_avatar_gif_image_height = (int) ($pc_avatar_gif_image_height * $sizefactor);
  3441.                                                 }
  3442.                
  3443.                                                 echo "<img src=images/members/$pc_author/avatar.gif border=0 width=";
  3444.                                                 echo $pc_avatar_gif_image_width;
  3445.                                                 echo " height=";
  3446.                                                 echo $pc_avatar_gif_image_height;
  3447.                                         }
  3448.                                         if (file_exists("images/members/$pc_author/avatar.jpg")) {
  3449.                                                 $pc_avatar_jpg_image_size = getimagesize("images/members/$pc_author/avatar.jpg");
  3450.                                                 $pc_avatar_jpg_image_width = $pc_avatar_jpg_image_size[0];
  3451.                                                 $pc_avatar_jpg_image_height = $pc_avatar_jpg_image_size[1];
  3452.                                        
  3453.                                                 $pc_max_avatar_jpg_image_width = 80;
  3454.                                        
  3455.                                                 if ($pc_avatar_jpg_image_width > $pc_max_avatar_jpg_image_width) {  
  3456.                                                         $sizefactor = (double) ($pc_max_avatar_jpg_image_width / $pc_avatar_jpg_image_width) ;
  3457.                                                         $pc_avatar_jpg_image_width = (int) ($pc_avatar_jpg_image_width * $sizefactor);
  3458.                                                         $pc_avatar_jpg_image_height = (int) ($pc_avatar_jpg_image_height * $sizefactor);
  3459.                                                 }
  3460.                
  3461.                                                 echo "<img src=images/members/$pc_author/avatar.jpg border=0 width=";
  3462.                                                 echo $pc_avatar_jpg_image_width;
  3463.                                                 echo " height=";
  3464.                                                 echo $pc_avatar_jpg_image_height;
  3465.                                         }
  3466.                                         if (file_exists("images/members/$pc_author/avatar.png")) {
  3467.                                                 $pc_avatar_png_image_size = getimagesize("images/members/$pc_author/avatar.png");
  3468.                                                 $pc_avatar_png_image_width = $pc_avatar_png_image_size[0];
  3469.                                                 $pc_avatar_png_image_height = $pc_avatar_png_image_size[1];
  3470.                                        
  3471.                                                 $pc_max_avatar_png_image_width = 80;
  3472.                                        
  3473.                                                 if ($pc_avatar_png_image_width > $pc_max_avatar_png_image_width) {  
  3474.                                                         $sizefactor = (double) ($pc_max_avatar_png_image_width / $pc_avatar_png_image_width) ;
  3475.                                                         $pc_avatar_png_image_width = (int) ($pc_avatar_png_image_width * $sizefactor);
  3476.                                                         $pc_avatar_png_image_height = (int) ($pc_avatar_png_image_height * $sizefactor);
  3477.                                                 }
  3478.                                        
  3479.                                                 echo "<img src=images/members/$pc_author/avatar.png border=0 width=";
  3480.                                                 echo $pc_avatar_png_image_width;
  3481.                                                 echo " height=";
  3482.                                                 echo $pc_avatar_png_image_height;
  3483.                                         }
  3484.                                 echo "><br>";
  3485.                                 }
  3486.                                 echo "$pc_author</a><br>";
  3487.                                 if ((file_get_contents("data/username.txt") == $pc_author) and file_exists("data/rank.txt")) {
  3488.                                         echo "administrator<br>";
  3489.                                 }
  3490.                                 elseif (file_exists("data/members/active/$pc_author/rank.txt") and file_exists("data/rank.txt")) {
  3491.                                         $pc_rank = file_get_contents("data/members/active/$pc_author/rank.txt");
  3492.                                         echo "$pc_rank<br>";
  3493.                                 }
  3494.                                 elseif (!file_exists("data/members/active/$pc_author/rank.txt") and file_exists("data/rank.txt")) {
  3495.                                         echo "member<br>";
  3496.                                 }
  3497.                
  3498.                                 if ($pc_dh_posts = opendir("data/items")) {
  3499.                                         while (($pc_entry_posts = readdir($pc_dh_posts)) !== false) {
  3500.                
  3501.                                                 if (file_exists("data/items/$pc_entry_posts/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  3502.                                                         continue;
  3503.                                                 }
  3504.                
  3505.                                                 if (file_exists("data/items/$pc_entry_posts/member.txt") and (!isset($_SESSION['logged_in']))) {
  3506.                                                         continue;
  3507.                                                 }
  3508.                
  3509.                                                 $pc_post_cat_dir = file_get_contents("data/items/$pc_entry_posts/category.txt");
  3510.                
  3511.                                                 if (file_exists("data/categories/$pc_post_cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$pc_entry_posts/cat.txt")) {
  3512.                                                         continue;
  3513.                                                 }
  3514.                
  3515.                                                 if ($pc_entry_posts != "." && $pc_entry_posts != ".." && fnmatch("*", $pc_entry_posts)) {
  3516.                                                         if (file_exists("data/members/active/$pc_author") and file_exists("data/bb.txt")) {
  3517.                                                                 if (file_exists("data/items/$pc_entry_posts/author.txt") and (file_get_contents("data/items/$pc_entry_posts/author.txt") == $pc_author)) {
  3518.                                                                         $pc_items_posts[] = $pc_entry_posts;
  3519.                                                                 }
  3520.                                                         }
  3521.                                                         elseif (!file_exists("data/members/active/$pc_author") and (file_get_contents("data/username.txt") == $pc_author) and file_exists("data/bb.txt")) {
  3522.                                                                 if (file_exists("data/items/$pc_entry_posts/author.txt") and (file_get_contents("data/items/$pc_entry_posts/author.txt") == $pc_author)) {
  3523.                                                                         $pc_items_posts[] = $pc_entry_posts;
  3524.                                                                 }
  3525.                                                         }
  3526.                                                 }
  3527.                                         }
  3528.                                 closedir($pc_dh_posts);
  3529.                                 }
  3530.                                 $pc_posts = count($pc_items_posts);
  3531.                                 if ($pc_posts == 1) {
  3532.                                         echo "$pc_posts post";
  3533.                                 }
  3534.                                 if ($pc_posts > 1) {
  3535.                                         echo "$pc_posts posts";
  3536.                                 }
  3537.                                 unset($pc_items_posts);
  3538.                
  3539.                                 echo "</p></td><td width=513 valign=top>";
  3540.                         }
  3541.                         else {
  3542.                                 echo "<td width=598 valign=top>";
  3543.                         }
  3544.  
  3545.                         echo '<p><font style="font-size: 10px; color: #999999;">';
  3546.                         if ((file_exists("$dir/$d/comments/pending/$pending_comment/author.txt") and (file_exists("data/bb.txt") and !file_exists("data/avatar.txt")) or (file_exists("$dir/$d/comments/pending/$pending_comment/author.txt") and (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username) and !file_exists("data/avatar.txt"))))) {
  3547.                                 $pxavatar_author = file_get_contents("$dir/$d/comments/pending/$pending_comment/author.txt");
  3548.                                 echo "<a href=member.php?id=$pxavatar_author>$pxavatar_author</a> - ";
  3549.                         }
  3550.                         readfile("$dir/$d/comments/pending/$pending_comment/timestamp.txt");
  3551.  
  3552.                         if (file_exists("$dir/$d/comments/pending/$pending_comment/revisions.txt")) {
  3553.                                 echo '  (Revision ';
  3554.                                 readfile("$dir/$d/comments/pending/$pending_comment/revisions.txt");
  3555.                                 echo ')';
  3556.                         }
  3557.  
  3558.                         echo '</font><font style="font-size: 5px;"><br><br></font>';
  3559.                         readfile("$dir/$d/comments/pending/$pending_comment/comment.txt");
  3560.                         echo '</p></tr></table></div>';
  3561.  
  3562.                         if (file_exists("data/round.txt")) {
  3563.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3564.                         }
  3565.  
  3566.                         unset($show_pending_comments);
  3567.                         echo '</td></tr></table></p>';
  3568.                 }
  3569.         }
  3570. }
  3571. ?>
  3572.  
  3573. <p><table border=0 cellspacing=0 cellpadding=0 width=100%><tr>
  3574.  
  3575. <?php
  3576. if (($start >= $increase) and ($start != 0)) {
  3577.         echo "<td align=left><p><a href=\"" . $_SERVER['PHP_SELF'] . "?";
  3578.         if (isset($_REQUEST['category']) and !empty($_REQUEST['category']) and file_exists(strip_tags(strtolower(str_replace(" ", "_", "data/categories/{$_REQUEST['category']}"))))) {
  3579.                 echo "category={$_REQUEST['category']}&";
  3580.         }
  3581.         if (isset($_REQUEST['archive']) and !empty($_REQUEST['archive'])) {
  3582.                 echo "archive={$_REQUEST['archive']}&";
  3583.         }
  3584.         if (isset($_REQUEST['author']) and !empty($_REQUEST['author']) and file_exists("data/members/active/{$_REQUEST['author']}") and file_exists("data/bb.txt")) {
  3585.                 echo "author={$_REQUEST['author']}&";
  3586.         }
  3587.         if (isset($_REQUEST['author']) and !empty($_REQUEST['author']) and !file_exists("data/members/active/{$_REQUEST['author']}") and (file_get_contents("data/username.txt") == $_REQUEST['author']) and file_exists("data/bb.txt")) {
  3588.                 echo "author={$_REQUEST['author']}&";
  3589.         }
  3590.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "private")) {
  3591.                 echo "find=private&";
  3592.         }
  3593.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "member")) {
  3594.                 echo "find=member&";
  3595.         }
  3596.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "unfiled")) {
  3597.                 echo "find=unfiled&";
  3598.         }
  3599.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "passwd")) {
  3600.                 echo "find=passwd&";
  3601.         }
  3602.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "comments")) {
  3603.                 echo "find=comments&";
  3604.         }
  3605.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "album")) {
  3606.                 echo "find=album&";
  3607.         }
  3608.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "filedrop")) {
  3609.                 echo "find=filedrop&";
  3610.         }
  3611.         echo "start=" . ($start-$increase) . "\">previous</a></p></td>";
  3612. }
  3613.  
  3614. if ($end < sizeof($items)) {
  3615.         echo "<td align=right><p><a href=\"" . $_SERVER['PHP_SELF'] . "?";
  3616.         if (isset($_REQUEST['category']) and !empty($_REQUEST['category']) and file_exists(strip_tags(strtolower(str_replace(" ", "_", "data/categories/{$_REQUEST['category']}"))))) {
  3617.                 echo "category={$_REQUEST['category']}&";
  3618.         }
  3619.         if (isset($_REQUEST['archive']) and !empty($_REQUEST['archive'])) {
  3620.                 echo "archive={$_REQUEST['archive']}&";
  3621.         }
  3622.         if (isset($_REQUEST['author']) and !empty($_REQUEST['author']) and file_exists("data/members/active/{$_REQUEST['author']}") and file_exists("data/bb.txt")) {
  3623.                 echo "author={$_REQUEST['author']}&";
  3624.         }
  3625.         if (isset($_REQUEST['author']) and !empty($_REQUEST['author']) and !file_exists("data/members/active/{$_REQUEST['author']}") and (file_get_contents("data/username.txt") == $_REQUEST['author']) and file_exists("data/bb.txt")) {
  3626.                 echo "author={$_REQUEST['author']}&";
  3627.         }
  3628.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "private")) {
  3629.                 echo "find=private&";
  3630.         }
  3631.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "member")) {
  3632.                 echo "find=member&";
  3633.         }
  3634.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "unfiled")) {
  3635.                 echo "find=unfiled&";
  3636.         }
  3637.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "passwd")) {
  3638.                 echo "find=passwd&";
  3639.         }
  3640.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "comments")) {
  3641.                 echo "find=comments&";
  3642.         }
  3643.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "album")) {
  3644.                 echo "find=album&";
  3645.         }
  3646.         if (isset($_REQUEST['find']) and !empty($_REQUEST['find']) and ($_REQUEST['find'] == "filedrop")) {
  3647.                 echo "find=filedrop&";
  3648.         }
  3649.         echo "start=" . ($start+$increase) . "\">next</a></p></td>";
  3650. }
  3651. ?>
  3652.  
  3653. </tr></table></p>
  3654.  
  3655. </td>
  3656.  
  3657. <td width=175 valign=top>
  3658.  
  3659. <?php
  3660. if ($dh_latest_items = opendir($dir)) {
  3661.         while (($entry_latest_items = readdir($dh_latest_items)) !== false) {
  3662.  
  3663.                 if (file_exists("data/items/$entry_latest_items/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  3664.                         continue;
  3665.                 }
  3666.  
  3667.                 if (file_exists("data/items/$entry_latest_items/member.txt") and (!isset($_SESSION['logged_in']))) {
  3668.                         continue;
  3669.                 }
  3670.  
  3671.                 $cat_dir = file_get_contents("data/items/$entry_latest_items/category.txt");
  3672.  
  3673.                 if (file_exists("data/categories/$cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_latest_items/cat.txt")) {
  3674.                         continue;
  3675.                 }
  3676.  
  3677.                 if (file_exists("data/nocat.txt") and file_exists("data/items/$entry_latest_items/category.txt") and !file_exists("data/items/$entry_latest_items/cat.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  3678.                         continue;
  3679.                 }
  3680.  
  3681.                 if ($entry_latest_items != "." && $entry_latest_items != ".." && fnmatch("*", $entry_latest_items)) {
  3682.                         $show_latest_items[] = $entry_latest_items;
  3683.                 }
  3684.         }
  3685.         closedir($dh_latest_items);
  3686. }
  3687.  
  3688. rsort($show_latest_items);
  3689. reset($show_latest_items);
  3690. $count_latest_items = count($show_latest_items);
  3691.  
  3692. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  3693.         if ($dh_pending_comment_flags = opendir("data/comments/pending")) {
  3694.                 while (($entry_pending_comment_flags = readdir($dh_pending_comment_flags)) !== false) {
  3695.                         if ($entry_pending_comment_flags != "." && $entry_pending_comment_flags != ".." && fnmatch("*", $entry_pending_comment_flags)) {
  3696.                                 $show_pending_comment_flags[] = $entry_pending_comment_flags;
  3697.                         }
  3698.                 }
  3699.                 closedir($dh_pending_comment_flags);
  3700.         }
  3701.  
  3702.         rsort($show_pending_comment_flags);
  3703.         reset($show_pending_comment_flags);
  3704.         $count_pending_comment_flags = count($show_pending_comment_flags);
  3705.  
  3706.         if (($count_latest_items > 0) and ($count_pending_comment_flags > 0)) {
  3707.  
  3708.                 if (file_exists("data/round.txt")) {
  3709.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3710.                 }
  3711.                 else {
  3712.                         echo '<div id=panel_title>';
  3713.                 }
  3714.  
  3715.                 echo 'Pending Comments</div>';
  3716.                 echo '<div id=panel_body>';
  3717.                 if ($dh_list_pending_comment_flags = opendir("data/comments/pending")) {
  3718.                         while (($entry_list_pending_comment_flags = readdir($dh_list_pending_comment_flags)) !== false) {
  3719.                                 if ($entry_list_pending_comment_flags != "." && $entry_list_pending_comment_flags != ".." && fnmatch("*", $entry_list_pending_comment_flags)) {
  3720.                                         echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' .$entry_list_pending_comment_flags . '&show=comments>';
  3721.                                         readfile("data/items/$entry_list_pending_comment_flags/title.txt");
  3722.                                         echo '</a><br><font style="font-size: 10px; color: #999999;">';
  3723.                                         $fp_comment_count_txt = fopen("data/comments/pending/$entry_list_pending_comment_flags/count.txt","r");
  3724.                                         $comment_count_value = fread($fp_comment_count_txt,filesize("data/comments/pending/$entry_list_pending_comment_flags/count.txt"));
  3725.                                         fclose($fp_comment_count_txt);
  3726.                                         if ($comment_count_value == 1) {
  3727.                                                 echo ' ( ' . $comment_count_value . ' comment ) ';
  3728.                                         }
  3729.                                         elseif ($comment_count_value > 1) {
  3730.                                                 echo ' ( ' . $comment_count_value . ' comments ) ';
  3731.                                         }
  3732.                                         else {
  3733.                                                 echo '';
  3734.                                         }
  3735.                                         echo '</font><br>';
  3736.                                 }
  3737.                         }
  3738.                         closedir($dh_list_pending_comment_flags);
  3739.                 }
  3740.                 echo '</div>';
  3741.  
  3742.                 if (file_exists("data/round.txt")) {
  3743.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3744.                 }
  3745.         }
  3746. }
  3747.  
  3748. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username) and file_exists("data/members/confirmed") and !file_exists("data/xapp.txt") and file_exists("data/bb.txt") and file_exists("data/reg.txt")) {
  3749.         if ($dh_pending_list = opendir("data/members/confirmed")) {
  3750.                 while (($entry_pending_list = readdir($dh_pending_list)) !== false) {
  3751.  
  3752.                         if ($entry_pending_list != "." && $entry_pending_list != ".." && fnmatch("*", $entry_pending_list)) {
  3753.                                 $show_pending_list[] = $entry_pending_list;
  3754.                         }
  3755.                 }
  3756.                 closedir($dh_pending_list);
  3757.         }
  3758.  
  3759.         sort($show_pending_list);
  3760.         reset($show_pending_list);
  3761.         $count_pending_list = count($show_pending_list);
  3762.        
  3763.         if ($count_pending_list > 0) {
  3764.  
  3765.                 if (file_exists("data/round.txt")) {
  3766.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3767.                 }
  3768.                 else {
  3769.                         echo '<div id=panel_title>';
  3770.                 }
  3771.  
  3772.                 echo "Pending Member";
  3773.                 if ($count_pending_list > 1) {
  3774.                         echo "s";
  3775.                 }
  3776.                 echo "</div><div id=panel_body>Please approve or deny $count_pending_list pending membership request";
  3777.                 if ($count_pending_list > 1) {
  3778.                         echo "s";
  3779.                 }
  3780.                 echo " below.</div>";
  3781.  
  3782.                 if (file_exists("data/round.txt")) {
  3783.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3784.                 }
  3785.  
  3786.                 foreach ($show_pending_list as $pending_list_entry) {
  3787.  
  3788.                         if (file_exists("data/round.txt")) {
  3789.                                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3790.                         }
  3791.                         else {
  3792.                                 echo '<div id=panel_title>';
  3793.                         }
  3794.  
  3795.                         echo "$pending_list_entry";
  3796.                         echo '<a href=reg.php?username=';
  3797.                         echo $pending_list_entry;
  3798.                         echo '&key=';
  3799.                         readfile("data/members/confirmed/$pending_list_entry/key.txt");
  3800.                         echo '&action=deny><img src=images/widget.del.png border=0 width=11 height=11 align=right alt=deny></a><a href=reg.php?username=';
  3801.                         echo $pending_list_entry;
  3802.                         echo '&key=';
  3803.                         readfile("data/members/confirmed/$pending_list_entry/key.txt");
  3804.                         echo '&action=approve><img src=images/widget.cat.png border=0 width=11 height=11 align=right alt=approve></a></div>';
  3805.                         echo "<div id=panel_body>";
  3806.                         if (file_exists("data/members/confirmed/$pending_list_entry/url.txt")) {
  3807.                                 echo "<a href=\"";
  3808.                                 readfile("data/members/confirmed/$pending_list_entry/url.txt");
  3809.                                 echo "\" target=_pending>";
  3810.                         }
  3811.                         readfile("data/members/confirmed/$pending_list_entry/firstname.txt");
  3812.                         echo "&nbsp;";
  3813.                         readfile("data/members/confirmed/$pending_list_entry/lastname.txt");
  3814.                         if (file_exists("data/members/confirmed/$pending_list_entry/url.txt")) {
  3815.                                 echo "</a>";
  3816.                         }
  3817.                         echo "<br>";
  3818.                         $pending_email = file_get_contents("data/members/confirmed/$pending_list_entry/email.txt");
  3819.                         $pending_email = wordwrap($pending_email,30);
  3820.                         echo $pending_email;
  3821.                         if (file_exists("data/members/confirmed/$pending_list_entry/timestamp.txt")) {
  3822.                                 $confirmed = file_get_contents("data/members/confirmed/$pending_list_entry/timestamp.txt");
  3823.                                 $confirmed_year = substr($confirmed,0,4);
  3824.                                 $confirmed_month = substr($confirmed,4,2);
  3825.                                 $confirmed_day = substr($confirmed,6,2);
  3826.                                 $confirmed_hh = substr($confirmed,8,2);
  3827.                                 $confirmed_mm = substr($confirmed,10,2);
  3828.                                 $email_confirmed = date("d M Y H:i", mktime($confirmed_hh, $confirmed_mm, 0, $confirmed_month, $confirmed_day, $confirmed_year));
  3829.                                 echo "<br>$email_confirmed";
  3830.                         }
  3831.                         echo "</div>";
  3832.  
  3833.                         if (file_exists("data/round.txt")) {
  3834.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3835.                         }
  3836.                 }
  3837.         }
  3838. }
  3839.  
  3840. if (($count_latest_items > 0) and (!file_exists("data/xrecent.txt") or isset($_SESSION['logged_in']))) {
  3841.  
  3842.         if (file_exists("data/round.txt")) {
  3843.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3844.         }
  3845.         else {
  3846.                 echo '<div id=panel_title>';
  3847.         }
  3848.  
  3849.         echo 'Recent Entries</div><div id=panel_body>';
  3850.  
  3851.         $increment_recent_entries = 0;
  3852.  
  3853.         if (($count_latest_items <= $increase) or ($count_latest_items <= $increase * 2)) {
  3854.                 $increase = $count_latest_items;
  3855.                 $show_recent_entries = $increase - 1;
  3856.         }
  3857.         else {
  3858.                 $show_recent_entries = $increase * 2 - 1;
  3859.         }
  3860.  
  3861.         while ($increment_recent_entries <= $show_recent_entries) {
  3862.                 echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=' . $show_latest_items[$increment_recent_entries] . '>';
  3863.                 readfile("$dir/$show_latest_items[$increment_recent_entries]/title.txt");
  3864.                 echo '</a><br>';
  3865.                 $increment_recent_entries = $increment_recent_entries + 1;
  3866.         }
  3867.  
  3868.         echo '</div>';
  3869.  
  3870.         if (file_exists("data/round.txt")) {
  3871.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3872.         }
  3873. }
  3874. ?>
  3875.  
  3876. <?php
  3877. if (file_exists("data/bb.txt") and file_exists("data/bb-stats.txt")) {
  3878.  
  3879.         if (file_exists("data/round.txt")) {
  3880.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3881.         }
  3882.         else {
  3883.                 echo '<div id=panel_title>';
  3884.         }
  3885.  
  3886.         echo "Bulletin Board</div><div id=panel_body>";
  3887.         if (file_exists("data/members/active") and file_exists("data/bb.txt")) {
  3888.                 if ($dh_active_list = opendir("data/members/active")) {
  3889.                         while (($entry_active_list = readdir($dh_active_list)) !== false) {
  3890.                                 if ($entry_active_list != "." && $entry_active_list != ".." && fnmatch("*", $entry_active_list)) {
  3891.                                         $show_active_list[] = $entry_active_list;
  3892.                                 }
  3893.                         }
  3894.                 closedir($dh_active_list);
  3895.                 }
  3896.  
  3897.                 sort($show_active_list);
  3898.                 reset($show_active_list);
  3899.                 $count_active_list = count($show_active_list);
  3900.                 if ($count_active_list > 0) {
  3901.                         echo "Registered Members: $count_active_list";
  3902.                 }
  3903.         }
  3904.  
  3905.  
  3906.         if (file_exists("data/items")) {
  3907.                 if ($dh_mempost_list = opendir("data/items")) {
  3908.                         while (($entry_mempost_list = readdir($dh_mempost_list)) !== false) {
  3909.  
  3910.                                 if (file_exists("data/items/$entry_mempost_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  3911.                                         continue;
  3912.                                 }
  3913.  
  3914.                                 // hide_member (20070606)
  3915.                                 //if (file_exists("data/items/$entry_mempost_list/member.txt") and (!isset($_SESSION['logged_in']))) {
  3916.                                 //      continue;
  3917.                                 //}
  3918.  
  3919.                                 $get_cat_dir = file_get_contents("data/items/$entry_mempost_list/category.txt");
  3920.  
  3921.                                 if (file_exists("data/categories/$get_cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_mempost_list/cat.txt")) {
  3922.                                         continue;
  3923.                                 }
  3924.        
  3925.                                 if ($entry_mempost_list != "." && $entry_mempost_list != ".." && fnmatch("*", $entry_mempost_list)) {
  3926.                                         $entry_mempost_list = substr("$entry_mempost_list",0,6);
  3927.                                         $show_mempost_list[] = $entry_mempost_list;
  3928.                                 }
  3929.                         }
  3930.                         closedir($dh_mempost_list);
  3931.                 }
  3932.                 rsort($show_mempost_list);
  3933.                 $count_mempost_list = count($show_mempost_list);
  3934.                 echo "<br>Total Posts: $count_mempost_list";
  3935.                 unset($show_mempost_list);
  3936.         }
  3937.  
  3938.         if (file_exists("data/bb-new.txt")) {
  3939.                 $bb_new = file_get_contents("data/bb-new.txt");
  3940.                 echo "<br>Newest User: <a href=member.php?id=$bb_new>$bb_new</a>";
  3941.         }
  3942.         if (file_exists("data/bb-last.txt")) {
  3943.                 $bb_last = file_get_contents("data/bb-last.txt");
  3944.                 echo "<br>Latest Login: <a href=member.php?id=$bb_last>$bb_last</a>";
  3945.         }
  3946.         echo "</div>";
  3947.  
  3948.         if (file_exists("data/round.txt")) {
  3949.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3950.         }
  3951. }
  3952. ?>
  3953.  
  3954. <?php
  3955.  
  3956. if (file_exists("data/round.txt")) {
  3957.         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3958. }
  3959. else {
  3960.         echo '<div id=panel_title>';
  3961. }
  3962.  
  3963. ?>
  3964.  
  3965. Search</div>
  3966. <form enctype="multipart/form-data" action="dig.php" method="post">
  3967. <div id=panel_body>
  3968. <input type=text class=search name=search autocomplete=off maxlength=55>
  3969. </form>
  3970. </div>
  3971.  
  3972. <?php
  3973.  
  3974. if (file_exists("data/round.txt")) {
  3975.         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  3976. }
  3977.  
  3978. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  3979.  
  3980.         if (file_exists("data/round.txt")) {
  3981.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  3982.         }
  3983.         else {
  3984.                 echo '<div id=panel_title>';
  3985.         }
  3986.  
  3987.         echo "Find Entries</div><div id=panel_body>";
  3988.         echo "<a href=index.php?find=private>Private</a>";
  3989.         if (file_exists("data/bb.txt")) {
  3990.                 echo "<br><a href=index.php?find=member>Members-Only</a>";
  3991.         }
  3992.         echo "<br><a href=index.php?find=unfiled>Unfiled</a>";
  3993.         echo "<br><a href=index.php?find=passwd>Password Protected</a>";
  3994.         echo "<br><a href=index.php?find=comments>With Comments</a>";
  3995.         echo "<br><a href=index.php?find=filedrop>With Attached Files</a>";
  3996.         echo "<br><a href=index.php?find=album>With Photo Album</a>";
  3997.         echo "</div>";
  3998.  
  3999.         if (file_exists("data/round.txt")) {
  4000.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4001.         }
  4002. }
  4003. ?>
  4004.  
  4005. <?php
  4006. if (file_exists("data/categories")) {
  4007.         if ($dh_categories = opendir("data/categories")) {
  4008.                 while (($entry_categories = readdir($dh_categories)) !== false) {
  4009.  
  4010.                         if (file_exists("data/xcat.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  4011.                                 continue;
  4012.                         }
  4013.  
  4014.                         if (file_exists("data/categories/$entry_categories/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  4015.                                 continue;
  4016.                         }
  4017.  
  4018.                         if ($entry_categories != "." && $entry_categories != ".." && fnmatch("*", $entry_categories)) {
  4019.                                 $show_categories[] = $entry_categories;
  4020.                         }
  4021.                 }
  4022.                 closedir($dh_categories);
  4023.         }
  4024.  
  4025.         sort($show_categories);
  4026.         reset($show_categories);
  4027.         $count_categories = count($show_categories);
  4028.  
  4029.         if ($count_categories > 0) {
  4030.  
  4031.                 if (file_exists("data/round.txt")) {
  4032.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4033.                 }
  4034.                 else {
  4035.                         echo '<div id=panel_title>';
  4036.                 }
  4037.  
  4038.                 echo 'Categories</div><div id=panel_body>';
  4039.                 foreach ($show_categories as $category) {
  4040.                         echo "<a href=\"" . $_SERVER['PHP_SELF'] . "?category=" . $category . "\">";
  4041.                         if (file_exists("data/categories/$category/title.txt")) {
  4042.                                 $category_title = file_get_contents("data/categories/$category/title.txt");
  4043.                         }
  4044.                         else {
  4045.                                 $category_title = ucfirst(str_replace("_"," ",$category));
  4046.                         }
  4047.                         echo $category_title;
  4048.                         echo "</a><br />";
  4049.                 }
  4050.                 echo '</div>';
  4051.  
  4052.                 if (file_exists("data/round.txt")) {
  4053.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4054.                 }
  4055.         }
  4056. }
  4057.  
  4058. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  4059.  
  4060.         if (file_exists("data/round.txt")) {
  4061.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4062.         }
  4063.         else {
  4064.                 echo '<div id=panel_title>';
  4065.         }
  4066.  
  4067.         echo 'Statistics</div><div id=panel_body>';
  4068.         echo "Total Entries: $count_latest_items";
  4069.         if (file_exists("data/hits.txt")) {
  4070.                 echo '<br>Site Hits: ';
  4071.                 readfile("data/hits.txt");
  4072.         }
  4073.         if (file_exists("data/google.txt")) {
  4074.                 echo '<br>Google Visits: ';
  4075.                 readfile("data/google.txt");
  4076.         }
  4077.         if (file_exists("data/rss-0.91.txt")) {
  4078.                 echo '<br>RSS 0.91 Hits: ';
  4079.                 readfile("data/rss-0.91.txt");
  4080.         }
  4081.         if (file_exists("data/rss-1.0.txt")) {
  4082.                 echo '<br>RSS 1.0 Hits: ';
  4083.                 readfile("data/rss-1.0.txt");
  4084.         }
  4085.         if (file_exists("data/rss-2.0.txt")) {
  4086.                 echo '<br>RSS 2.0 Hits: ';
  4087.                 readfile("data/rss-2.0.txt");
  4088.         }
  4089.         if (file_exists("data/sitemap.txt")) {
  4090.                 echo '<br>Sitemap Requests: ';
  4091.                 readfile("data/sitemap.txt");
  4092.         }
  4093.  
  4094.         echo '</div>';
  4095.  
  4096.         if (file_exists("data/round.txt")) {
  4097.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4098.         }
  4099. }
  4100.  
  4101. ?>
  4102.  
  4103. <?php
  4104. if (file_exists("data/albums")) {
  4105.         if ($dh_album_list = opendir("data/albums")) {
  4106.                 while (($entry_album_list = readdir($dh_album_list)) !== false) {
  4107.  
  4108.                         if (file_exists("data/items/$entry_album_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  4109.                                 continue;
  4110.                         }
  4111.  
  4112.                         if (file_exists("data/items/$entry_album_list/member.txt") and (!isset($_SESSION['logged_in']))) {
  4113.                                 continue;
  4114.                         }
  4115.  
  4116.                         $pull_cat_dir = file_get_contents("data/items/$entry_album_list/category.txt");
  4117.  
  4118.                         if (file_exists("data/categories/$pull_cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_album_list/cat.txt")) {
  4119.                                 continue;
  4120.                         }
  4121.  
  4122.                         if ($entry_album_list != "." && $entry_album_list != ".." && fnmatch("*", $entry_album_list)) {
  4123.                                 $show_album_list[] = $entry_album_list;
  4124.                         }
  4125.                 }
  4126.                 closedir($dh_album_list);
  4127.         }
  4128.  
  4129.         rsort($show_album_list);
  4130.         reset($show_album_list);
  4131.         $count_album_list = count($show_album_list);
  4132.        
  4133.         if ($count_album_list > 0) {
  4134.  
  4135.                 if (file_exists("data/round.txt")) {
  4136.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4137.                 }
  4138.                 else {
  4139.                         echo '<div id=panel_title>';
  4140.                 }
  4141.  
  4142.                 echo 'Albums</div>';
  4143.                 echo '<div id=panel_body>';
  4144.                 foreach ($show_album_list as $album_list_entry) {
  4145.                         echo '<a href=' . $_SERVER['PHP_SELF'] . '?entry=';
  4146.                         echo $album_list_entry;
  4147.                         echo '&show=album>';
  4148.                         readfile("data/items/$album_list_entry/title.txt");
  4149.                         echo '</a><br>';
  4150.                 }
  4151.                 echo '</div>';
  4152.  
  4153.                 if (file_exists("data/round.txt")) {
  4154.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4155.                 }
  4156.         }
  4157. }
  4158. ?>
  4159.  
  4160.  
  4161. <?php
  4162.  
  4163. if (!file_exists("data/xrand.txt")) {
  4164.  
  4165.         if ($dh_random_post_items = opendir($dir)) {
  4166.                 while (($entry_random_post_items = readdir($dh_random_post_items)) !== false) {
  4167.        
  4168.                         if (file_exists("data/items/$entry_random_post_items/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  4169.                                 continue;
  4170.                         }
  4171.        
  4172.                         $cat_dir = file_get_contents("data/items/$entry_random_post_items/category.txt");
  4173.        
  4174.                         if (file_exists("data/categories/$cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_random_post_items/cat.txt")) {
  4175.                                 continue;
  4176.                         }
  4177.        
  4178.                         if ($entry_random_post_items != "." && $entry_random_post_items != ".." && fnmatch("*", $entry_random_post_items)) {
  4179.                                 $show_random_post_items[] = $entry_random_post_items;
  4180.                         }
  4181.                 }
  4182.                 closedir($dh_random_post_items);
  4183.         }
  4184.        
  4185.         shuffle($show_random_post_items);
  4186.         reset($show_random_post_items);
  4187.         $count_random_post_items = count($show_random_post_items);
  4188.        
  4189.         if (file_exists("data/increase.txt")) {
  4190.                 $limit_random_post_entries = file_get_contents("data/increase.txt");
  4191.         }
  4192.         else {
  4193.                 $limit_random_post_entries = 5;
  4194.         }
  4195.        
  4196.         if ($count_random_post_items > $limit_random_post_entries) {
  4197.        
  4198.                 if (file_exists("data/round.txt")) {
  4199.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4200.                 }
  4201.                 else {
  4202.                         echo '<div id=panel_title>';
  4203.                 }
  4204.        
  4205.                 echo "Random Entries</div><div id=panel_body>";
  4206.        
  4207.                 $increment_random_post_entries = 0;
  4208.        
  4209.                 if ($count_random_post_items <= $limit_random_post_entries * 2) {
  4210.                         $show_random_post_entries = $count_random_post_items - 1;
  4211.                 }
  4212.                 else {
  4213.                         $show_random_post_entries = $limit_random_post_entries * 2 - 1;
  4214.                 }
  4215.        
  4216.                 while ($increment_random_post_entries <= $show_random_post_entries) {
  4217.                         echo "<a href=index.php?entry={$show_random_post_items[$increment_random_post_entries]}>";
  4218.                         readfile("$dir/$show_random_post_items[$increment_random_post_entries]/title.txt");
  4219.                         echo "</a><br>";
  4220.        
  4221.                         $increment_random_post_entries = $increment_random_post_entries + 1;
  4222.                 }
  4223.         }
  4224.        
  4225.         if ($count_random_post_items > 0) {
  4226.                 echo "</div>";
  4227.        
  4228.                 if (file_exists("data/round.txt")) {
  4229.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4230.                 }
  4231.         }
  4232. }
  4233. ?>
  4234.  
  4235.  
  4236. <?php
  4237. if (file_exists("data/items")) {
  4238.         if ($dh_archive_list = opendir("data/items")) {
  4239.                 while (($entry_archive_list = readdir($dh_archive_list)) !== false) {
  4240.  
  4241.                         if (file_exists("data/xarc.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  4242.                                 continue;
  4243.                         }
  4244.  
  4245.                         if (file_exists("data/items/$entry_archive_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  4246.                                 continue;
  4247.                         }
  4248.  
  4249.                         // hide member
  4250.                         //if (file_exists("data/items/$entry_archive_list/member.txt") and (!isset($_SESSION['logged_in']))) {
  4251.                         //      continue;
  4252.                         //}
  4253.  
  4254.                         $get_cat_dir = file_get_contents("data/items/$entry_archive_list/category.txt");
  4255.  
  4256.                         if (file_exists("data/categories/$get_cat_dir/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$entry_archive_list/cat.txt")) {
  4257.                                 continue;
  4258.                         }
  4259.  
  4260.                         if ($entry_archive_list != "." && $entry_archive_list != ".." && fnmatch("*", $entry_archive_list)) {
  4261.                                 $entry_archive_list = substr("$entry_archive_list",0,6);
  4262.                                 $show_archive_list[] = $entry_archive_list;
  4263.                         }
  4264.                 }
  4265.                 closedir($dh_archive_list);
  4266.         }
  4267.  
  4268.         rsort($show_archive_list);
  4269.         reset($show_archive_list);
  4270.         $count_archive_list = count($show_archive_list);
  4271.        
  4272.         if (($count_archive_list > 0) and ($count_latest_items > 0)) {
  4273.  
  4274.                 $archive_entries = implode(" ",$show_archive_list);
  4275.                 $unique_archive_list = array_unique($show_archive_list);
  4276.  
  4277.                 if (file_exists("data/round.txt")) {
  4278.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4279.                 }
  4280.                 else {
  4281.                         echo '<div id=panel_title>';
  4282.                 }
  4283.  
  4284.                 echo "Archives ($count_archive_list)</div>";
  4285.                 echo "<div id=panel_body>";
  4286.                 foreach ($unique_archive_list as $archive_list_entry) {
  4287.                         $archive_list_value = substr($archive_list_entry,0,6);
  4288.                         $archive_list_year = substr($archive_list_entry,0,4);
  4289.                         $archive_list_month = substr($archive_list_entry,4,2);
  4290.                         $archive_list_month = date("F",mktime(0,0,0,$archive_list_month));
  4291.                         echo "<a href=\"index.php?archive=$archive_list_value\">$archive_list_month $archive_list_year</a> (";
  4292.                         echo substr_count($archive_entries,$archive_list_entry);
  4293.                         echo ")<br>";
  4294.                 }
  4295.                 echo "</div>";
  4296.  
  4297.                 if (file_exists("data/round.txt")) {
  4298.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4299.                 }
  4300.         }
  4301. }
  4302.  
  4303. ?>
  4304.  
  4305.  
  4306. <?php
  4307.  
  4308. if (file_exists("data/clustrmaps.php")) {
  4309.  
  4310.         if (file_exists("data/round.txt")) {
  4311.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4312.         }
  4313.         else {
  4314.                 echo '<div id=panel_title>';
  4315.         }
  4316.  
  4317.         echo 'ClustrMaps</div>';
  4318.         echo '<div id=panel_body><center>';
  4319.         include("data/clustrmaps.php");
  4320.         echo '</center></div>';
  4321.  
  4322.         if (file_exists("data/round.txt")) {
  4323.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4324.         }
  4325. }
  4326. ?>
  4327.  
  4328. <?php
  4329.  
  4330. if (file_exists("data/adsense.php")) {
  4331.  
  4332.         if (file_exists("data/round.txt")) {
  4333.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4334.         }
  4335.         else {
  4336.                 echo '<div id=panel_title>';
  4337.         }
  4338.  
  4339.         echo 'AdSense</div>';
  4340.         echo '<div id=panel_body><center>';
  4341.         include("data/adsense.php");   
  4342.         echo '</center></div>';
  4343.  
  4344.         if (file_exists("data/round.txt")) {
  4345.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4346.         }
  4347. }
  4348. ?>
  4349.  
  4350. <?php
  4351. if (file_exists("data/panels")) {
  4352.         if ($dh_right_panel_list = opendir("data/panels")) {
  4353.                 while (($entry_right_panel_list = readdir($dh_right_panel_list)) !== false) {
  4354.  
  4355.                         if (file_exists("data/panels/$entry_right_panel_list/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  4356.                                 continue;
  4357.                         }
  4358.  
  4359.                         if (!file_exists("data/panels/$entry_right_panel_list/right.txt")) {
  4360.                                 continue;
  4361.                         }
  4362.  
  4363.                         if ($entry_right_panel_list != "." && $entry_right_panel_list != ".." && fnmatch("*", $entry_right_panel_list)) {
  4364.                                 $show_right_panel_list[] = $entry_right_panel_list;
  4365.                         }
  4366.                 }
  4367.                 closedir($dh_right_panel_list);
  4368.         }
  4369.  
  4370.         sort($show_right_panel_list);
  4371.         reset($show_right_panel_list);
  4372.         $count_right_panel_list = count($show_right_panel_list);
  4373.        
  4374.         if ($count_right_panel_list > 0) {
  4375.                 foreach ($show_right_panel_list as $right_panel_list_entry) {
  4376.                         if (!file_exists("data/panels/$right_panel_list_entry/free.txt")) {
  4377.  
  4378.                                 if (file_exists("data/round.txt")) {
  4379.                                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  4380.                                 }
  4381.                                 else {
  4382.                                         echo '<div id=panel_title>';
  4383.                                 }
  4384.  
  4385.                                 readfile("data/panels/$right_panel_list_entry/title.txt");
  4386.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  4387.                                         echo "<a href=panels.php#{$right_panel_list_entry}>";
  4388.                                         echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  4389.                                 }
  4390.                                 echo '</div><div id=panel_body>';
  4391.                         }
  4392.                         if (file_exists("data/panels/$right_panel_list_entry/free.txt")) {
  4393.                                 echo '<div id=panel_free>';
  4394.                         }
  4395.                         include("data/panels/$right_panel_list_entry/panel.php");
  4396.                         echo '</div>';
  4397.  
  4398.                         if (file_exists("data/round.txt") and !file_exists("data/panels/$right_panel_list_entry/free.txt")) {
  4399.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  4400.                         }
  4401.                 }
  4402.         }
  4403. }
  4404. ?>
  4405.  
  4406. <?php
  4407.  
  4408. if ($count_latest_items > 0) {
  4409.         echo '<p><table border=0 cellspacing=2 cellpadding=0 width=100%>';
  4410.         echo '<tr><td align=center><a target="_button" href="http://maj.sourceforge.net/"><img src=images/button.maj.png border=0 width=80 height=15></a></td></tr>';
  4411.         echo '<tr><td align=center><a target="_button" href="http://php.net/"><img src=images/button.php.png border=0 width=80 height=15></a></td></tr>';
  4412.         $validate_uri = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  4413.         $validate_uri = str_replace('//', '/', $validate_uri);
  4414.         $validate_uri = "http://" . $validate_uri;
  4415.         echo '<tr><td align=center><a target="_button" href="http://jigsaw.w3.org/css-validator/validator?uri=' . $validate_uri . '"><img src=images/button.w3c.css.png border=0 width=80 height=15></a></td></tr>';
  4416.         echo '<tr><td align=center><a target="_button" href="rss.php?ver=0.91"><img src=images/button.rss-0.91.png border=0 width=80 height=15></a></td></tr>';
  4417.         echo '<tr><td align=center><a target="_button" href="rss.php?ver=1.0"><img src=images/button.rss-1.0.png border=0 width=80 height=15></a></td></tr>';
  4418.         echo '<tr><td align=center><a target="_button" href="rss.php?ver=2.0"><img src=images/button.rss-2.0.png border=0 width=80 height=15></a></td></tr>';
  4419.         echo '<tr><td align=center><a target="_button" href="sitemap.php"><img src=images/button.sitemap.png border=0 width=80 height=15></a></td></tr>';
  4420.         if (file_exists("data/sfx.txt")) {
  4421.                 $fp_sfx = fopen("data/sfx.txt", "r");
  4422.                 $sfx = fread($fp_sfx, filesize("data/sfx.txt"));
  4423.                 fclose($fp_sfx);
  4424.                 echo '<tr><td align=center><a target="_button" href="http://www.spreadfirefox.com/?q=affiliates&amp;id=' . $sfx . '&amp;t=85"><img src=images/button.firefox.png border=0 width=80 height=15></a></td></tr>';
  4425.         }
  4426.         echo '</table></p>';
  4427.  
  4428. }
  4429.  
  4430. ?>
  4431.  
  4432. <p></p>
  4433.  
  4434. </td></tr>
  4435. </table>
  4436.  
  4437. <?php
  4438. if (file_exists("footer.php")) {
  4439.         include("footer.php");
  4440. }
  4441.  
  4442. if (file_exists("data/center.txt")) {
  4443.         echo "</center>";
  4444. }
  4445.  
  4446. ?>
  4447.  
filedropmaj.git-01822e4.tar.bz2
147.95 KB
82 downloads
filedropmaj.git-01822e4.zip
201.96 KB
29 downloads
filedropmaj.git-0291349.tar.bz2
152.85 KB
81 downloads
filedropmaj.git-0291349.zip
211.90 KB
29 downloads
filedropmaj.git-02cb3b7.tar.bz2
151.48 KB
84 downloads
filedropmaj.git-02cb3b7.zip
209.82 KB
29 downloads
filedropmaj.git-0811dd5.tar.bz2
152.90 KB
79 downloads
filedropmaj.git-0811dd5.zip
211.90 KB
27 downloads
filedropmaj.git-083625f.tar.bz2
132.92 KB
77 downloads
filedropmaj.git-083625f.zip
179.59 KB
29 downloads
filedropmaj.git-0885d7b.tar.bz2
92.63 KB
79 downloads
filedropmaj.git-0885d7b.zip
132.34 KB
26 downloads
filedropmaj.git-09c6f33.tar.bz2
151.51 KB
79 downloads
filedropmaj.git-09c6f33.zip
202.12 KB
27 downloads
filedropmaj.git-0b26a85.tar.bz2
151.44 KB
75 downloads
filedropmaj.git-0b26a85.zip
209.75 KB
25 downloads
filedropmaj.git-0b32424.tar.bz2
151.66 KB
78 downloads
filedropmaj.git-0b32424.zip
206.72 KB
25 downloads
filedropmaj.git-0f3ac59.tar.bz2
152.14 KB
75 downloads
filedropmaj.git-0f3ac59.zip
211.45 KB
22 downloads
filedropmaj.git-11d4582.tar.bz2
143.02 KB
7 downloads
filedropmaj.git-11d4582.zip
195.12 KB
21 downloads
filedropmaj.git-17f105a.tar.bz2
137.96 KB
73 downloads
filedropmaj.git-17f105a.zip
193.02 KB
21 downloads
filedropmaj.git-183270b.tar.bz2
137.54 KB
77 downloads
filedropmaj.git-183270b.zip
187.93 KB
22 downloads
filedropmaj.git-197a49d.tar.bz2
152.03 KB
74 downloads
filedropmaj.git-197a49d.zip
211.32 KB
24 downloads
filedropmaj.git-1b9af25.tar.bz2
152.87 KB
70 downloads
filedropmaj.git-1b9af25.zip
211.96 KB
21 downloads
filedropmaj.git-1be2914.tar.bz2
149.30 KB
71 downloads
filedropmaj.git-1be2914.zip
203.09 KB
20 downloads
filedropmaj.git-1bed800.tar.bz2
138.15 KB
68 downloads
filedropmaj.git-1bed800.zip
190.15 KB
24 downloads
filedropmaj.git-1d330de.tar.bz2
151.65 KB
71 downloads
filedropmaj.git-1d330de.zip
210.80 KB
22 downloads
filedropmaj.git-1df190d.tar.bz2
151.72 KB
72 downloads
filedropmaj.git-1df190d.zip
210.85 KB
20 downloads
filedropmaj.git-1ee1167.tar.bz2
151.52 KB
72 downloads
filedropmaj.git-1ee1167.zip
202.16 KB
21 downloads
filedropmaj.git-2057838.tar.bz2
151.76 KB
68 downloads
filedropmaj.git-2057838.zip
202.36 KB
20 downloads
filedropmaj.git-2075213.tar.bz2
155.81 KB
69 downloads
filedropmaj.git-2075213.zip
208.39 KB
20 downloads
filedropmaj.git-211b7b0.tar.bz2
142.53 KB
71 downloads
filedropmaj.git-211b7b0.zip
194.64 KB
21 downloads
filedropmaj.git-2331f5a.tar.bz2
75.55 KB
73 downloads
filedropmaj.git-2331f5a.zip
100.32 KB
23 downloads
filedropmaj.git-25e3c4c.tar.bz2
147.57 KB
71 downloads
filedropmaj.git-25e3c4c.zip
201.46 KB
20 downloads
filedropmaj.git-2622313.tar.bz2
151.47 KB
68 downloads
filedropmaj.git-2622313.zip
206.44 KB
18 downloads
filedropmaj.git-273e4b2.tar.bz2
152.60 KB
68 downloads
filedropmaj.git-273e4b2.zip
203.40 KB
22 downloads
filedropmaj.git-2753e51.tar.bz2
136.37 KB
73 downloads
filedropmaj.git-2753e51.zip
184.34 KB
19 downloads
filedropmaj.git-2c1a589.tar.bz2
155.89 KB
67 downloads
filedropmaj.git-2c1a589.zip
208.69 KB
20 downloads
filedropmaj.git-2c3d544.tar.bz2
151.33 KB
10 downloads
filedropmaj.git-2c3d544.zip
206.23 KB
21 downloads
filedropmaj.git-2c85f72.tar.bz2
143.23 KB
67 downloads
filedropmaj.git-2c85f72.zip
194.84 KB
18 downloads
filedropmaj.git-2dc622c.tar.bz2
151.76 KB
67 downloads
filedropmaj.git-2dc622c.zip
202.35 KB
21 downloads
filedropmaj.git-2fabf8a.tar.bz2
151.35 KB
70 downloads
filedropmaj.git-2fabf8a.zip
206.24 KB
22 downloads
filedropmaj.git-322736b.tar.bz2
137.81 KB
62 downloads
filedropmaj.git-322736b.zip
190.18 KB
20 downloads
filedropmaj.git-374279c.tar.bz2
137.54 KB
63 downloads
filedropmaj.git-374279c.zip
189.58 KB
19 downloads
filedropmaj.git-37e852d.tar.bz2
151.32 KB
58 downloads
filedropmaj.git-37e852d.zip
206.21 KB
18 downloads
filedropmaj.git-38636de.tar.bz2
147.35 KB
60 downloads
filedropmaj.git-38636de.zip
201.16 KB
76 downloads
filedropmaj.git-3b25d71.tar.bz2
147.88 KB
53 downloads
filedropmaj.git-3b25d71.zip
201.85 KB
20 downloads
filedropmaj.git-3b6df7a.tar.bz2
153.39 KB
49 downloads
filedropmaj.git-3b6df7a.zip
204.55 KB
24 downloads
filedropmaj.git-3bf6bd2.tar.bz2
137.77 KB
54 downloads
filedropmaj.git-3bf6bd2.zip
190.16 KB
21 downloads
filedropmaj.git-3e012ff.tar.bz2
152.83 KB
53 downloads
filedropmaj.git-3e012ff.zip
211.89 KB
23 downloads
filedropmaj.git-4129ab8.tar.bz2
135.86 KB
61 downloads
filedropmaj.git-4129ab8.zip
184.30 KB
21 downloads
filedropmaj.git-414dbb4.tar.bz2
91.09 KB
58 downloads
filedropmaj.git-414dbb4.zip
130.29 KB
21 downloads
filedropmaj.git-43755d0.tar.bz2
150.25 KB
51 downloads
filedropmaj.git-43755d0.zip
204.44 KB
21 downloads
filedropmaj.git-4c20005.tar.bz2
55.59 KB
52 downloads
filedropmaj.git-4c20005.zip
74.20 KB
21 downloads
filedropmaj.git-4ccdbcd.tar.bz2
136.38 KB
55 downloads
filedropmaj.git-4ccdbcd.zip
185.22 KB
23 downloads
filedropmaj.git-4cd1a1c.tar.bz2
155.25 KB
51 downloads
filedropmaj.git-4cd1a1c.zip
207.88 KB
24 downloads
filedropmaj.git-4cf16d1.tar.bz2
76.32 KB
56 downloads
filedropmaj.git-4cf16d1.zip
101.80 KB
19 downloads
filedropmaj.git-4ec45a0.tar.bz2
131.16 KB
52 downloads
filedropmaj.git-4ec45a0.zip
172.66 KB
21 downloads
filedropmaj.git-4f73c22.tar.bz2
134.46 KB
52 downloads
filedropmaj.git-4f73c22.zip
182.45 KB
20 downloads
filedropmaj.git-5457969.tar.bz2
155.21 KB
54 downloads
filedropmaj.git-5457969.zip
207.63 KB
21 downloads
filedropmaj.git-57ee8a1.tar.bz2
145.49 KB
56 downloads
filedropmaj.git-57ee8a1.zip
198.12 KB
73 downloads
filedropmaj.git-592978d.tar.bz2
138.38 KB
54 downloads
filedropmaj.git-592978d.zip
190.58 KB
18 downloads
filedropmaj.git-5935b42.tar.bz2
135.60 KB
51 downloads
filedropmaj.git-5935b42.zip
183.28 KB
22 downloads
filedropmaj.git-5b443b6.tar.bz2
152.00 KB
54 downloads
filedropmaj.git-5b443b6.zip
211.07 KB
20 downloads
filedropmaj.git-5b4a9bf.tar.bz2
155.29 KB
50 downloads
filedropmaj.git-5b4a9bf.zip
207.93 KB
19 downloads
filedropmaj.git-5b6c01d.tar.bz2
147.13 KB
52 downloads
filedropmaj.git-5b6c01d.zip
200.86 KB
23 downloads
filedropmaj.git-5da45f7.tar.bz2
147.27 KB
52 downloads
filedropmaj.git-5da45f7.zip
201.02 KB
20 downloads
filedropmaj.git-5e53618.tar.bz2
75.57 KB
56 downloads
filedropmaj.git-5e53618.zip
100.78 KB
21 downloads
filedropmaj.git-5f8ca35.tar.bz2
136.39 KB
50 downloads
filedropmaj.git-5f8ca35.zip
185.32 KB
20 downloads
filedropmaj.git-61e3d7b.tar.bz2
153.52 KB
50 downloads
filedropmaj.git-61e3d7b.zip
204.73 KB
21 downloads
filedropmaj.git-62a635c.tar.bz2
155.90 KB
54 downloads
filedropmaj.git-62a635c.zip
208.73 KB
21 downloads
filedropmaj.git-6390d34.tar.bz2
138.39 KB
54 downloads
filedropmaj.git-6390d34.zip
190.56 KB
24 downloads
filedropmaj.git-649dfbe.tar.bz2
151.78 KB
53 downloads
filedropmaj.git-649dfbe.zip
210.91 KB
21 downloads
filedropmaj.git-65d6570.tar.bz2
151.63 KB
56 downloads
filedropmaj.git-65d6570.zip
210.80 KB
23 downloads
filedropmaj.git-660433f.tar.bz2
151.67 KB
53 downloads
filedropmaj.git-660433f.zip
206.68 KB
21 downloads
filedropmaj.git-6619ae5.tar.bz2
153.23 KB
11 downloads
filedropmaj.git-6619ae5.zip
204.28 KB
20 downloads
filedropmaj.git-68e4e3a.tar.bz2
135.13 KB
51 downloads
filedropmaj.git-68e4e3a.zip
182.91 KB
20 downloads
filedropmaj.git-6995297.tar.bz2
144.93 KB
56 downloads
filedropmaj.git-6995297.zip
197.18 KB
18 downloads
filedropmaj.git-69d6fd3.tar.bz2
143.23 KB
51 downloads
filedropmaj.git-69d6fd3.zip
194.89 KB
23 downloads
filedropmaj.git-6aa872a.tar.bz2
142.95 KB
55 downloads
filedropmaj.git-6aa872a.zip
195.11 KB
22 downloads
filedropmaj.git-6bad5c7.tar.bz2
147.04 KB
56 downloads
filedropmaj.git-6bad5c7.zip
200.79 KB
21 downloads
filedropmaj.git-6e96a2d.tar.bz2
152.13 KB
55 downloads
filedropmaj.git-6e96a2d.zip
207.21 KB
74 downloads
filedropmaj.git-73d46de.tar.bz2
138.42 KB
52 downloads
filedropmaj.git-73d46de.zip
190.59 KB
20 downloads
filedropmaj.git-75e0478.tar.bz2
144.54 KB
56 downloads
filedropmaj.git-75e0478.zip
196.70 KB
22 downloads
filedropmaj.git-784fc35.tar.bz2
143.07 KB
55 downloads
filedropmaj.git-784fc35.zip
195.01 KB
20 downloads
filedropmaj.git-7872a83.tar.bz2
138.51 KB
56 downloads
filedropmaj.git-7872a83.zip
190.69 KB
19 downloads
filedropmaj.git-788fb89.tar.bz2
138.30 KB
54 downloads
filedropmaj.git-788fb89.zip
191.26 KB
25 downloads
filedropmaj.git-796d8a3.tar.bz2
138.92 KB
53 downloads
filedropmaj.git-796d8a3.zip
191.24 KB
20 downloads
filedropmaj.git-79a5e8d.tar.bz2
132.43 KB
55 downloads
filedropmaj.git-79a5e8d.zip
176.90 KB
21 downloads
filedropmaj.git-7b3b2e0.tar.bz2
147.24 KB
53 downloads
filedropmaj.git-7b3b2e0.zip
201.05 KB
21 downloads
filedropmaj.git-7e28eed.tar.bz2
138.89 KB
50 downloads
filedropmaj.git-7e28eed.zip
191.24 KB
21 downloads
filedropmaj.git-8279296.tar.bz2
135.56 KB
55 downloads
filedropmaj.git-8279296.zip
183.25 KB
21 downloads
filedropmaj.git-84c17fe.tar.bz2
152.87 KB
56 downloads
filedropmaj.git-84c17fe.zip
211.90 KB
21 downloads
filedropmaj.git-87c5d5f.tar.bz2
135.78 KB
53 downloads
filedropmaj.git-87c5d5f.zip
183.64 KB
19 downloads
filedropmaj.git-8a48901.tar.bz2
147.27 KB
56 downloads
filedropmaj.git-8a48901.zip
201.06 KB
21 downloads
filedropmaj.git-8ad9892.tar.bz2
164.04 KB
53 downloads
filedropmaj.git-8ad9892.zip
224.42 KB
20 downloads
filedropmaj.git-8b4cf2a.tar.bz2
134.06 KB
53 downloads
filedropmaj.git-8b4cf2a.zip
180.78 KB
21 downloads
filedropmaj.git-8b7e38d.tar.bz2
138.04 KB
60 downloads
filedropmaj.git-8b7e38d.zip
190.39 KB
77 downloads
filedropmaj.git-8df6e40.tar.bz2
143.11 KB
56 downloads
filedropmaj.git-8df6e40.zip
194.66 KB
25 downloads
filedropmaj.git-8e80c84.tar.bz2
138.18 KB
10 downloads
filedropmaj.git-8e80c84.zip
190.30 KB
21 downloads
filedropmaj.git-8ec0fba.tar.bz2
138.37 KB
56 downloads
filedropmaj.git-8ec0fba.zip
191.39 KB
20 downloads
filedropmaj.git-8f7abf6.tar.bz2
153.36 KB
55 downloads
filedropmaj.git-8f7abf6.zip
211.80 KB
19 downloads
filedropmaj.git-923f11a.tar.bz2
138.14 KB
52 downloads
filedropmaj.git-923f11a.zip
191.03 KB
22 downloads
filedropmaj.git-955e82e.tar.bz2
42.71 KB
6 downloads
filedropmaj.git-955e82e.zip
59.77 KB
20 downloads
filedropmaj.git-95add4a.tar.bz2
151.23 KB
57 downloads
filedropmaj.git-95add4a.zip
205.91 KB
20 downloads
filedropmaj.git-96fe0ba.tar.bz2
137.68 KB
48 downloads
filedropmaj.git-96fe0ba.zip
190.34 KB
20 downloads
filedropmaj.git-99a90ce.tar.bz2
137.82 KB
57 downloads
filedropmaj.git-99a90ce.zip
191.20 KB
23 downloads
filedropmaj.git-9a69bb9.tar.bz2
143.19 KB
56 downloads
filedropmaj.git-9a69bb9.zip
194.70 KB
22 downloads
filedropmaj.git-9b6538e.tar.bz2
151.45 KB
54 downloads
filedropmaj.git-9b6538e.zip
202.15 KB
18 downloads
filedropmaj.git-9c4292d.tar.bz2
132.06 KB
55 downloads
filedropmaj.git-9c4292d.zip
176.93 KB
20 downloads
filedropmaj.git-9c78d40.tar.bz2
137.70 KB
54 downloads
filedropmaj.git-9c78d40.zip
190.49 KB
23 downloads
filedropmaj.git-9f1363f.tar.bz2
43.12 KB
57 downloads
filedropmaj.git-9f1363f.zip
60.31 KB
20 downloads
filedropmaj.git-a16c3eb.tar.bz2
90.22 KB
51 downloads
filedropmaj.git-a16c3eb.zip
128.62 KB
20 downloads
filedropmaj.git-a3aa72d.tar.bz2
153.00 KB
54 downloads
filedropmaj.git-a3aa72d.zip
203.86 KB
22 downloads
filedropmaj.git-a6886e4.tar.bz2
144.69 KB
55 downloads
filedropmaj.git-a6886e4.zip
196.95 KB
21 downloads
filedropmaj.git-a8669dc.tar.bz2
135.60 KB
53 downloads
filedropmaj.git-a8669dc.zip
183.34 KB
20 downloads
filedropmaj.git-a9477f1.tar.bz2
135.59 KB
55 downloads
filedropmaj.git-a9477f1.zip
183.45 KB
22 downloads
filedropmaj.git-aa285db.tar.bz2
151.73 KB
55 downloads
filedropmaj.git-aa285db.zip
210.85 KB
20 downloads
filedropmaj.git-aa6ae87.tar.bz2
135.44 KB
55 downloads
filedropmaj.git-aa6ae87.zip
183.88 KB
21 downloads
filedropmaj.git-ab6bc22.tar.bz2
151.71 KB
49 downloads
filedropmaj.git-ab6bc22.zip
210.84 KB
23 downloads
filedropmaj.git-adef726.tar.bz2
153.48 KB
52 downloads
filedropmaj.git-adef726.zip
212.32 KB
21 downloads
filedropmaj.git-afe5877.tar.bz2
144.73 KB
49 downloads
filedropmaj.git-afe5877.zip
197.01 KB
20 downloads
filedropmaj.git-b2d9f8e.tar.bz2
133.22 KB
51 downloads
filedropmaj.git-b2d9f8e.zip
179.27 KB
20 downloads
filedropmaj.git-b41f320.tar.bz2
151.56 KB
50 downloads
filedropmaj.git-b41f320.zip
209.85 KB
25 downloads
filedropmaj.git-b4432ce.tar.bz2
152.96 KB
52 downloads
filedropmaj.git-b4432ce.zip
203.86 KB
22 downloads
filedropmaj.git-b67b08f.tar.bz2
151.27 KB
53 downloads
filedropmaj.git-b67b08f.zip
206.15 KB
23 downloads
filedropmaj.git-b899831.tar.bz2
143.12 KB
53 downloads
filedropmaj.git-b899831.zip
194.60 KB
21 downloads
filedropmaj.git-b8b49c1.tar.bz2
132.59 KB
50 downloads
filedropmaj.git-b8b49c1.zip
178.90 KB
19 downloads
filedropmaj.git-b9c5bcf.tar.bz2
155.92 KB
52 downloads
filedropmaj.git-b9c5bcf.zip
208.70 KB
19 downloads
filedropmaj.git-bbddb1f.tar.bz2
151.63 KB
51 downloads
filedropmaj.git-bbddb1f.zip
209.92 KB
23 downloads
filedropmaj.git-bcaa744.tar.bz2
146.98 KB
55 downloads
filedropmaj.git-bcaa744.zip
200.79 KB
22 downloads
filedropmaj.git-c1ff9dc.tar.bz2
138.39 KB
55 downloads
filedropmaj.git-c1ff9dc.zip
191.43 KB
104 downloads
filedropmaj.git-c20c4b0.tar.bz2
151.64 KB
53 downloads
filedropmaj.git-c20c4b0.zip
210.79 KB
19 downloads
filedropmaj.git-c37f3f7.tar.bz2
145.45 KB
68 downloads
filedropmaj.git-c37f3f7.zip
198.11 KB
30 downloads
filedropmaj.git-c532394.tar.bz2
146.39 KB
54 downloads
filedropmaj.git-c532394.zip
199.91 KB
23 downloads
filedropmaj.git-c6317a4.tar.bz2
152.01 KB
52 downloads
filedropmaj.git-c6317a4.zip
207.08 KB
21 downloads
filedropmaj.git-c748176.tar.bz2
89.44 KB
52 downloads
filedropmaj.git-c748176.zip
126.35 KB
21 downloads
filedropmaj.git-c9ed81f.tar.bz2
135.56 KB
52 downloads
filedropmaj.git-c9ed81f.zip
183.28 KB
23 downloads
filedropmaj.git-c9f9b80.tar.bz2
138.50 KB
51 downloads
filedropmaj.git-c9f9b80.zip
190.66 KB
22 downloads
filedropmaj.git-ca65b73.tar.bz2
152.69 KB
52 downloads
filedropmaj.git-ca65b73.zip
207.87 KB
21 downloads
filedropmaj.git-cd80b77.tar.bz2
153.12 KB
53 downloads
filedropmaj.git-cd80b77.zip
212.01 KB
19 downloads
filedropmaj.git-cffbb2a.tar.bz2
138.22 KB
50 downloads
filedropmaj.git-cffbb2a.zip
190.28 KB
22 downloads
filedropmaj.git-d061ad7.tar.bz2
55.78 KB
68 downloads
filedropmaj.git-d061ad7.zip
74.39 KB
22 downloads
filedropmaj.git-d0af4d6.tar.bz2
57.28 KB
53 downloads
filedropmaj.git-d0af4d6.zip
78.56 KB
22 downloads
filedropmaj.git-d1caa0a.tar.bz2
144.57 KB
55 downloads
filedropmaj.git-d1caa0a.zip
196.63 KB
22 downloads
filedropmaj.git-d5679b5.tar.bz2
152.37 KB
53 downloads
filedropmaj.git-d5679b5.zip
207.52 KB
23 downloads
filedropmaj.git-d72f459.tar.bz2
147.90 KB
55 downloads
filedropmaj.git-d72f459.zip
201.92 KB
18 downloads
filedropmaj.git-d958c91.tar.bz2
144.67 KB
55 downloads
filedropmaj.git-d958c91.zip
196.88 KB
25 downloads
filedropmaj.git-d96784f.tar.bz2
135.58 KB
52 downloads
filedropmaj.git-d96784f.zip
183.46 KB
20 downloads
filedropmaj.git-da4b73f.tar.bz2
152.62 KB
49 downloads
filedropmaj.git-da4b73f.zip
203.48 KB
21 downloads
filedropmaj.git-dd24240.tar.bz2
138.27 KB
51 downloads
filedropmaj.git-dd24240.zip
190.45 KB
80 downloads
filedropmaj.git-e11e772.tar.bz2
152.09 KB
50 downloads
filedropmaj.git-e11e772.zip
211.33 KB
20 downloads
filedropmaj.git-e61478e.tar.bz2
135.95 KB
54 downloads
filedropmaj.git-e61478e.zip
183.91 KB
21 downloads
filedropmaj.git-e7a2547.tar.bz2
133.80 KB
49 downloads
filedropmaj.git-e7a2547.zip
180.05 KB
24 downloads
filedropmaj.git-e8a3b95.tar.bz2
138.15 KB
56 downloads
filedropmaj.git-e8a3b95.zip
191.04 KB
19 downloads
filedropmaj.git-eac86d5.tar.bz2
155.65 KB
51 downloads
filedropmaj.git-eac86d5.zip
208.28 KB
22 downloads
filedropmaj.git-ed83bf9.tar.bz2
135.16 KB
54 downloads
filedropmaj.git-ed83bf9.zip
182.91 KB
24 downloads
filedropmaj.git-ee50d40.tar.bz2
135.59 KB
57 downloads
filedropmaj.git-ee50d40.zip
183.48 KB
25 downloads
filedropmaj.git-efdb4df.tar.bz2
155.87 KB
58 downloads
filedropmaj.git-efdb4df.zip
208.72 KB
24 downloads
filedropmaj.git-f1554f8.tar.bz2
151.30 KB
57 downloads
filedropmaj.git-f1554f8.zip
206.22 KB
25 downloads
filedropmaj.git-f72a07b.tar.bz2
153.44 KB
56 downloads
filedropmaj.git-f72a07b.zip
212.11 KB
26 downloads
filedropmaj.git-f7ea5a1.tar.bz2
147.46 KB
56 downloads
filedropmaj.git-f7ea5a1.zip
201.32 KB
26 downloads
filedropmaj.git-f8a7353.tar.bz2
138.49 KB
56 downloads
filedropmaj.git-f8a7353.zip
190.66 KB
27 downloads
filedropmaj.git-fb84a8d.tar.bz2
137.61 KB
61 downloads
filedropmaj.git-fb84a8d.zip
190.70 KB
28 downloads
filedropmaj.git-fdcf5d3.tar.bz2
152.34 KB
60 downloads
filedropmaj.git-fdcf5d3.zip
207.53 KB
27 downloads
filedropmaj.git-feca42d.tar.bz2
132.90 KB
60 downloads
filedropmaj.git-feca42d.zip
179.44 KB
30 downloads