maj.world

maj.world

Git

This blob has been accessed 432 times via Git panel.

  1. <?php
  2.  
  3. ini_set("session.use_trans_sid","0");
  4.  
  5. session_start();
  6.  
  7. header("Cache-control: private");
  8.  
  9. error_reporting(E_ERROR);
  10.  
  11. if (isset($_SESSION['logged_in']) and ($_SESSION['user_agent'] != $_SERVER['HTTP_USER_AGENT'])) {
  12.         header("Location: login.php");
  13. }
  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.         $_REQUEST = stripslashes_array($_REQUEST);
  28. }
  29.  
  30. if (isset($_REQUEST['entry']) and !empty($_REQUEST['entry'])) {
  31.         $req_entry = trim($_REQUEST['entry']);
  32. }
  33.  
  34. if (isset($_REQUEST['show']) and !empty($_REQUEST['show'])) {
  35.         $req_show = trim($_REQUEST['show']);
  36. }
  37.  
  38. if (isset($_REQUEST['find']) and !empty($_REQUEST['find'])) {
  39.         $req_find = trim($_REQUEST['find']);
  40.         $req_find = str_replace(" ","-",$req_find);
  41.         $req_find = strtolower($req_find);
  42.         $req_find = strip_tags($req_find);
  43. }
  44.  
  45. if (isset($_REQUEST['category']) and !empty($_REQUEST['category'])) {
  46.         $req_category = trim($_REQUEST['category']);
  47.         $req_category = str_replace(" ","-",$req_category);
  48.         $req_category = strtolower($req_category);
  49.         $req_category = strip_tags($req_category);
  50. }
  51.  
  52. if (isset($_REQUEST['archive']) and !empty($_REQUEST['archive'])) {
  53.         $req_archive = trim($_REQUEST['archive']);
  54. }
  55.  
  56. if (isset($_REQUEST['author']) and !empty($_REQUEST['author'])) {
  57.         $req_author = trim($_REQUEST['author']);
  58.         $req_author = str_replace(" ","-",$req_author);
  59.         $req_author = strtolower($req_author);
  60.         $req_author = strip_tags($req_author);
  61. }
  62.  
  63. if (file_exists("data/offset.txt")) {
  64.         $offset = file_get_contents("data/offset.txt");
  65. }
  66. else {
  67.         $offset = 0;
  68. }
  69.  
  70. if (file_exists("data/increase.txt")) {
  71.         $increase = file_get_contents("data/increase.txt");
  72. }
  73. else {
  74.         $increase = 5;
  75. }
  76.  
  77. if (file_exists("data/bb.txt") and file_exists("data/avatar.txt")) {
  78.         $wmain = "610";
  79. }
  80. else {
  81.         $wmain = "525";
  82. }
  83.  
  84. $wside = "175";
  85. $wspace = "10";
  86.  
  87. $wtable = $wside + $wspace + $wmain + $wspace + $wside;
  88.  
  89. $default_blog_title = "My Activity Journal";
  90. $default_username = "maj";
  91. $default_password = "php";
  92. $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">Open Source</a> blog written from scratch as a spare time family project by <a href="http://psylocke.org/" target="_maj">Psylocke</a>, <a href="http://gaffud.com/" target="_maj">Magie</a>, and <a href="http://engels.mortega.net/" target="_maj">Engels</a> Antonio.';
  93. $default_blog_author = "My Activity Journal";
  94.  
  95. if (!file_exists("data")) {
  96.         mkdir("data");
  97. }
  98.  
  99. if (!file_exists("data/.htaccess")) {
  100.         $htaccess = "Order deny,allow\nDeny from all";
  101.         $fp_htaccess_txt = fopen("data/.htaccess","w");
  102.         fwrite($fp_htaccess_txt,$htaccess);
  103.         fclose($fp_htaccess_txt);
  104. }
  105.  
  106. if (!file_exists("data/title.txt")) {
  107.         $fp_default_title_txt = fopen("data/title.txt","w");
  108.         fwrite($fp_default_title_txt,$default_blog_title);
  109.         fclose($fp_default_title_txt);
  110. }
  111.  
  112. if (!file_exists("data/username.txt")) {
  113.         $fp_htaccess_txt = fopen("data/username.txt","w");
  114.         fwrite($fp_htaccess_txt,$default_username);
  115.         fclose($fp_htaccess_txt);
  116. }
  117.  
  118. if (!file_exists("data/password.txt")) {
  119.         $default_password = sha1($default_password);
  120.         $default_password = md5($default_password);
  121.         $default_password = crypt($default_password,$default_password);
  122.         $fp_htaccess_txt = fopen("data/password.txt","w");
  123.         fwrite($fp_htaccess_txt,$default_password);
  124.         fclose($fp_htaccess_txt);
  125. }
  126.  
  127. if (!file_exists("data/profile.php")) {
  128.         $fp_default_profile_txt = fopen("data/profile.php","w");
  129.         fwrite($fp_default_profile_txt,$default_blog_profile);
  130.         fclose($fp_default_profile_txt);
  131. }
  132.  
  133. if (!file_exists("data/author.txt")) {
  134.         $fp_default_author_txt = fopen("data/author.txt","w");
  135.         fwrite($fp_default_author_txt,$default_blog_author);
  136.         fclose($fp_default_author_txt);
  137. }
  138.  
  139. $default_title = file_get_contents("data/title.txt");
  140. $login_username = file_get_contents("data/username.txt");
  141.  
  142. if (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) {
  143.  
  144.         if (file_exists("data/hits.txt")) {
  145.                 $global_hits_count = file_get_contents("data/hits.txt");
  146.         }
  147.         else {
  148.                 $global_hits_count = "0";
  149.         }
  150.  
  151.         $global_hits_count = $global_hits_count + 1;
  152.  
  153.         $global_hits_file = fopen("data/hits.txt","w");
  154.         fwrite($global_hits_file,$global_hits_count);
  155.         fclose($global_hits_file);
  156. }
  157.  
  158. if (@ereg("Google",$_SERVER['HTTP_USER_AGENT'])) {
  159.  
  160.         if (file_exists("data/google.txt")) {
  161.                 $google_hits_count = file_get_contents("data/google.txt");
  162.         }
  163.         else {
  164.                 $google_hits_count = "0";
  165.         }
  166.  
  167.         $google_hits_count = $google_hits_count + 1;
  168.  
  169.         $google_hits_file = fopen("data/google.txt","w");
  170.         fwrite($google_hits_file,$google_hits_count);
  171.         fclose($google_hits_file);
  172. }
  173.  
  174. function str_rand($length = 8,$seeds = 'abcdefghijklmnopqrstuvwxyz0123456789') {
  175.         $str = '';
  176.         $seeds_count = strlen($seeds);
  177.  
  178.         list($usec,$sec) = explode(' ',microtime());
  179.         $seed = (float) $sec + ((float) $usec * 100000);
  180.         mt_srand($seed);
  181.  
  182.         for ($i = 0; $length > $i; $i++) {
  183.                 $str .= $seeds{mt_rand(0,$seeds_count - 1)};
  184.         }
  185.         return $str;
  186. }
  187.  
  188. function rmdirr($recurse_dirname) {
  189.  
  190.         if (!file_exists($recurse_dirname)) {
  191.                 return false;
  192.         }
  193.  
  194.         if (is_file($recurse_dirname)) {
  195.                 return unlink($recurse_dirname);
  196.         }
  197.  
  198.         $recurse_dir = dir($recurse_dirname);
  199.  
  200.         while (false !== $recurse_entry = $recurse_dir->read()) {
  201.  
  202.                 if ($recurse_entry == '.' || $recurse_entry == '..') {
  203.                         continue;
  204.                 }
  205.  
  206.                 rmdirr("$recurse_dirname/$recurse_entry");
  207.         }
  208.  
  209.         $recurse_dir->close();
  210.         return rmdir($recurse_dirname);
  211. }
  212.  
  213. if (isset($_REQUEST['download']) and !empty($_REQUEST['download'])) {
  214.         ini_set("zlib.output_compression","off");
  215.         $dl_file = str_replace("../","",@$_REQUEST['download']);
  216.         go_download($dl_file);
  217.         die();
  218. }
  219.  
  220. function go_download($dl_file) {
  221.  
  222.         $req_entry = trim($_REQUEST['entry']);
  223.  
  224.         if (isset($_REQUEST['type']) and !empty($_REQUEST['type']) and ($_REQUEST['type'] == "pdf")) {
  225.                 $dl_path = "data/items/$req_entry/pdf/file";
  226.                 $count_path = "data/items/$req_entry/pdf/count";
  227.                 $count_file = "dl.txt";
  228.         }
  229.  
  230.         if (isset($_REQUEST['type']) and !empty($_REQUEST['type']) and ($_REQUEST['type'] == "filedrop")) {
  231.                 $dl_path = "data/items/$req_entry/filedrop/files";
  232.                 $count_path = "data/items/$req_entry/filedrop/count";
  233.                 $count_file = "{$dl_file}.txt";
  234.         }
  235.  
  236.         $dl_file_size = filesize("$dl_path/$dl_file");
  237.  
  238.         header("Cache-Control: ");
  239.         header("Pragma: ");
  240.         header("Content-type: application/octet-stream");
  241.         header("Content-Disposition: attachment; filename=$dl_file");
  242.         header("Content-length: $dl_file_size");
  243.  
  244.         $get_it = fopen("$dl_path/$dl_file","rb");
  245.  
  246.         while (!feof($get_it)) {
  247.                 $buf = fread($get_it,4096);
  248.                 echo $buf;
  249.                 $bytes_sent += strlen($buf);
  250.         }
  251.  
  252.         if ($bytes_sent == $dl_file_size) {
  253.  
  254.                 if (!file_exists($count_path)) {
  255.                         mkdir($count_path);
  256.                 }
  257.  
  258.                 $unique_downloads = "$count_path/$count_file";
  259.  
  260.                 if (file_exists($unique_downloads)) {
  261.                         $count_unique_downloads = file_get_contents($unique_downloads);
  262.                 }
  263.                 else {
  264.                         $count_unique_downloads = "0";
  265.                 }
  266.  
  267.                 $count_unique_downloads = $count_unique_downloads + 1;
  268.  
  269.                 $fp_unique_downloads = fopen($unique_downloads,"w");
  270.                 fwrite($fp_unique_downloads,$count_unique_downloads);
  271.                 fclose($fp_unique_downloads);
  272.         }
  273. }
  274.  
  275. function entry2date($f_entry) {
  276.  
  277.         $f_entry_year = substr($f_entry,0,4);
  278.         $f_entry_month = substr($f_entry,4,2);
  279.         $f_entry_day = substr($f_entry,6,2);
  280.         $f_entry_hour = substr($f_entry,8,2);
  281.         $f_entry_min = substr($f_entry,10,2);
  282.         $f_entry_sec = substr($f_entry,12,2);
  283.  
  284.         echo date("l, M j, Y, g:i A",mktime($f_entry_hour,$f_entry_min,$f_entry_sec,$f_entry_month,$f_entry_day,$f_entry_year));
  285. }
  286.  
  287. if (isset($req_entry) and !empty($req_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'])) {
  288.  
  289.                 $comment_dir = "data/items/$req_entry/comments/pending/{$_REQUEST['comment']}";
  290.  
  291.                 $login_key = file_get_contents("$comment_dir/key.txt");
  292.  
  293.                 if ($_REQUEST['key'] == $login_key) {
  294.  
  295.                         if ($_REQUEST['action'] == "approve") {
  296.  
  297.                                 $live_dir = "data/items/$req_entry/comments/live/{$_REQUEST['comment']}";
  298.  
  299.                                 if (!file_exists("data/items/$req_entry/comments/live")) {
  300.                                         mkdir("data/items/$req_entry/comments/live");
  301.                                 }
  302.  
  303.                                 if (!file_exists("data/items/$req_entry/comments/live/{$_REQUEST['comment']}")) {
  304.                                         mkdir("data/items/$req_entry/comments/live/{$_REQUEST['comment']}");
  305.                                 }
  306.  
  307.                                 rename($comment_dir,$live_dir);
  308.  
  309.                                 unlink("$live_dir/key.txt");
  310.  
  311.                                 $cmonth = date("Ym",time() + $offset);
  312.  
  313.                                 if (!file_exists("data/comments/latest")) {
  314.                                         mkdir("data/comments/latest");
  315.                                 }
  316.  
  317.                                 if (!file_exists("data/comments/latest/$cmonth")) {
  318.                                         mkdir("data/comments/latest/$cmonth");
  319.                                 }
  320.  
  321.                                 if (!file_exists("data/comments/latest/$cmonth/$req_entry")) {
  322.                                         mkdir("data/comments/latest/$cmonth/$req_entry");
  323.                                 }
  324.  
  325.                                 if (!file_exists("data/comments/latest/$cmonth/$req_entry/{$_REQUEST['comment']}")) {
  326.                                         mkdir("data/comments/latest/$cmonth/$req_entry/{$_REQUEST['comment']}");
  327.                                 }
  328.  
  329.                                 $private_categories = "0";
  330.  
  331.                                 if (file_exists("data/items/$req_entry/categories")) {
  332.                        
  333.                                         if ($dh_entry_categories = opendir("data/items/$req_entry/categories")) {
  334.                        
  335.                                                 while (($entry_category = readdir($dh_entry_categories)) !== false) {
  336.                        
  337.                                                         if ($entry_category != "." && $entry_category != "..") {
  338.                        
  339.                                                                 if (file_exists("data/categories/$entry_category/private.txt")) {
  340.                                                                         $private_categories = $private_categories + 1;
  341.                                                                 }
  342.                                                         }
  343.                                                 }
  344.                                                 closedir($dh_entry_categories);
  345.                                         }
  346.                                 }
  347.  
  348.                                 if (file_exists("data/members/active") and file_exists("data/ml.txt") and file_exists("data/email.txt") and !file_exists("data/items/$req_entry/private.txt") and ($private_categories == "0")) {
  349.  
  350.                                         if (file_exists("data/ml-reply2.txt")) {
  351.                                                 $ml_reply2 = file_get_contents("data/ml-reply2.txt");
  352.                                         }
  353.  
  354.                                         if (file_exists("data/ml-from.txt")) {
  355.                                                 $ml_from = $ml_reply2;
  356.                                         }
  357.                                         else {
  358.                                                 $ml_from = file_get_contents("$live_dir/email.txt");
  359.                                         }
  360.  
  361.                                         $ml_from = str_replace(" at ","@",$ml_from);
  362.  
  363.                                         $ml_from_firstname = file_get_contents("$live_dir/firstname.txt");
  364.                                         $ml_from_lastname = file_get_contents("$live_dir/lastname.txt");
  365.  
  366.                                         $ml_from = '"' . "$ml_from_firstname $ml_from_lastname" . '" <' . $ml_from . '>';
  367.  
  368.                                         $ml_subject = file_get_contents("data/items/$req_entry/title.txt");
  369.  
  370.                                         if (file_exists("data/ml-prepend.txt")) {
  371.                                                 $ml_prepend = file_get_contents("data/ml-prepend.txt");
  372.                                                 $ml_subject = str_replace($ml_prepend,"",$ml_subject);
  373.                                                 $ml_subject = $ml_prepend . " " . $ml_subject;
  374.                                         }
  375.  
  376.                                         $ml_subject = str_replace("Re:","",$ml_subject);
  377.                                         $ml_subject = "Re: " . $ml_subject;
  378.  
  379.                                         $ml_mailer = 'MAJ/0.14 (PHP/' . phpversion() . ')';
  380.  
  381.                                         $ml_body = file_get_contents("$live_dir/comment.txt");
  382.                                         $ml_body = str_replace('<br />',"\n",$ml_body);
  383.                                         $ml_body = str_replace('<img src="images/smileys/crying.png" border="0">',':((',$ml_body);
  384.                                         $ml_body = str_replace('<img src="images/smileys/frown.png" border="0">',':(',$ml_body);
  385.                                         $ml_body = str_replace('<img src="images/smileys/indifferent.png" border="0">',':|',$ml_body);
  386.                                         $ml_body = str_replace('<img src="images/smileys/laughing.png" border="0">',':D',$ml_body);
  387.                                         $ml_body = str_replace('<img src="images/smileys/lick.png" border="0">',':P',$ml_body);
  388.                                         $ml_body = str_replace('<img src="images/smileys/ohno.png" border="0">',':O',$ml_body);
  389.                                         $ml_body = str_replace('<img src="images/smileys/smile.png" border="0">',':)',$ml_body);
  390.                                         $ml_body = str_replace('<img src="images/smileys/surprised.png" border="0">','=)',$ml_body);
  391.                                         $ml_body = str_replace('<img src="images/smileys/undecided.png" border="0">',':\\',$ml_body);
  392.                                         $ml_body = str_replace('<img src="images/smileys/wink.png" border="0">',';)',$ml_body);
  393.                                         $ml_body = str_replace('&amp;','&',$ml_body);
  394.                                         $ml_body = str_replace('&lt;','<',$ml_body);
  395.                                         $ml_body = str_replace('&gt;','>',$ml_body);
  396.                                         $ml_body = str_replace('&reg;','(R)',$ml_body);
  397.  
  398.                                         if (file_exists("data/pf.txt") and file_exists("data/pf-badwords.txt")) {
  399.  
  400.                                                 $badwords = file_get_contents("data/pf-badwords.txt");
  401.  
  402.                                                 if (file_exists("data/pf-censor.txt")) {
  403.                                                         $censor = file_get_contents("data/pf-censor.txt");
  404.                                                 }
  405.                                                 else {
  406.                                                         $censor = "[expletive]";
  407.                                                 }
  408.  
  409.                                                 $ml_body = preg_replace("/\b($badwords)\b/i",$censor,$ml_body);
  410.                                         }
  411.  
  412.                                         if (file_exists("data/ml-header.txt")) {
  413.                                                 $ml_header = file_get_contents("data/ml-header.txt");
  414.                                                 $ml_body = $ml_header . "\n\n" . $ml_body;
  415.                                         }
  416.  
  417.                                         $ml_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  418.                                         $ml_url = str_replace('//','/',$ml_url);
  419.                                         $ml_url = "http://$ml_url/index.php?entry=$req_entry&show=comments";
  420.  
  421.                                         $ml_body = $ml_body . "\n\nPlease visit the following URL for the full thread:\n\n" . $ml_url;
  422.  
  423.                                         if (file_exists("data/items/$req_entry/member.txt")) {
  424.                                                 $ml_body = $ml_body . "\n\nYou need to login first to view the entry or to add a comment.";
  425.                                         }
  426.  
  427.                                         if (file_exists("data/ml-footer.txt")) {
  428.                                                 $ml_footer = file_get_contents("data/ml-footer.txt");
  429.                                                 $ml_body = $ml_body . "\n\n" . $ml_footer;
  430.                                         }
  431.  
  432.  
  433.                                         if ($dh_ml_member = opendir("data/members/active")) {
  434.                                                 while (($ml_member = readdir($dh_ml_member)) !== false) {
  435.                                                         if ($ml_member != "." && $ml_member != "..") {
  436.  
  437.                                                                 if (file_exists("data/members/active/$ml_member/noml.txt")) {
  438.                                                                         continue;
  439.                                                                 }
  440.  
  441.                                                                 if (file_exists("data/members/active/$ml_member/vacation.txt")) {
  442.                                                                         continue;
  443.                                                                 }
  444.  
  445.                                                                 $ml_to_firstname = file_get_contents("data/members/active/$ml_member/firstname.txt");
  446.                                                                 $ml_to_lastname = file_get_contents("data/members/active/$ml_member/lastname.txt");
  447.                                                                 $ml_to = file_get_contents("data/members/active/$ml_member/email.txt");
  448.                                                                 $ml_to = '"' . "$ml_to_firstname $ml_to_lastname" . '" <'. $ml_to . '>';
  449.  
  450.                                                                 if (file_exists("data/ml-reply2.txt")) {
  451.                                                                         mail($ml_to,$ml_subject,$ml_body,
  452.                                                                         "From: $ml_from\r\n" .
  453.                                                                         "Reply-To: $ml_reply2\r\n" .
  454.                                                                         "References: $req_entry\r\n" .
  455.                                                                         "X-Mailer: $ml_mailer");
  456.                                                                 }
  457.                                                                 else {
  458.                                                                         mail($ml_to,$ml_subject,$ml_body,
  459.                                                                         "From: $ml_from\r\n" .
  460.                                                                         "References: $req_entry\r\n" .
  461.                                                                         "X-Mailer: $ml_mailer");
  462.                                                                 }
  463.                                                         }
  464.                                                 }
  465.                                                 closedir($dh_ml_member);
  466.                                         }
  467.                                 }
  468.  
  469.                         }
  470.  
  471.                         if ($_REQUEST['action'] == "delete") {
  472.                                 rmdirr($comment_dir);
  473.                         }
  474.  
  475.                         $pending_comment_flag_dir = $req_entry;
  476.  
  477.                         $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag_dir/count.txt","r");
  478.                         $comment_count_value = fread($fp_comment_count_txt,filesize("data/comments/pending/$pending_comment_flag_dir/count.txt"));
  479.                         fclose($fp_comment_count_txt);
  480.  
  481.                         if ($comment_count_value <= 1) {
  482.                                 rmdirr("data/comments/pending/$pending_comment_flag_dir");
  483.                         }
  484.                         else {
  485.                                 $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag_dir/count.txt","r");
  486.                                 $comment_count_value = fread($fp_comment_count_txt,filesize("data/comments/pending/$pending_comment_flag_dir/count.txt"));
  487.                                 fclose($fp_comment_count_txt);
  488.  
  489.                                 $comment_count_value = $comment_count_value - 1;
  490.  
  491.                                 $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag_dir/count.txt","w");
  492.                                 fwrite($fp_comment_count_txt,$comment_count_value);
  493.                                 fclose($fp_comment_count_txt);
  494.                         }
  495.  
  496.                         header("Location: index.php?entry=$req_entry&show=comments");
  497.                 }
  498. }
  499.  
  500. if (isset($req_entry) and !empty($req_entry)) {
  501.  
  502.         if (file_exists("data/items/$req_entry")) {
  503.  
  504.                 $title = file_get_contents("data/items/$req_entry/title.txt");
  505.  
  506.                 echo "<title>$title</title>";
  507.  
  508.                 if ((!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  509.  
  510.                         if (file_exists("data/items/$req_entry/views.txt")) {
  511.                                 $count_views = file_get_contents("data/items/$req_entry/views.txt");
  512.                         }
  513.                         else {
  514.                                 $count_views = "0";
  515.                         }
  516.  
  517.                         $count_views = $count_views + 1;
  518.  
  519.                         $fp_views = fopen("data/items/$req_entry/views.txt","w");
  520.                         fwrite($fp_views,$count_views);
  521.                         fclose($fp_views);
  522.                 }
  523.                
  524.                 if (isset($req_show) and !empty($req_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']))) {
  525.                
  526.                         if (!file_exists("data/items/$req_entry/comments")) {
  527.                                 mkdir("data/items/$req_entry/comments");
  528.                         }
  529.  
  530.                         if (!file_exists("data/items/$req_entry/comments/pending")) {
  531.                                 mkdir("data/items/$req_entry/comments/pending");
  532.                         }
  533.  
  534.                         if (!file_exists("data/items/$req_entry/comments/live")) {
  535.                                 mkdir("data/items/$req_entry/comments/live");
  536.                         }
  537.  
  538.                         $timestamp = date("l, M j, Y, g:i A",time() + $offset);
  539.        
  540.                         $comment_entry_dir = date("YmdHis",time() + $offset);
  541.        
  542.                         mkdir("data/items/$req_entry/comments/pending/$comment_entry_dir");
  543.        
  544.                         $body_content = ucfirst($_POST['new_comment']);
  545.                         $body_content = htmlentities($body_content,ENT_NOQUOTES);
  546.                         $body_content = str_replace("\n",'<br />',$body_content);
  547.                         $body_content = trim($body_content);
  548.                         $body_content = str_replace(':((','<img src="images/smileys/crying.png" border="0">',$body_content);
  549.                         $body_content = str_replace(':(','<img src="images/smileys/frown.png" border="0">',$body_content);
  550.                         $body_content = str_replace(':|','<img src="images/smileys/indifferent.png" border="0">',$body_content);
  551.                         $body_content = str_replace(':D','<img src="images/smileys/laughing.png" border="0">',$body_content);
  552.                         $body_content = str_replace(':P','<img src="images/smileys/lick.png" border="0">',$body_content);
  553.                         $body_content = str_replace(':O','<img src="images/smileys/ohno.png" border="0">',$body_content);
  554.                         $body_content = str_replace(':)','<img src="images/smileys/smile.png" border="0">',$body_content);
  555.                         $body_content = str_replace('=)','<img src="images/smileys/surprised.png" border="0">',$body_content);
  556.                         $body_content = str_replace(':\\','<img src="images/smileys/undecided.png" border="0">',$body_content);
  557.                         $body_content = str_replace(';)','<img src="images/smileys/wink.png" border="0">',$body_content);
  558.  
  559.                         $fp_body_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/comment.txt","w");
  560.                         fwrite($fp_body_txt,$body_content);
  561.                         fclose($fp_body_txt);
  562.  
  563.                         $fp_timestamp_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/timestamp.txt","w");
  564.                         fwrite($fp_timestamp_txt,$timestamp);
  565.                         fclose($fp_timestamp_txt);
  566.  
  567.                         $fp_firstname_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/firstname.txt","w");
  568.                         $firstname = strtolower($_POST['firstname']);
  569.                         $firstname = ucwords($firstname);
  570.                         $firstname = trim($firstname);
  571.                         $firstname = htmlentities($firstname,ENT_NOQUOTES);
  572.                         fwrite($fp_firstname_txt,$firstname);
  573.                         fclose($fp_firstname_txt);
  574.  
  575.                         $fp_lastname_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/lastname.txt","w");
  576.                         $lastname = strtolower($_POST['lastname']);
  577.                         $lastname = ucwords($lastname);
  578.                         $lastname = trim($lastname);
  579.                         $lastname = htmlentities($lastname,ENT_NOQUOTES);
  580.                         fwrite($fp_lastname_txt,$lastname);
  581.                         fclose($fp_lastname_txt);
  582.  
  583.                         $fp_email_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/email.txt","w");
  584.                         $email = strtolower($_POST['email']);
  585.                         $email = trim($email);
  586.                         $email = htmlentities($email,ENT_NOQUOTES);
  587.                         fwrite($fp_email_txt,$email);
  588.                         fclose($fp_email_txt);
  589.  
  590.                         if (isset($_POST['url']) and !empty($_POST['url']) and (ereg("\.",$_POST['url']))) {
  591.                                 $fp_url_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/url.txt","w");
  592.                                 $url = str_replace("http://","",$_POST['url']);
  593.                                 $url = strtolower($url);
  594.                                 $url = trim($url);
  595.                                 $url = "http://" . $url;
  596.                                 $url = htmlentities($url,ENT_NOQUOTES);
  597.                                 fwrite($fp_url_txt,$url);
  598.                                 fclose($fp_url_txt);
  599.                         }
  600.  
  601.                         if (isset($_POST['cauthor']) and !empty($_POST['cauthor'])) {
  602.                                 $fp_cauthor_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/author.txt","w");
  603.                                 fwrite($fp_cauthor_txt,$_POST['cauthor']);
  604.                                 fclose($fp_cauthor_txt);
  605.                         }
  606.  
  607.                         $key_rand = str_rand(14);
  608.                         $fp_key_txt = fopen("data/items/$req_entry/comments/pending/$comment_entry_dir/key.txt","w");
  609.                         fwrite($fp_key_txt,$key_rand);
  610.                         fclose($fp_key_txt);
  611.  
  612.                         $comment_quote = ucfirst($_POST['new_comment']);
  613.        
  614.                         $sig_author_file = "data/author.txt";
  615.                         $fp_sig_author = fopen($sig_author_file,"r");
  616.                         $sig_author = fread($fp_sig_author,filesize($sig_author_file));
  617.                         fclose($fp_sig_author);
  618.        
  619.                         $sig_url = $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']) . "/";
  620.                         $sig_url = str_replace('//','/',$sig_url);
  621.                         $sig_url = "http://" . $sig_url;
  622.  
  623.                         $email_to = strtolower($_POST['email']);
  624.                         $email_to = '"' . "$firstname $lastname" . '" <' . $email_to . '>';
  625.  
  626.                         if (file_exists("data/email.txt")) {
  627.                                 $from_email_author = file_get_contents("data/author.txt");
  628.                                 $from_email = file_get_contents("data/email.txt");
  629.                                 $from_email = '"' . $from_email_author . '" <' . $from_email . '>';
  630.                         }
  631.  
  632.                         $mailer = 'MAJ/0.14 (PHP/' . phpversion() . ')';
  633.        
  634.                         $commented_entry_title_file = "data/items/$req_entry/title.txt";
  635.                         $fp_commented_entry_title = fopen($commented_entry_title_file,"r");
  636.                         $commented_entry_title = fread($fp_commented_entry_title,filesize($commented_entry_title_file));
  637.                         fclose($fp_commented_entry_title);
  638.  
  639.                         if (!file_exists("data/nak.txt") and file_exists("data/email.txt")) {
  640.  
  641.                                 $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=$req_entry&show=comments\n\nThanks again! =)\n\n--\n$sig_author\n$sig_url\n";
  642.                                 $comment_thanks = wordwrap($comment_thanks);
  643.  
  644.                                 mail($email_to,"Thanks for sharing your thoughts!",$comment_thanks,
  645.                                         "From: $from_email\r\n" .
  646.                                         "Reply-To: $from_email\r\n" .
  647.                                         "X-Mailer: $mailer");
  648.                         }
  649.  
  650.                         if (file_exists("data/email.txt") and !file_exists("data/xscreen.txt")) {
  651.  
  652.                                 $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=$req_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=$req_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.";
  653.                                 $comment_notice = wordwrap($comment_notice);
  654.        
  655.                                 mail($from_email,"Pending Comment",$comment_notice,
  656.                                         "From: $from_email\r\n" .
  657.                                         "Reply-To: $from_email\r\n" .
  658.                                         "X-Mailer: $mailer");
  659.                         }
  660.  
  661.                         if (!file_exists("data/comments")) {
  662.                                 mkdir("data/comments");
  663.                         }
  664.  
  665.                         if (!file_exists("data/comments/pending")) {
  666.                                 mkdir("data/comments/pending");
  667.                         }
  668.  
  669.                         $pending_comment_flag = $req_entry;
  670.        
  671.                         if (!file_exists("data/comments/pending/$pending_comment_flag")) {
  672.                                 mkdir("data/comments/pending/$pending_comment_flag");
  673.                         }
  674.  
  675.                         if (file_exists("data/comments/pending/$pending_comment_flag/count.txt")) {
  676.                                 $comment_count_value = file_get_contents("data/comments/pending/$pending_comment_flag/count.txt");
  677.                         }
  678.                         else {
  679.                                 $comment_count_value = "0";
  680.                         }
  681.  
  682.                         $comment_count_value = $comment_count_value + 1;
  683.  
  684.                         $fp_comment_count_txt = fopen("data/comments/pending/$pending_comment_flag/count.txt","w");
  685.                         fwrite($fp_comment_count_txt,$comment_count_value);
  686.                         fclose($fp_comment_count_txt);
  687.                 }
  688.         }
  689. }
  690. else {
  691.         echo "<title>$default_title</title>";
  692. }
  693.  
  694. if (file_exists("data/comments/pending") and file_exists("data/xscreen.txt")) {
  695.  
  696.         if ($dh_xscreen_comments = opendir("data/comments/pending")) {
  697.  
  698.                 while (($xscreen_comment = readdir($dh_xscreen_comments)) !== false) {
  699.  
  700.                         if ($xscreen_comment != "." && $xscreen_comment != "..") {
  701.                                 $xscreen_comments[] = $xscreen_comment;
  702.                         }
  703.                 }
  704.                 closedir($dh_xscreen_comments);
  705.         }
  706.  
  707.         rsort($xscreen_comments);
  708.         reset($xscreen_comments);
  709.  
  710.         if (count($xscreen_comments) > 0) {
  711.  
  712.                 foreach ($xscreen_comments as $xscreen_dir) {
  713.  
  714.                         if ($dh_xscreen_pending = opendir("data/items/$xscreen_dir/comments/pending")) {
  715.  
  716.                                 while (($xscreen_entry = readdir($dh_xscreen_pending)) !== false) {
  717.                                        
  718.                                         if ($xscreen_entry != "." && $xscreen_entry != "..") {
  719.  
  720.                                                 $xscreen_key = file_get_contents("data/items/$xscreen_dir/comments/pending/$xscreen_entry/key.txt");
  721.  
  722.                                                 header("Location: index.php?entry={$xscreen_dir}&comment={$xscreen_entry}&key={$xscreen_key}&action=approve");
  723.                                         }
  724.                                 }
  725.                         }
  726.                 }
  727.  
  728.         }
  729. }
  730.  
  731. ?>
  732.  
  733. <?php
  734.  
  735. if (isset($req_entry) and !empty($req_entry) and file_exists("data/items/$req_entry")) {
  736.  
  737.         $private_categories = "0";
  738.  
  739.         if (file_exists("data/items/$req_entry/categories")) {
  740.                        
  741.                 if ($dh_entry_categories = opendir("data/items/$req_entry/categories")) {
  742.                        
  743.                         while (($entry_category = readdir($dh_entry_categories)) !== false) {
  744.                        
  745.                                 if ($entry_category != "." && $entry_category != "..") {
  746.                        
  747.                                         if (file_exists("data/categories/$entry_category/private.txt")) {
  748.                                                 $private_categories = $private_categories + 1;
  749.                                         }
  750.                                 }
  751.                         }
  752.                         closedir($dh_entry_categories);
  753.                 }
  754.         }
  755.  
  756.  
  757.         if ($private_categories == "0") {
  758.  
  759.                 if (!file_exists("data/items/$req_entry/passwd.txt")) {
  760.  
  761.                         if (!file_exists("data/items/$req_entry/private.txt")) {
  762.  
  763.                                 $description = file_get_contents("data/items/$req_entry/body.txt");
  764.                                 $description = strip_tags($description);
  765.                                 $description = html_entity_decode($description);
  766.                                 $description = str_replace("&","&amp;",$description);
  767.                                 $description = str_replace("<","&lt;",$description);
  768.                                 $description = str_replace(">","&gt;",$description);
  769.                                 $description = str_replace("<br />"," ",$description);
  770.                                 $description = str_replace("<br>"," ",$description);
  771.                                 $description = str_replace("\r"," ",$description);
  772.                                 $description = str_replace("\n"," ",$description);
  773.                                 $description = str_replace(chr(10)," ",$description);
  774.                                 $description = str_replace(chr(13)," ",$description);
  775.                                 $description = trim($description);
  776.                                 $description = substr($description,0,210);
  777.                                 $description = htmlentities($description,ENT_NOQUOTES);
  778.  
  779.                                 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"))))) {
  780.  
  781.                                         $badwords = file_get_contents("data/pf-badwords.txt");
  782.  
  783.                                         if (file_exists("data/pf-censor.txt")) {
  784.                                                 $censor = file_get_contents("data/pf-censor.txt");
  785.                                         }
  786.                                         else {
  787.                                                 $censor = "[expletive]";
  788.                                         }
  789.  
  790.                                         $description = preg_replace("/\b($badwords)\b/i",$censor,$description);
  791.                                 }
  792.  
  793.                                 echo "<meta name=\"description\" content=\"{$description}\">";
  794.                         }
  795.                 }
  796.         }
  797. }
  798.  
  799. ?>
  800.  
  801. <style>
  802.  
  803. body {
  804.         color: <?php
  805.                         if (file_exists("data/colors/font.txt")) {
  806.                                 $font_color = file_get_contents("data/colors/font.txt");
  807.                                 echo $font_color;
  808.                         }
  809.                         else {
  810.                                 echo "#666666";
  811.                         }
  812.         ?>;
  813.         margin: 0px 0px 10px 10px;
  814.         padding: 0px;
  815.         text-align: left;
  816.         font-family: <?php
  817.                                 if (file_exists("data/fonts/body.txt")) {
  818.                                         $font_body = file_get_contents("data/fonts/body.txt");
  819.                                         echo "{$font_body},";
  820.                                 }
  821.         ?> arial,helvetica,sans-serif;
  822.         background-color: <?php
  823.                                 if (file_exists("data/colors/bg.txt")) {
  824.                                         $background_color = file_get_contents("data/colors/bg.txt");
  825.                                         if ($background_color == "transparent") {
  826.                                                 echo "#ffffff";
  827.                                         }
  828.                                         else {
  829.                                                 echo $background_color;
  830.                                         }
  831.                                 }
  832.                                 else {
  833.                                         echo "#ffffff";
  834.                                 }
  835.         ?>;
  836.  
  837.         <?php
  838.         if (file_exists("images/background.gif") and !file_exists("images/background.jpg") and !file_exists("images/background.png")) { ?>
  839.                 background-image: url('images/background.gif');
  840.                 background-attachment: <?php if (file_exists("data/bg-scroll.txt")) { echo scroll; } else { echo fixed; } ?>;
  841.                 background-repeat: <?php if (file_exists("data/bg-repeat.txt")) { readfile("data/bg-repeat.txt"); } else { echo repeat; } ?>;
  842.                 background-position: <?php if (file_exists("data/bg-position.txt")) { readfile("data/bg-position.txt"); } else { echo "top left"; } ?>;
  843.         <?php
  844.         }
  845.         if (!file_exists("images/background.gif") and file_exists("images/background.jpg") and !file_exists("images/background.png")) { ?>
  846.                 background-image: url('images/background.jpg');
  847.                 background-attachment: <?php if (file_exists("data/bg-scroll.txt")) { echo scroll; } else { echo fixed; } ?>;
  848.                 background-repeat: <?php if (file_exists("data/bg-repeat.txt")) { readfile("data/bg-repeat.txt"); } else { echo repeat; } ?>;
  849.                 background-position: <?php if (file_exists("data/bg-position.txt")) { readfile("data/bg-position.txt"); } else { echo "top left"; } ?>;
  850.         <?php
  851.         }
  852.         if (!file_exists("images/background.gif") and !file_exists("images/background.jpg") and file_exists("images/background.png")) { ?>
  853.                 background-image: url('images/background.png');
  854.                 background-attachment: <?php if (file_exists("data/bg-scroll.txt")) { echo scroll; } else { echo fixed; } ?>;
  855.                 background-repeat: <?php if (file_exists("data/bg-repeat.txt")) { readfile("data/bg-repeat.txt"); } else { echo repeat; } ?>;
  856.                 background-position: <?php if (file_exists("data/bg-position.txt")) { readfile("data/bg-position.txt"); } else { echo "top left"; } ?>;
  857.         <?php
  858.         }
  859.         ?>
  860. }
  861.  
  862. p,td {
  863.         font-size: 11px;
  864. }
  865.  
  866. a {
  867.         font-weight: bold;
  868.         text-decoration: none;
  869. }
  870.  
  871. a:link {
  872.         color: <?php
  873.                         if (file_exists("data/colors/link.txt")) {
  874.                                 $a_link_color = file_get_contents("data/colors/link.txt");
  875.                                 echo $a_link_color;
  876.                         }
  877.                         else {
  878.                                 echo "#666666";
  879.                         }
  880.         ?>;
  881. }
  882.  
  883. a:visited {
  884.         color: <?php
  885.                         if (file_exists("data/colors/vlink.txt")) {
  886.                                 $a_visited_color = file_get_contents("data/colors/vlink.txt");
  887.                                 echo $a_visited_color;
  888.                         }
  889.                         else {
  890.                                 echo "#666666";
  891.                         }
  892.         ?>;
  893. }
  894.  
  895. a:hover {
  896.         color: <?php
  897.                         if (file_exists("data/colors/hover.txt")) {
  898.                                 $a_hover_color = file_get_contents("data/colors/hover.txt");
  899.                                 echo $a_hover_color;
  900.                         }
  901.                         else {
  902.                                 echo "#336699";
  903.                         }
  904.         ?>;
  905. }
  906.  
  907. a:active {
  908.         color: <?php
  909.                         if (file_exists("data/colors/hover.txt")) {
  910.                                 $a_active_color = file_get_contents("data/colors/hover.txt");
  911.                                 echo $a_active_color;
  912.                         }
  913.                         else {
  914.                                 echo "#336699";
  915.                         }
  916.         ?>;
  917. }
  918.  
  919. a.navlink:link,a.navlink:visited,a.navlink:active,a.navlink:hover {
  920.         font-weight: normal;
  921.         text-decoration: none;
  922. }
  923.  
  924. #panel_title {
  925.         font-family: <?php
  926.                                 if (file_exists("data/fonts/panel-title.txt")) {
  927.                                         $font_panel_title = file_get_contents("data/fonts/panel-title.txt");
  928.                                         echo "{$font_panel_title},";
  929.                                 }
  930.         ?> arial,helvetica,sans-serif;
  931.         font-size: 12px;
  932.         font-weight: bold;
  933.         color: <?php
  934.                         if (file_exists("data/colors/pt-font.txt")) {
  935.                                 $panel_title_font_color = file_get_contents("data/colors/pt-font.txt");
  936.                                 echo $panel_title_font_color;
  937.                         }
  938.                         else {
  939.                                 echo "#666666";
  940.                         }
  941.         ?>;
  942.         padding: 5px 5px 5px 5px;
  943.         background-color: <?php
  944.                                 if (file_exists("data/colors/pt-bg.txt")) {
  945.                                         $panel_title_background_color = file_get_contents("data/colors/pt-bg.txt");
  946.                                         echo $panel_title_background_color;
  947.                                 }
  948.                                 else {
  949.                                         echo "transparent";
  950.                                 }
  951.         ?>;
  952.         margin: 0px 0px 0px 0px;
  953.         border-color: <?php
  954.                                 if (file_exists("data/colors/border.txt")) {
  955.                                         $panel_title_border_color = file_get_contents("data/colors/border.txt");
  956.                                         echo $panel_title_border_color;
  957.                                 }
  958.                                 else {
  959.                                         echo "#cccccc";
  960.                                 }
  961.         ?>;
  962.         border-width: 1px 1px 0px 1px;
  963.         border-style: solid solid none solid;
  964. }
  965.  
  966. #panel_body {
  967.         font-family: <?php
  968.                                 if (file_exists("data/fonts/panel-body.txt")) {
  969.                                         $font_panel_body = file_get_contents("data/fonts/panel-body.txt");
  970.                                         echo "{$font_panel_body},";
  971.                                 }
  972.         ?> arial,helvetica,sans-serif;
  973.         font-size: 11px;
  974.         color: <?php
  975.                         if (file_exists("data/colors/pb-font.txt")) {
  976.                                 $panel_body_font_color = file_get_contents("data/colors/pb-font.txt");
  977.                                 echo $panel_body_font_color;
  978.                         }
  979.                         else {
  980.                                 echo "#666666";
  981.                         }
  982.         ?>;
  983.  
  984.         <?php
  985.                 if (file_exists("data/round.txt")) {
  986.                         echo 'padding: 5px 5px 2px 5px;';
  987.                 }
  988.                 else {
  989.                         echo 'padding: 5px 5px 5px 5px;';
  990.                 }
  991.         ?>
  992.         background-color: <?php
  993.                                 if (file_exists("data/colors/pb-bg.txt")) {
  994.                                         $panel_body_background_color = file_get_contents("data/colors/pb-bg.txt");
  995.                                         echo $panel_body_background_color;
  996.                                 }
  997.                                 else {
  998.                                         echo "transparent";
  999.                                 }
  1000.         ?>;
  1001.  
  1002.         <?php
  1003.                 if (file_exists("data/round.txt")) {
  1004.                         echo 'margin: 0px 0px 0px 0px;';
  1005.                 }
  1006.                 else {
  1007.                         echo 'margin: 0px 0px 10px 0px;';
  1008.                 }
  1009.         ?>
  1010.  
  1011.         border-color: <?php
  1012.                         if (file_exists("data/colors/border.txt")) {
  1013.                                 $panel_body_border_color = file_get_contents("data/colors/border.txt");
  1014.                                 echo $panel_body_border_color;
  1015.                         }
  1016.                         else {
  1017.                                 echo "#cccccc";
  1018.                         }
  1019.         ?>;
  1020.         <?php
  1021.                 if (file_exists("data/round.txt")) {
  1022.                         echo 'border-width: 1px 1px 0px 1px;';
  1023.                         echo 'border-style: solid solid none solid;';
  1024.                 }
  1025.                 else {
  1026.                         echo 'border-width: 1px 1px 1px 1px;';
  1027.                         echo 'border-style: solid solid solid solid;';
  1028.                 }
  1029.         ?>
  1030. }
  1031.  
  1032. #panel_footer {
  1033.         font-family: <?php
  1034.                                 if (file_exists("data/fonts/panel-footer.txt")) {
  1035.                                         $font_panel_footer = file_get_contents("data/fonts/panel-footer.txt");
  1036.                                         echo "{$font_panel_footer},";
  1037.                                 }
  1038.         ?> arial,helvetica,sans-serif;
  1039.         font-size: 10px;
  1040.         color: <?php
  1041.                         if (file_exists("data/colors/pf-font.txt")) {
  1042.                                 $panel_footer_font_color = file_get_contents("data/colors/pf-font.txt");
  1043.                                 echo $panel_footer_font_color;
  1044.                         }
  1045.                         else {
  1046.                                 echo "#999999";
  1047.                         }
  1048.         ?>;
  1049.         <?php
  1050.                 if (file_exists("data/round.txt")) {
  1051.                         echo 'padding: 5px 5px 2px 5px;';
  1052.                 }
  1053.                 else {
  1054.                         echo 'padding: 5px 5px 5px 5px;';
  1055.                 }
  1056.         ?>
  1057.         background-color: <?php
  1058.                                 if (file_exists("data/colors/pf-bg.txt")) {
  1059.                                         $panel_footer_background_color = file_get_contents("data/colors/pf-bg.txt");
  1060.                                         echo $panel_footer_background_color;
  1061.                                 }
  1062.                                 else {
  1063.                                         echo "transparent";
  1064.                                 }
  1065.         ?>;
  1066.  
  1067.         <?php
  1068.                 if (file_exists("data/round.txt")) {
  1069.                         echo 'margin: 0px 0px 0px 0px;';
  1070.                 }
  1071.                 else {
  1072.                         echo 'margin: 0px 0px 10px 0px;';
  1073.                 }
  1074.         ?>
  1075.  
  1076.         border-color: <?php
  1077.                                 if (file_exists("data/colors/border.txt")) {
  1078.                                         $panel_footer_border_color = file_get_contents("data/colors/border.txt");
  1079.                                         echo $panel_footer_border_color;
  1080.                                 }
  1081.                                 else {
  1082.                                         echo "#cccccc";
  1083.                                 }
  1084.         ?>;
  1085.         <?php
  1086.                 if (file_exists("data/round.txt")) {
  1087.                         echo 'border-width: 1px 1px 0px 1px;';
  1088.                         echo 'border-style: solid solid none solid;';
  1089.                 }
  1090.                 else {
  1091.                         echo 'border-width: 0px 1px 1px 1px;';
  1092.                         echo 'border-style: none solid solid solid;';
  1093.                 }
  1094.         ?>
  1095.         text-align: right;
  1096. }
  1097.  
  1098. .input {        
  1099.         color: <?php
  1100.                         if (file_exists("data/colors/border.txt")) {
  1101.                                 $input_color = file_get_contents("data/colors/border.txt");
  1102.                                 echo $input_color;
  1103.                         }
  1104.                         else {
  1105.                                 echo "#666666";
  1106.                         }
  1107.         ?>;
  1108.         background: #ffffff;
  1109.         border: <?php
  1110.                         if (file_exists("data/colors/border.txt")) {
  1111.                                 $panel_footer_border_color = file_get_contents("data/colors/border.txt");
  1112.                                 echo $panel_footer_border_color;
  1113.                         }
  1114.                         else {
  1115.                                 echo "#999999";
  1116.                         }
  1117.         ?> solid 1px;
  1118.         width: 300px;
  1119.         font-family: <?php
  1120.                                 if (file_exists("data/fonts/input.txt")) {
  1121.                                         $font_input = file_get_contents("data/fonts/input.txt");
  1122.                                         echo "{$font_input},";
  1123.                                 }
  1124.         ?> arial,helvetica,sans-serif;
  1125.         font-size: 11px;
  1126. }
  1127.  
  1128. .search {      
  1129.         color: #666666;
  1130.         background: #ffffff;
  1131.         width: 100%;
  1132.  
  1133.         font-family: <?php
  1134.                                 if (file_exists("data/fonts/input.txt")) {
  1135.                                         $font_input = file_get_contents("data/fonts/input.txt");
  1136.                                         echo "{$font_input},";
  1137.                                 }
  1138.         ?> arial,helvetica,sans-serif;
  1139.         font-size: 11px;
  1140. }
  1141.  
  1142. #panel_free {
  1143.         padding: 0px 5px 0px 5px;
  1144.         margin: 0px 0px 10px 0px;
  1145. }
  1146.  
  1147. .rbtop {
  1148.         display: block;
  1149.         background: transparent;
  1150.         font-size: 1px;
  1151.         margin: 0px 0px 0px 0px;
  1152. }
  1153.  
  1154. .rbbottom {
  1155.         display: block;
  1156.         background: transparent;
  1157.         font-size: 1px;
  1158.         margin: 0px 0px 10px 0px;
  1159. }
  1160.  
  1161. .rb1t,.rb2t,.rb3t,.rb4t,.rb1b,.rb2b,.rb3b,.rb4b,.rb1e,.rb2e,.rb3e,.rb4e {
  1162.         display: block;
  1163.         overflow: hidden;
  1164. }
  1165.  
  1166. .rb1t,.rb2t,.rb3t,.rb1b,.rb2b,.rb3b,.rb1e,.rb2e,.rb3e {
  1167.         height: 1px;
  1168. }
  1169.  
  1170. .rb2t,.rb3t,.rb4t {
  1171.         background-color: <?php
  1172.                                 if (file_exists("data/colors/pt-bg.txt")) {
  1173.                                         $panel_title_background_color = file_get_contents("data/colors/pt-bg.txt");
  1174.                                         echo $panel_title_background_color;
  1175.                                 }
  1176.                                 else {
  1177.                                         echo "transparent";
  1178.                                 }
  1179.         ?>;
  1180.         border-left: 1px solid;
  1181.         border-right: 1px solid;
  1182.         border-color: <?php
  1183.                         if (file_exists("data/colors/border.txt")) {
  1184.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1185.                                 echo $panel_title_border_color;
  1186.                         }
  1187.                         else {
  1188.                                 echo "#cccccc";
  1189.                         };
  1190.         ?>;
  1191. }
  1192.  
  1193. .rb2b,.rb3b,.rb4b {
  1194.         background-color: <?php
  1195.                                 if (file_exists("data/colors/pb-bg.txt")) {
  1196.                                         $panel_title_background_color = file_get_contents("data/colors/pb-bg.txt");
  1197.                                         echo $panel_title_background_color;
  1198.                                 }
  1199.                                 else {
  1200.                                         echo "transparent";
  1201.                                 }
  1202.         ?>;
  1203.         border-left: 1px solid;
  1204.         border-right: 1px solid;
  1205.         border-color: <?php
  1206.                         if (file_exists("data/colors/border.txt")) {
  1207.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1208.                                 echo $panel_title_border_color;
  1209.                         }
  1210.                         else {
  1211.                                 echo "#cccccc";
  1212.                         };
  1213.         ?>;
  1214. }
  1215.  
  1216. .rb2e,.rb3e,.rb4e {
  1217.         background-color: <?php
  1218.                                 if (file_exists("data/colors/pf-bg.txt")) {
  1219.                                         $panel_title_background_color = file_get_contents("data/colors/pf-bg.txt");
  1220.                                         echo $panel_title_background_color;
  1221.                                 }
  1222.                                 else {
  1223.                                         echo "transparent";
  1224.                                 }
  1225.         ?>;
  1226.         border-left: 1px solid;
  1227.         border-right: 1px solid;
  1228.         border-color: <?php
  1229.                         if (file_exists("data/colors/border.txt")) {
  1230.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1231.                                 echo $panel_title_border_color;
  1232.                         }
  1233.                         else {
  1234.                                 echo "#cccccc";
  1235.                         };
  1236.         ?>;
  1237. }
  1238.  
  1239. .rb1t,.rb1b,.rb1e {
  1240.         margin: 0 5px;
  1241.         background: <?php
  1242.                         if (file_exists("data/colors/border.txt")) {
  1243.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1244.                                 echo $panel_title_border_color;
  1245.                         }
  1246.                         else {
  1247.                                 echo "#cccccc";
  1248.                         };
  1249.         ?>;
  1250. }
  1251.  
  1252. .rb2t,.rb2b,.rb2e {
  1253.         margin: 0 3px;
  1254.         border-width: 0 2px;
  1255. }
  1256.  
  1257. .rb3t,.rb3b,.rb3e {
  1258.         margin: 0 2px;
  1259. }
  1260.  
  1261. .rb4t,.rb4b,.rb4e {
  1262.         height: 2px;
  1263.         margin: 0 1px;
  1264. }
  1265.  
  1266. .xtitle {
  1267.         display: block;
  1268.         border:0 solid;
  1269.         border-width:0 1px;
  1270.         padding: 1px 5px 5px 5px;
  1271.         font-weight: bold;
  1272.         font-family: <?php
  1273.                                 if (file_exists("data/fonts/panel-title.txt")) {
  1274.                                         $font_panel_title = file_get_contents("data/fonts/panel-title.txt");
  1275.                                         echo "{$font_panel_title},";
  1276.                                 }
  1277.         ?> arial,helvetica,sans-serif;
  1278.         color: <?php
  1279.                         if (file_exists("data/colors/pt-font.txt")) {
  1280.                                 $panel_title_font_color = file_get_contents("data/colors/pt-font.txt");
  1281.                                 echo $panel_title_font_color;
  1282.                         }
  1283.                         else {
  1284.                                 echo "#666666";
  1285.                         }
  1286.         ?>;
  1287.         background-color: <?php
  1288.                                 if (file_exists("data/colors/pt-bg.txt")) {
  1289.                                         $panel_title_background_color = file_get_contents("data/colors/pt-bg.txt");
  1290.                                         echo $panel_title_background_color;
  1291.                                 }
  1292.                                 else {
  1293.                                         echo "transparent";
  1294.                                 }
  1295.         ?>;
  1296.         border-color: <?php
  1297.                         if (file_exists("data/colors/border.txt")) {
  1298.                                 $panel_title_border_color = file_get_contents("data/colors/border.txt");
  1299.                                 echo $panel_title_border_color;
  1300.                         }
  1301.                         else {
  1302.                                 echo "#cccccc";
  1303.                         };
  1304.         ?>;
  1305. }
  1306.  
  1307. .rbspace {
  1308.         height: 3px;
  1309. }
  1310.  
  1311. #panel_entry_body {
  1312.         font-family: <?php
  1313.                                 if (file_exists("data/fonts/panel-body.txt")) {
  1314.                                         $font_panel_body = file_get_contents("data/fonts/panel-body.txt");
  1315.                                         echo "{$font_panel_body},";
  1316.                                 }
  1317.         ?> arial,helvetica,sans-serif;
  1318.         font-size: 11px;
  1319.         color: <?php
  1320.                         if (file_exists("data/colors/pb-font.txt")) {
  1321.                                 $panel_body_font_color = file_get_contents("data/colors/pb-font.txt");
  1322.                                 echo $panel_body_font_color;
  1323.                         }
  1324.                         else {
  1325.                                 echo "#666666";
  1326.                         }
  1327.         ?>;
  1328.         <?php
  1329.                 if (file_exists("data/round.txt")) {
  1330.                         echo 'padding: 5px 5px 2px 5px;';
  1331.                 }
  1332.                 else {
  1333.                         echo 'padding: 5px 5px 5px 5px;';
  1334.                 }
  1335.         ?>
  1336.         background-color: <?php
  1337.                                 if (file_exists("data/colors/pb-bg.txt")) {
  1338.                                         $panel_body_background_color = file_get_contents("data/colors/pb-bg.txt");
  1339.                                         echo $panel_body_background_color;
  1340.                                 }
  1341.                                 else {
  1342.                                         echo "transparent";
  1343.                                 }
  1344.         ?>;
  1345.         margin: 0px 0px 0px 0px;
  1346.         border-color: <?php
  1347.                         if (file_exists("data/colors/border.txt")) {
  1348.                                 $panel_body_border_color = file_get_contents("data/colors/border.txt");
  1349.                                 echo $panel_body_border_color;
  1350.                         }
  1351.                         else {
  1352.                                 echo "#cccccc";
  1353.                         }
  1354.         ?>;
  1355.         <?php
  1356.                 if (file_exists("data/round.txt")) {
  1357.                         echo 'border-width: 1px 1px 0px 1px;';
  1358.                         echo 'border-style: solid solid none solid;';
  1359.                 }
  1360.                 else {
  1361.                         echo 'border-width: 1px 1px 1px 1px;';
  1362.                         echo 'border-style: solid solid solid solid;';
  1363.                 }
  1364.         ?>
  1365. }
  1366.  
  1367. #panel_category {
  1368.         font-family: <?php
  1369.                                 if (file_exists("data/fonts/panel-footer.txt")) {
  1370.                                         $font_panel_category = file_get_contents("data/fonts/panel-footer.txt");
  1371.                                         echo "{$font_panel_category},";
  1372.                                 }
  1373.         ?> arial,helvetica,sans-serif;
  1374.         font-size: 10px;
  1375.         color: <?php
  1376.                         if (file_exists("data/colors/pf-font.txt")) {
  1377.                                 $panel_category_font_color = file_get_contents("data/colors/pf-font.txt");
  1378.                                 echo $panel_category_font_color;
  1379.                         }
  1380.                         else {
  1381.                                 echo "#999999";
  1382.                         }
  1383.         ?>;
  1384.  
  1385.         padding: 5px 5px 5px 5px;
  1386.  
  1387.         background-color: <?php
  1388.                                 if (file_exists("data/colors/pf-bg.txt")) {
  1389.                                         $panel_category_background_color = file_get_contents("data/colors/pf-bg.txt");
  1390.                                         echo $panel_category_background_color;
  1391.                                 }
  1392.                                 else {
  1393.                                         echo "transparent";
  1394.                                 }
  1395.         ?>;
  1396.  
  1397.         margin: 0px 0px 0px 0px;
  1398.  
  1399.         border-color: <?php
  1400.                                 if (file_exists("data/colors/border.txt")) {
  1401.                                         $panel_category_border_color = file_get_contents("data/colors/border.txt");
  1402.                                         echo $panel_category_border_color;
  1403.                                 }
  1404.                                 else {
  1405.                                         echo "#cccccc";
  1406.                                 }
  1407.         ?>;
  1408.         <?php
  1409.                 if (file_exists("data/round.txt")) {
  1410.                         echo 'border-width: 1px 1px 0px 1px;';
  1411.                         echo 'border-style: solid solid none solid;';
  1412.                 }
  1413.                 else {
  1414.                         echo 'border-width: 0px 1px 1px 1px;';
  1415.                         echo 'border-style: none solid solid solid;';
  1416.                 }
  1417.         ?>
  1418.         text-align: left;
  1419. }
  1420.  
  1421. <?php if (file_exists("data/css.txt")) { readfile("data/css.txt"); } ?>
  1422.  
  1423. </style>
  1424.  
  1425. <link rel="alternate" type="application/rss+xml" title="RSS 0.91" href="rss.php?ver=0.91">
  1426. <link rel="alternate" type="application/rss+xml" title="RSS 1.0" href="rss.php?ver=1.0">
  1427. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="rss.php?ver=2.0">
  1428.  
  1429. <?php
  1430.  
  1431. if (file_exists("data/center.txt")) {
  1432.         echo "<center>";
  1433. }
  1434.  
  1435. if (file_exists("data/header.txt")) {
  1436.  
  1437.         $header_panel = file_get_contents("data/header.txt");
  1438.  
  1439.         if (file_exists("data/panels/$header_panel") and (!file_exists("data/panels/$header_panel/private.txt") or isset($_SESSION['logged_in']))) {
  1440.                 include("data/panels/$header_panel/panel.php");
  1441.         }
  1442.  
  1443. }
  1444.  
  1445. echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"$wtable\">";
  1446. echo "<tr><td width=\"$wside\" height=\"10\"></td><td width=\"$wspace\" height=\"10\"></td><td width=\"$wmain\" height=\"10\"></td><td width=\"$wspace\" height=\"10\"></td><td width=\"$wside\" height=\"10\"></td></tr>";
  1447. echo "<tr><td width=\"$wside\" valign=\"top\">";
  1448.  
  1449. if (file_exists("data/round.txt")) {
  1450.         echo "<b class=\"rbtop\"><b class=\"rb1t\"></b><b class=\"rb2t\"></b><b class=\"rb3t\"></b><b class=\"rb4t\"></b></b><div class=\"xtitle\">";
  1451. }
  1452. else {
  1453.         echo "<div id=\"panel_title\">";
  1454. }
  1455.  
  1456. ?>
  1457.  
  1458. Profile</div>
  1459. <div id="panel_body">
  1460.  
  1461. <?php
  1462.  
  1463. if (file_exists("images/profile.gif")) {
  1464.         $profile_gif_image_size = getimagesize("images/profile.gif");
  1465.         $profile_gif_image_width = $profile_gif_image_size[0];
  1466.         $profile_gif_image_height = $profile_gif_image_size[1];
  1467.  
  1468.         $max_profile_gif_image_width = 163;
  1469.  
  1470.         if ($profile_gif_image_width > $max_profile_gif_image_width) {  
  1471.                 $sizefactor = (double) ($max_profile_gif_image_width / $profile_gif_image_width) ;
  1472.                 $profile_gif_image_width = (int) ($profile_gif_image_width * $sizefactor);
  1473.                 $profile_gif_image_height = (int) ($profile_gif_image_height * $sizefactor);
  1474.         }
  1475.  
  1476.         echo "<img src=\"images/profile.gif\" border=\"0\" width=\"$profile_gif_image_width\" height=\"$profile_gif_image_height\" align=\"left\">";
  1477. }
  1478.  
  1479. if (file_exists("images/profile.jpg")) {
  1480.         $profile_jpg_image_size = getimagesize("images/profile.jpg");
  1481.         $profile_jpg_image_width = $profile_jpg_image_size[0];
  1482.         $profile_jpg_image_height = $profile_jpg_image_size[1];
  1483.  
  1484.         $max_profile_jpg_image_width = 163;
  1485.  
  1486.         if ($profile_jpg_image_width > $max_profile_jpg_image_width) {  
  1487.                 $sizefactor = (double) ($max_profile_jpg_image_width / $profile_jpg_image_width) ;
  1488.                 $profile_jpg_image_width = (int) ($profile_jpg_image_width * $sizefactor);
  1489.                 $profile_jpg_image_height = (int) ($profile_jpg_image_height * $sizefactor);
  1490.         }
  1491.  
  1492.         echo "<img src=\"images/profile.jpg\" border=\"0\" width=\"$profile_jpg_image_width\" height=\"$profile_jpg_image_height\" align=\"left\">";
  1493. }
  1494.  
  1495. if (file_exists("images/profile.png")) {
  1496.         $profile_png_image_size = getimagesize("images/profile.png");
  1497.         $profile_png_image_width = $profile_png_image_size[0];
  1498.         $profile_png_image_height = $profile_png_image_size[1];
  1499.  
  1500.         $max_profile_png_image_width = 163;
  1501.  
  1502.         if ($profile_png_image_width > $max_profile_png_image_width) {  
  1503.                 $sizefactor = (double) ($max_profile_png_image_width / $profile_png_image_width) ;
  1504.                 $profile_png_image_width = (int) ($profile_png_image_width * $sizefactor);
  1505.                 $profile_png_image_height = (int) ($profile_png_image_height * $sizefactor);
  1506.         }
  1507.  
  1508.         echo "<img src=\"images/profile.png\" border=\"0\" width=\"$profile_png_image_width\" height=\"$profile_png_image_height\" align=\"left\">";
  1509. }
  1510.  
  1511. include("data/profile.php");
  1512.  
  1513. ?>
  1514.  
  1515. </div>
  1516.  
  1517. <?php
  1518.         if (file_exists("data/round.txt")) {
  1519.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1520.         }
  1521. ?>
  1522.  
  1523. <?php
  1524.  
  1525. if (file_exists("data/round.txt")) {
  1526.         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1527. }
  1528. else {
  1529.         echo '<div id="panel_title">';
  1530. }
  1531.  
  1532. ?>
  1533.  
  1534. Navigation</div>
  1535. <div id="panel_body">
  1536. <a class="navlink" href="index.php">Home</a><br>
  1537.  
  1538. <?php
  1539.  
  1540. if (file_exists("data/bb.txt") and file_exists("data/members/active")) {
  1541.         echo '<a class="navlink" href="member.php?id=all">Members</a><br>';
  1542. }
  1543.  
  1544. if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1545.         echo '<a class="navlink" href="add.php">Add Entry</a><br>';
  1546.         echo '<a class="navlink" href="settings.php">Settings</a><br>';
  1547.         echo '<a class="navlink" href="panels.php">Panels</a><br>';
  1548.         echo '<a class="navlink" href="cat.php">Categories</a><br>';
  1549.         echo '<a class="navlink" href="colors.php">Colors</a><br>';
  1550.         echo '<a class="navlink" href="fonts.php">Fonts</a><br>';
  1551.         echo '<a class="navlink" href="login.php">Logout</a>';
  1552. }
  1553. 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")) {
  1554.  
  1555.         if (file_exists("data/members/active/{$_SESSION['logged_in']}/categories/$req_category")) {
  1556.  
  1557.                 if (!file_exists("data/categories/$req_category")) {
  1558.                         rmdirr("data/members/active/{$_SESSION['logged_in']}/categories/$req_category");
  1559.                 }
  1560.         }
  1561.  
  1562.         if (file_exists("data/members/active/{$_SESSION['logged_in']}/rw.txt") or file_exists("data/members/active/{$_SESSION['logged_in']}/categories/$req_category")) {
  1563.                 echo '<a class="navlink" href="add.php">Add Entry</a><br>';
  1564.         }
  1565.  
  1566.         echo '<a class="navlink" href="options.php">Options</a><br>';
  1567.         echo '<a class="navlink" href="login.php">Logout</a>';
  1568. }
  1569. else {
  1570.         if (file_exists("data/bb.txt") and file_exists("data/reg.txt")) {
  1571.                 echo '<a class="navlink" href="reg.php">Register</a><br>';
  1572.         }
  1573.  
  1574.         echo '<a class="navlink" href="login.php">Login</a>';
  1575. }
  1576.  
  1577. ?>
  1578.  
  1579. </div>
  1580.  
  1581. <?php
  1582.         if (file_exists("data/round.txt")) {
  1583.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1584.         }
  1585. ?>
  1586.  
  1587. <?php
  1588.  
  1589. if (file_exists("data/sticky")) {
  1590.  
  1591.         if ($dh_sticky = opendir("data/sticky")) {
  1592.  
  1593.                 while (($sticky_entry = readdir($dh_sticky)) !== false) {
  1594.  
  1595.                         if (file_exists("data/items/$sticky_entry/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1596.                                 continue;
  1597.                         }
  1598.  
  1599.                         if (file_exists("data/items/$sticky_entry/member.txt") and (!isset($_SESSION['logged_in']))) {
  1600.                                 continue;
  1601.                         }
  1602.  
  1603.                         $private_categories = "0";
  1604.  
  1605.                         if (file_exists("data/items/$sticky_entry/categories")) {
  1606.                        
  1607.                                 if ($dh_sticky_categories = opendir("data/items/$sticky_entry/categories")) {
  1608.                        
  1609.                                         while (($sticky_category = readdir($dh_sticky_categories)) !== false) {
  1610.                        
  1611.                                                 if ($sticky_category != "." && $sticky_category != "..") {
  1612.                        
  1613.                                                         if (file_exists("data/categories/$sticky_category/private.txt")) {
  1614.                                                                 $private_categories = $private_categories + 1;
  1615.                                                         }
  1616.                                                 }
  1617.                                         }
  1618.                                         closedir($dh_sticky_categories);
  1619.                                 }
  1620.                         }
  1621.  
  1622.                         if (($private_categories > 0) and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username)) and !file_exists("data/items/$sticky_entry/cat.txt")) {
  1623.                                 continue;
  1624.                         }
  1625.  
  1626.                         if ($sticky_entry != "." && $sticky_entry != "..") {
  1627.                                 $sticky_entries[] = $sticky_entry;
  1628.                         }
  1629.                 }
  1630.                 closedir($dh_sticky);
  1631.         }
  1632.  
  1633.         sort($sticky_entries);
  1634.         reset($sticky_entries);
  1635.  
  1636.         $count_sticky_list = count($sticky_entries);
  1637.        
  1638.         if ($count_sticky_list > 0) {
  1639.  
  1640.                 if (file_exists("data/round.txt")) {
  1641.                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1642.                 }
  1643.                 else {
  1644.                         echo '<div id="panel_title">';
  1645.                 }
  1646.                
  1647.                 echo 'Quick Links</div>';
  1648.                 echo '<div id="panel_body">';
  1649.  
  1650.                 foreach ($sticky_entries as $sticky_list_entry) {
  1651.                         echo "<a class=\"navlink\" href=\"index.php?entry=$sticky_list_entry\">";
  1652.                         readfile("data/items/$sticky_list_entry/title.txt");
  1653.                         echo "</a><br>";
  1654.                 }
  1655.  
  1656.                 echo '</div>';
  1657.  
  1658.                 if (file_exists("data/round.txt")) {
  1659.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1660.                 }
  1661.         }
  1662. }
  1663.  
  1664. ?>
  1665.  
  1666. <?php
  1667.  
  1668. if (file_exists("data/panels")) {
  1669.  
  1670.         if ($dh_panels = opendir("data/panels")) {
  1671.  
  1672.                 while (($panel = readdir($dh_panels)) !== false) {
  1673.  
  1674.                         if ($panel != "." && $panel != "..") {
  1675.  
  1676.                                 if (file_exists("data/panels/$panel/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  1677.                                         continue;
  1678.                                 }
  1679.  
  1680.                                 if (file_exists("data/panels/$panel/top.txt")) {
  1681.                                         $top_panels[] = $panel;
  1682.                                         continue;
  1683.                                 }
  1684.  
  1685.                                 if (file_exists("data/panels/$panel/center.txt")) {
  1686.                                         $center_panels[] = $panel;
  1687.                                         continue;
  1688.                                 }
  1689.  
  1690.                                 if (file_exists("data/panels/$panel/entry.txt")) {
  1691.                                         $entry_panels[] = $panel;
  1692.                                         continue;
  1693.                                 }
  1694.  
  1695.                                 if (file_exists("data/panels/$panel/right.txt")) {
  1696.                                         $right_panels[] = $panel;
  1697.                                         continue;
  1698.                                 }
  1699.  
  1700.                                 if (file_exists("data/header.txt") and (file_get_contents("data/header.txt") == $panel)) {
  1701.                                         continue;
  1702.                                 }
  1703.  
  1704.                                 if (file_exists("data/footer.txt") and (file_get_contents("data/footer.txt") == $panel)) {
  1705.                                         continue;
  1706.                                 }
  1707.  
  1708.                                 $left_panels[] = $panel;
  1709.                         }
  1710.                 }
  1711.                 closedir($dh_panels);
  1712.         }
  1713.  
  1714.         sort($left_panels);
  1715.         reset($left_panels);
  1716.  
  1717.         $count_left_panels = count($left_panels);
  1718.  
  1719.         sort($top_panels);
  1720.         reset($top_panels);
  1721.  
  1722.         $count_top_panels = count($top_panels);
  1723.  
  1724.         sort($center_panels);
  1725.         reset($center_panels);
  1726.  
  1727.         $count_center_panels = count($center_panels);
  1728.  
  1729.         sort($entry_panels);
  1730.         reset($entry_panels);
  1731.  
  1732.         $count_entry_panels = count($entry_panels);
  1733.  
  1734.         sort($right_panels);
  1735.         reset($right_panels);
  1736.  
  1737.         $count_right_panels = count($right_panels);
  1738.  
  1739.         if ($count_left_panels > 0) {
  1740.  
  1741.                 foreach ($left_panels as $left_panel) {
  1742.  
  1743.                         if (!file_exists("data/panels/$left_panel/free.txt")) {
  1744.  
  1745.                                 if (file_exists("data/round.txt")) {
  1746.                                         echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1747.                                 }
  1748.                                 else {
  1749.                                         echo '<div id="panel_title">';
  1750.                                 }
  1751.  
  1752.                                 readfile("data/panels/$left_panel/title.txt");
  1753.  
  1754.                                 if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1755.                                         echo "<a href=panels.php#{$left_panel}>";
  1756.                                         echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  1757.                                 }
  1758.  
  1759.                                 if (file_exists("data/panels/$left_panel/private.txt")) {
  1760.                                         echo '<img src=images/widget.private.png border=0 width=11 height=11 align=right>';
  1761.                                 }
  1762.  
  1763.                                 echo '</div><div id=panel_body>';
  1764.                         }
  1765.  
  1766.                         if (file_exists("data/panels/$left_panel/free.txt")) {
  1767.                                 echo '<div id=panel_free>';
  1768.                         }
  1769.  
  1770.                         include("data/panels/$left_panel/panel.php");
  1771.  
  1772.                         echo '</div>';
  1773.  
  1774.                         if (file_exists("data/round.txt") and !file_exists("data/panels/$left_panel/free.txt")) {
  1775.                                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1776.                         }
  1777.                 }
  1778.         }
  1779. }
  1780.  
  1781. echo "</td><td width=\"$wspace\"></td>";
  1782.  
  1783. // main
  1784.  
  1785. echo "<td valign=\"top\" width=\"$wmain\">";
  1786.  
  1787. if ($count_top_panels > 0) {
  1788.  
  1789.         foreach ($top_panels as $top_panel) {
  1790.  
  1791.                 if (!file_exists("data/panels/$top_panel/free.txt")) {
  1792.  
  1793.                         if (file_exists("data/round.txt")) {
  1794.                                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  1795.                         }
  1796.                         else {
  1797.                                 echo '<div id="panel_title">';
  1798.                         }
  1799.  
  1800.                         readfile("data/panels/$top_panel/title.txt");
  1801.  
  1802.                         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1803.                                 echo "<a href=panels.php#{$top_panel}>";
  1804.                                 echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  1805.                         }
  1806.  
  1807.                         echo '</div><div id=panel_body>';
  1808.                 }
  1809.  
  1810.                 if (file_exists("data/panels/$top_panel/free.txt")) {
  1811.                         echo '<div id=panel_free>';
  1812.                 }
  1813.  
  1814.                 include("data/panels/$top_panel/panel.php");
  1815.  
  1816.                 echo '</div>';
  1817.  
  1818.                 if (file_exists("data/round.txt") and !file_exists("data/panels/$top_panel/free.txt")) {
  1819.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  1820.                 }
  1821.         }
  1822. }
  1823.  
  1824. ?>
  1825.  
  1826. <?php
  1827.  
  1828. // clean-up (start)
  1829.  
  1830. if (file_exists("data/albums")) {
  1831.         rmdirr("data/albums");
  1832. }
  1833.  
  1834. // clean-up (end)
  1835.  
  1836. // global entry items (start)
  1837.  
  1838. if ($dh_items = opendir("data/items")) {
  1839.  
  1840.         while (($item = readdir($dh_items)) !== false) {
  1841.  
  1842.                 if ($item != "." && $item != "..") {
  1843.  
  1844.                         if (file_exists("data/items/$item/comments/live") and (count(glob("data/items/$item/comments/live/*")) < 1)) {
  1845.                                 rmdirr("data/items/$item/comments/live");
  1846.                         }
  1847.  
  1848.                         if (file_exists("data/items/$item/comments/pending") and (count(glob("data/items/$item/comments/pending/*")) < 1)) {
  1849.                                 rmdirr("data/items/$item/comments/pending");
  1850.                         }
  1851.  
  1852.                         if (file_exists("data/items/$item/comments") and (count(glob("data/items/$item/comments/*")) < 1)) {
  1853.                                 rmdirr("data/items/$item/comments");
  1854.                         }
  1855.  
  1856.                         if (file_exists("data/items/$item/filedrop/files") and (count(glob("data/items/$item/filedrop/files/*")) < 1)) {
  1857.                                 rmdirr("data/items/$item/filedrop/files");
  1858.                         }
  1859.  
  1860.                         if (file_exists("data/items/$item/filedrop/count") and (count(glob("data/items/$item/filedrop/count/*")) < 1)) {
  1861.                                 rmdirr("data/items/$item/filedrop/count");
  1862.                         }
  1863.  
  1864.                         if (file_exists("data/items/$item/filedrop") and (count(glob("data/items/$item/filedrop/*")) < 1)) {
  1865.                                 rmdirr("data/items/$item/filedrop");
  1866.                         }
  1867.  
  1868.                         if ((!file_exists("images/$item/album") or (count(glob("images/$item/album/*")) < 1)) and file_exists("data/items/$item/album/captions") and (count(glob("data/items/$item/album/captions/*")) < 1)) {
  1869.                                 rmdirr("data/items/$item/album/captions");
  1870.                         }
  1871.  
  1872.                         if ((!file_exists("images/$item/album") or (count(glob("images/$item/album/*")) < 1)) and file_exists("data/items/$item/album/count") and (count(glob("data/items/$item/album/count/*")) < 1)) {
  1873.                                 rmdirr("data/items/$item/album/count");
  1874.                         }
  1875.  
  1876.                         if ((!file_exists("images/$item/album") or (count(glob("images/$item/album/*")) < 1)) and file_exists("data/items/$item/album") and (count(glob("data/items/$item/album/*")) < 1)) {
  1877.                                 rmdirr("data/items/$item/album");
  1878.                         }
  1879.  
  1880.                         if (file_exists("images/$item/album") and (count(glob("images/$item/album/*")) < 1)) {
  1881.                                 rmdirr("images/$item/album");
  1882.                         }
  1883.  
  1884.                         if (file_exists("images/$item") and (count(glob("images/$item/*")) < 1)) {
  1885.                                 rmdirr("images/$item");
  1886.                         }
  1887.  
  1888.                         if (file_exists("images/$item/categories") and (count(glob("images/$item/categories/*")) < 1)) {
  1889.                                 rmdirr("images/$item/categories");
  1890.                         }
  1891.  
  1892.                         $grand[] = $item;
  1893.  
  1894.                         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  1895.  
  1896.                                 if (isset($req_entry) or isset($req_category) or isset($req_archive) or isset($req_find) or isset($req_author)) {
  1897.        
  1898.                                         if (isset($req_entry) and file_exists("data/items/$req_entry")) {
  1899.                                                 $items[] = $req_entry;
  1900.                                         }
  1901.  
  1902.                                         if (isset($req_category) and file_exists("data/categories/$req_category") and file_exists("data/items/$item/categories/$req_category")) {
  1903.                                                 $items[] = $item;
  1904.                                         }
  1905.  
  1906.                                         if (isset($req_archive) and fnmatch("$req_archive*",$item)) {
  1907.                                                 $items[] = $item;
  1908.                                         }
  1909.  
  1910.                                         if (isset($req_author) and (file_exists("data/members/active/$req_author") or (file_get_contents("data/username.txt") == $req_author)) and (file_get_contents("data/items/$item/author.txt") == $req_author)) {
  1911.                                                 $items[] = $item;
  1912.                                         }
  1913.  
  1914.                                         if (isset($req_find)) {
  1915.  
  1916.                                                 if ((($req_find == "private") or ($req_find == "member") or ($req_find == "passwd")) and file_exists("data/items/$item/{$req_find}.txt")) {
  1917.                                                         $items[] = $item;
  1918.                                                 }
  1919.  
  1920.                                                 if ((($req_find == "comments") or ($req_find == "filedrop") or ($req_find == "album")) and file_exists("data/items/$item/$req_find")) {
  1921.                                                         $items[] = $item;
  1922.                                                 }
  1923.  
  1924.                                                 if (($req_find == "unfiled") and !file_exists("data/items/$item/categories")) {
  1925.                                                         $items[] = $item;
  1926.                                                 }
  1927.                                         }
  1928.                                 }
  1929.                                 else {
  1930.                                         $items[] = $item;
  1931.                                 }
  1932.  
  1933.                                 $latest[] = $item;
  1934.  
  1935.                                 if (file_exists("data/items/$item/album")) {
  1936.                                         $albums[] = $item;
  1937.                                 }
  1938.  
  1939.                                 $random[] = $item;                     
  1940.  
  1941.                                 $archives[] = substr($item,0,6);
  1942.                         }
  1943.                         else {
  1944.  
  1945.                                 // non-admin stuff (start)
  1946.  
  1947.                                 $today = date("YmdHis",time() + $offset);
  1948.        
  1949.                                 if ($item > $today) {
  1950.                                         continue;
  1951.                                 }
  1952.  
  1953.                                 if (file_exists("data/items/$item/private.txt")) {
  1954.                                         continue;
  1955.                                 }
  1956.  
  1957.                                 $private_categories = "0";
  1958.  
  1959.                                 if (file_exists("data/items/$item/categories")) {
  1960.                        
  1961.                                         if ($dh_entry_categories = opendir("data/items/$item/categories")) {
  1962.                        
  1963.                                                 while (($item_category = readdir($dh_entry_categories)) !== false) {
  1964.                        
  1965.                                                         if ($item_category != "." && $item_category != "..") {
  1966.                        
  1967.                                                                 if (file_exists("data/categories/$item_category/private.txt")) {
  1968.                                                                         $private_categories = $private_categories + 1;
  1969.                                                                 }
  1970.                                                         }
  1971.                                                 }
  1972.                                                 closedir($dh_entry_categories);
  1973.                                         }
  1974.                                 }
  1975.  
  1976.                                 if (($private_categories > 0) and !file_exists("data/items/$item/cat.txt")) {
  1977.                                         continue;
  1978.                                 }
  1979.  
  1980.                                 $latest[] = $item;
  1981.  
  1982.                                 if (file_exists("data/items/$item/member.txt") and (!isset($_SESSION['logged_in']))) {
  1983.                                         continue;
  1984.                                 }
  1985.  
  1986.                                 if (file_exists("data/items/$item/album")) {
  1987.                                         $albums[] = $item;
  1988.                                 }
  1989.  
  1990.                                 $random[] = $item;
  1991.                                 $archives[] = substr($item,0,6);
  1992.  
  1993.                                 if (file_exists("data/nocat.txt") and file_exists("data/items/$item/categories") and !file_exists("data/items/$item/cat.txt") and (!isset($req_category) or empty($req_category)) and (!isset($req_entry) or empty($req_entry)) and (!isset($req_author) or empty($req_author))) {
  1994.                                         continue;
  1995.                                 }
  1996.  
  1997.                                 if (isset($req_entry) or isset($req_category) or isset($req_archive) or isset($req_find) or isset($req_author)) {
  1998.        
  1999.                                         if (isset($req_entry) and file_exists("data/items/$req_entry")) {
  2000.                                                 $items[] = $req_entry;
  2001.                                         }
  2002.  
  2003.                                         if (isset($req_category) and file_exists("data/categories/$req_category") and file_exists("data/items/$item/categories/$req_category")) {
  2004.                                                 $items[] = $item;
  2005.                                         }
  2006.  
  2007.                                         if (isset($req_archive) and fnmatch("$req_archive*",$item)) {
  2008.                                                 $items[] = $item;
  2009.                                         }
  2010.  
  2011.                                         if (isset($req_author) and (file_exists("data/members/active/$req_author") or (file_get_contents("data/username.txt") == $req_author)) and (file_get_contents("data/items/$item/author.txt") == $req_author)) {
  2012.                                                 $items[] = $item;
  2013.                                         }
  2014.                                 }
  2015.                                 else {
  2016.                                         $items[] = $item;
  2017.                                 }
  2018.  
  2019.                                 // non-admin stuff (end)
  2020.                         }
  2021.                 }
  2022.         }
  2023.         closedir($dh_items);
  2024. }
  2025.  
  2026. sort($grand);
  2027. reset($grand);
  2028.  
  2029. $count_grand = count($grand);
  2030.  
  2031. if (isset($req_entry) and file_exists("data/items/$req_entry")) {
  2032.  
  2033.         if (file_exists("data/items/$req_entry/private.txt") and (!isset($_SESSION['logged_in']) or ($_SESSION['logged_in'] != $login_username))) {
  2034.                 unset($items);
  2035.         }
  2036.  
  2037.         if (file_exists("data/items/$req_entry/member.txt") and !isset($_SESSION['logged_in'])) {
  2038.                 unset($items);
  2039.         }
  2040. }
  2041.  
  2042. $items = array_unique($items);
  2043. $items = array_values($items);
  2044.  
  2045. if (file_exists("data/old.txt")) {
  2046.         sort($items);
  2047. }
  2048. else {
  2049.         rsort($items);
  2050. }
  2051.  
  2052. reset($items);
  2053.  
  2054. $count_items = count($items);
  2055.  
  2056. rsort($latest);
  2057. reset($latest);
  2058.  
  2059. $count_latest = count($latest);
  2060.  
  2061. rsort($albums);
  2062. reset($albums);
  2063.  
  2064. $count_albums = count($albums);
  2065.  
  2066. rsort($random);
  2067. reset($random);
  2068.  
  2069. $count_random = count($random);
  2070.  
  2071. rsort($archives);
  2072. reset($archives);
  2073.  
  2074. $count_archives = count($archives);
  2075.  
  2076. ?>
  2077.  
  2078. <?php
  2079.  
  2080. if (file_exists("data/bb.txt") and file_exists("data/bb-summary.txt") and !file_exists("data/lite.txt") and !isset($req_entry) and !isset($req_category) and !isset($_REQUEST['start']) and !isset($req_author) and !isset($req_archive) and !isset($req_find)) {
  2081.  
  2082.         if ($count_latest > 0) {
  2083.  
  2084.                 if (file_exists("data/round.txt")) {
  2085.                         echo "<b class=\"rbtop\"><b class=\"rb1t\"></b><b class=\"rb2t\"></b><b class=\"rb3t\"></b><b class=\"rb4t\"></b></b><div class=\"xtitle\">";
  2086.                 }
  2087.                 else {
  2088.                         echo "<div id=\"panel_title\">";
  2089.                 }
  2090.  
  2091.                 echo "Latest Entries</div><div id=\"panel_body\">";
  2092.                 echo "<table border=\"0\" cellspacing=\"1\" cellpadding=\"2\" bgcolor=\"#cccccc\" width=\"100%\">";
  2093.                 echo "<tr><td bgcolor=\"#eeeeee\" align=\"center\">topic</td><td bgcolor=\"#eeeeee\" align=\"center\">author</td><td bgcolor=\"#eeeeee\" align=\"center\">views</td><td bgcolor=\"#eeeeee\" align=\"center\">comments</td><td bgcolor=\"#eeeeee\" align=\"center\">last post</td></tr>";
  2094.  
  2095.                 $increment_latest = 0;
  2096.  
  2097.                 while ($increment_latest <= 4) {
  2098.  
  2099.                         echo "<tr><td bgcolor=\"#ffffff\"><a href=\"index.php?entry=$latest[$increment_latest]";
  2100.  
  2101.                         if ($dh_summary_comments = opendir("data/items/$latest[$increment_latest]/comments/live")) {
  2102.  
  2103.                                 while (($entry_summary_comments = readdir($dh_summary_comments)) !== false) {
  2104.  
  2105.                                         if ($entry_summary_comments != "." && $entry_summary_comments != "..") {
  2106.                                                 $items_summary_comments[] = $entry_summary_comments;
  2107.                                         }
  2108.                                 }
  2109.                                 closedir($dh_summary_comments);
  2110.                         }
  2111.  
  2112.                         rsort($items_summary_comments);
  2113.  
  2114.                         $summary_comments = count($items_summary_comments);
  2115.        
  2116.                         if ($summary_comments > 0) {
  2117.                                 echo "&show=comments";
  2118.                         }
  2119.        
  2120.                         echo "\">";
  2121.                         readfile("data/items/$latest[$increment_latest]/title.txt");
  2122.                         echo "</a></td>";
  2123.  
  2124.                         echo "<td bgcolor=\"#ffffff\"><a href=\"member.php?id=";
  2125.                         readfile("data/items/$latest[$increment_latest]/author.txt");
  2126.                         echo "\">";
  2127.                         readfile("data/items/$latest[$increment_latest]/author.txt");
  2128.                         echo "</a></td>";
  2129.                         echo "<td bgcolor=\"#ffffff\" align=\"right\">";
  2130.  
  2131.                         if (!file_exists("data/items/$latest[$increment_latest]/views.txt")) {
  2132.                                 echo 0;
  2133.                         }
  2134.                         else {
  2135.                                 readfile("data/items/$latest[$increment_latest]/views.txt");
  2136.                         }
  2137.        
  2138.                         echo "</td>";
  2139.  
  2140.                         if ($summary_comments < 1) {
  2141.  
  2142.                                 $iso_year = substr($latest[$increment_latest],0,4);
  2143.                                 $iso_month = substr($latest[$increment_latest],4,2);
  2144.                                 $iso_day = substr($latest[$increment_latest],6,2);
  2145.                                 $iso_last = $iso_year . "-" . $iso_month . "-" . $iso_day;
  2146.  
  2147.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">0</td>";
  2148.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">$iso_last</td>";
  2149.                         }
  2150.                         else {
  2151.                                 $iso_year = substr($items_summary_comments[0],0,4);
  2152.                                 $iso_month = substr($items_summary_comments[0],4,2);
  2153.                                 $iso_day = substr($items_summary_comments[0],6,2);
  2154.                                 $iso_last = $iso_year . "-" . $iso_month . "-" . $iso_day;
  2155.  
  2156.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">$summary_comments</td>";
  2157.                                 echo "<td bgcolor=\"#ffffff\" align=\"right\">$iso_last</td>";
  2158.                         }
  2159.        
  2160.                         unset($items_summary_comments);
  2161.  
  2162.                         $increment_latest = $increment_latest + 1;
  2163.                 }
  2164.         }
  2165.  
  2166.         if ($count_latest > 0) {
  2167.  
  2168.                 echo "</table></div>";
  2169.  
  2170.                 if (file_exists("data/round.txt")) {
  2171.                         echo "<b class=\"rbbottom\"><b class=\"rb4b\"></b><b class=\"rb3b\"></b><b class=\"rb2b\"></b><b class=\"rb1b\"></b></b>";
  2172.                 }
  2173.         }
  2174.  
  2175. }
  2176.  
  2177. ?>
  2178.  
  2179. <?php
  2180.  
  2181. if ($count_center_panels > 0) {
  2182.  
  2183.         foreach ($center_panels as $center_panel) {
  2184.  
  2185.                 if (!file_exists("data/panels/$center_panel/free.txt")) {
  2186.  
  2187.                         if (file_exists("data/round.txt")) {
  2188.                                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  2189.                         }
  2190.                         else {
  2191.                                 echo '<div id="panel_title">';
  2192.                         }
  2193.  
  2194.                         readfile("data/panels/$center_panel/title.txt");
  2195.  
  2196.                         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2197.                                 echo "<a href=panels.php#{$center_panel}>";
  2198.                                 echo '<img src=images/widget.edit.png border=0 width=11 height=11 align=right></a>';
  2199.                         }
  2200.  
  2201.                         echo '</div><div id=panel_body>';
  2202.                 }
  2203.  
  2204.                 if (file_exists("data/panels/$center_panel/free.txt")) {
  2205.                         echo '<div id=panel_free>';
  2206.                 }
  2207.  
  2208.                 include("data/panels/$center_panel/panel.php");
  2209.  
  2210.                 echo '</div>';
  2211.  
  2212.                 if (file_exists("data/round.txt") and !file_exists("data/panels/$center_panel/free.txt")) {
  2213.                         echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  2214.                 }
  2215.         }
  2216. }
  2217.  
  2218. ?>
  2219.  
  2220. <?php
  2221.  
  2222. if (isset($req_category) and !empty($req_category)) {
  2223.  
  2224.         if (file_exists("data/categories/$req_category/book.txt")) {
  2225.                 sort($items);
  2226.                 reset($items);
  2227.         }
  2228. }
  2229.  
  2230. if ($count_items == 0) {
  2231.  
  2232.         echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#cccccc\" style=\"background-color: transparent;\"><tr><td width=\"$wmain\">";
  2233.  
  2234.         if (file_exists("data/round.txt")) {
  2235.                 echo '<b class="rbtop"><b class="rb1t"></b><b class="rb2t"></b><b class="rb3t"></b><b class="rb4t"></b></b><div class="xtitle">';
  2236.         }
  2237.         else {
  2238.                 echo '<div id="panel_title">';
  2239.         }
  2240.  
  2241.         echo "Oops!</div><div id=panel_body><table border=0 cellspacing=0 cellpadding=4><tr>";
  2242.         echo "<td valign=middle><img src=images/oops.png width=36 height=36 border=0></td><td valign=middle>";
  2243.  
  2244.         if (($count_grand == 0) and (count($_GET) == 0)) {
  2245.                 echo "No entries found. Perhaps this is a fresh install.";
  2246.         }
  2247.         else {
  2248.                 if (count($_GET) > 0) {
  2249.                         echo "The entry you are looking for does not exist or is off limits to you.";
  2250.                 }
  2251.                 else {
  2252.                         echo "Login required. Entries are off limits without proper credentials.";
  2253.                 }
  2254.         }
  2255.  
  2256.         echo '</td></tr></table></div>';
  2257.  
  2258.         if (file_exists("data/round.txt")) {
  2259.                 echo '<b class="rbbottom"><b class="rb4b"></b><b class="rb3b"></b><b class="rb2b"></b><b class="rb1b"></b></b>';
  2260.         }
  2261.  
  2262.         echo "</td></tr></table>";
  2263. }
  2264.  
  2265. $start = $_REQUEST['start'];
  2266.  
  2267. if (!isset($_REQUEST['start']) or empty($_REQUEST['start'])) {
  2268.         $start = 0;
  2269. }
  2270.  
  2271. $end = $start + $increase;
  2272.    
  2273. $disp = array_slice($items,$start,$increase);
  2274.  
  2275. foreach ($disp as $d) {
  2276.  
  2277.         echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" bgcolor=\"#cccccc\" style=\"background-color: transparent;\"><tr><td width=\"$wmain\">";
  2278.  
  2279.         if (file_exists("data/round.txt")) {
  2280.                 echo "<b class=\"rbtop\"><b class=\"rb1t\"></b><b class=\"rb2t\"></b><b class=\"rb3t\"></b><b class=\"rb4t\"></b></b><div class=\"xtitle\">";
  2281.         }
  2282.         else {
  2283.                 echo "<div id=\"panel_title\">";
  2284.         }
  2285.  
  2286.         readfile("data/items/$d/title.txt");
  2287.  
  2288.         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("data/items/$d/edit.txt") or (file_get_contents("data/items/$d/author.txt") == $_SESSION['logged_in'])) and file_exists("data/members/active/{$_SESSION['logged_in']}/rw.txt") and !file_exists("data/items/$d/passwd.txt")) {
  2289.  
  2290.                 if (file_exists("data/items/$d/wiki/delta") and (count(glob("data/items/$d/wiki/delta/*")) > 0)) {
  2291.                         echo "<a href=\"wiki.php?entry=$d\">";
  2292.                         echo "<img src=\"images/widget.back.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"revisions\">";
  2293.                         echo "</a>";
  2294.                 }
  2295.                 echo "<a href=\"edit.php?entry=$d\"><img src=\"images/widget.edit.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"edit entry\"></a>";
  2296.         }
  2297.  
  2298.         if (isset($_SESSION['logged_in']) and ($_SESSION['logged_in'] == $login_username)) {
  2299.  
  2300.                 echo "<a href=\"del.php?entry=$d\"><img src=\"images/widget.del.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"delete entry\"></a>";
  2301.  
  2302.                 if (!file_exists("data/items/$d/private.txt") and !file_exists("data/items/$d/categories") and file_exists("data/bb.txt") and (count(glob("data/items/$d/comments/live/*")) === 0) and (count(glob("data/items/$d/comments/pending/*")) === 0)) {
  2303.                         echo "<a href=\"move.php?entry=$d\"><img src=\"images/widget.move.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"move to comment\"></a>";
  2304.                 }
  2305.  
  2306.                 if (file_exists("data/items/$d/wiki/delta") and (count(glob("data/items/$d/wiki/delta/*")) > 0)) {
  2307.                         echo "<a href=\"wiki.php?entry=$d\"><img src=\"images/widget.back.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"revisions\"></a>";
  2308.                 }
  2309.  
  2310.                 echo "<a href=\"edit.php?entry=$d\"><img src=\"images/widget.edit.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"edit entry\"></a>";
  2311.  
  2312.                 if (file_exists("data/items/$d/passwd.txt")) {
  2313.                         echo "<img src=\"images/widget.protected.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"protected entry\">";
  2314.                 }
  2315.  
  2316.                 if (file_exists("data/items/$d/private.txt")) {
  2317.                         echo "<img src=\"images/widget.private.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"private entry\">";
  2318.                 }
  2319.  
  2320.                 if (file_exists("data/items/$d/member.txt")) {
  2321.                         echo "<img src=\"images/widget.member.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"members-only entry\">";
  2322.                 }
  2323.  
  2324.                 if (file_exists("data/items/$d/cat.txt")) {
  2325.                         echo "<img src=\"images/widget.cat.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"always displayed\">";
  2326.                 }
  2327.  
  2328.                 if (file_exists("data/items/$d/categories/$req_category")) {
  2329.  
  2330.                         $private_categories = "0";
  2331.                         $book_categories = "0";
  2332.        
  2333.                         if (file_exists("data/items/$d/categories")) {
  2334.                                
  2335.                                 if ($dh_read_cat_dir = opendir("data/items/$d/categories")) {
  2336.                                
  2337.                                         while (($read_cat_dir = readdir($dh_read_cat_dir)) !== false) {
  2338.                                
  2339.                                                 if ($read_cat_dir != "." && $read_cat_dir != "..") {
  2340.                                
  2341.                                                         if (file_exists("data/categories/$read_cat_dir/private.txt")) {
  2342.                                                                 $private_categories = $private_categories + 1;
  2343.                                                         }
  2344.  
  2345.                                                         if (file_exists("data/categories/$read_cat_dir/book.txt")) {
  2346.                                                                 $book_categories = $book_categories + 1;
  2347.                                                         }
  2348.                                                 }
  2349.                                         }
  2350.                                         closedir($dh_read_cat_dir);
  2351.                                 }
  2352.                         }
  2353.  
  2354.                         if ($private_categories > 0) {
  2355.                                 echo "<img src=\"images/widget.hidden.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"private category\">";
  2356.                         }
  2357.  
  2358.                         if (file_exists("data/nocat.txt")) {
  2359.                                 echo "<img src=\"images/widget.isolated.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"isolated category\">";
  2360.                         }
  2361.  
  2362.                         if ($book_categories > 0) {
  2363.                                 echo "<img src=\"images/widget.booked.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"book category\">";
  2364.                         }
  2365.  
  2366.                         echo "<img src=\"images/widget.filed.png\" border=\"0\" width=\"11\" height=\"11\" align=\"right\" alt=\"filed\">";
  2367.                 }
  2368.  
  2369.         }
  2370.  
  2371.         echo "</div><div id=\"panel_entry_body\"><table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr>";
  2372.  
  2373.         if (file_exists("data/bb.txt") and file_exists("data/avatar.txt") and file_exists("data/items/$d/author.txt")) {
  2374.  
  2375.                 echo "<td width=\"85\" valign=\"top\">";
  2376.  
  2377.                 $author = file_get_contents("data/items/$d/author.txt");
  2378.  
  2379.                 echo "<a href=\"member.php?id=$author\">";
  2380.  
  2381.                 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"))) {
  2382.  
  2383.                         if (file_exists("images/avatar.gif")) {
  2384.  
  2385.                                 $avatar_gif_image_size = getimagesize("images/avatar.gif");
  2386.                                 $avatar_gif_image_width = $avatar_gif_image_size[0];
  2387.                                 $avatar_gif_image_height = $avatar_gif_image_size[1];
  2388.  
  2389.                                 $max_avatar_gif_image_width = 80;
  2390.                        
  2391.                                 if ($avatar_gif_image_width > $max_avatar_gif_image_width) {  
  2392.                                         $sizefactor = (double) ($max_avatar_gif_image_width / $avatar_gif_image_width) ;
  2393.                                         $avatar_gif_image_width = (int) ($avatar_gif_image_width * $sizefactor);
  2394.                                         $avatar_gif_image_height = (int) ($avatar_gif_image_height * $sizefactor);
  2395.                                 }
  2396.                                 echo "<img src=\"images/avatar.gif\" border=\"0\" width=\"$avatar_gif_image_width\" height=\"$avatar_gif_image_height\">";
  2397.                         }
  2398.  
  2399.                         if (file_exists("images/avatar.jpg")) {
  2400.  
  2401.                                 $avatar_jpg_image_size = getimagesize("images/avatar.jpg");
  2402.                                 $avatar_jpg_image_width = $avatar_jpg_image_size[0];
  2403.                                 $avatar_jpg_image_height = $avatar_jpg_image_size[1];
  2404.                        
  2405.                                 $max_avatar_jpg_image_width = 80;
  2406.                        
  2407.                                 if ($avatar_jpg_image_width > $max_avatar_jpg_image_width) {  
  2408.                                         $sizefactor = (double) ($max_avatar_jpg_image_width / $avatar_jpg_image_width) ;
  2409.                                         $avatar_jpg_image_width = (int) ($avatar_jpg_image_width * $sizefactor);
  2410.                                         $avatar_jpg_image_height = (int) ($avatar_jpg_image_height * $sizefactor);
  2411.                                 }
  2412.                                 echo "<img src=\"images/avatar.jpg\" border=\"0\" width=\"$avatar_jpg_image_width\" height=\"$avatar_jpg_image_height\">";
  2413.                         }
  2414.  
  2415.                         if (file_exists("images/avatar.png")) {
  2416.  
  2417.                                 $avatar_png_image_size = getimagesize("images/avatar.png");
  2418.                                 $avatar_png_image_width = $avatar_png_image_size[0];
  2419.                                 $avatar_png_image_height = $avatar_png_image_size[1];
  2420.                        
  2421.                                 $max_avatar_png_image_width = 80;
  2422.                        
  2423.                                 if ($avatar_png_image_width > $max_avatar_png_image_width) {  
  2424.                                         $sizefactor = (double) ($max_avatar_png_image_width / $avatar_png_image_width) ;
  2425.                                         $avatar_png_image_width = (int) ($avatar_png_image_width * $sizefactor);
  2426.                                         $avatar_png_image_height = (int) ($avatar_png_image_height * $sizefactor);
  2427.                                 }
  2428.                        
  2429.                                 echo "<img src=\"images/avatar.png\" border=\"0\" width=\"$avatar_png_image_width\" height=\"$avatar_png_image_height\">";
  2430.                         }
  2431.                         echo "<br>";
  2432.                 }
  2433.                 elseif (file_exists("images/members/$author/avatar.jpg") or file_exists("images/members/$author/avatar.gif") or file_exists("images/members/$author/avatar.png")) {
  2434.  
  2435.                         if (file_exists("images/members/$author/avatar.gif")) {
  2436.  
  2437. &n