maj.world

maj.world

Git

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