INDX( W \n(~Sxb4K?3H0PE>Lً|R4K?3HPD message_list.phpTxb6K3H!UF>L|R6K3H0. message_send.phpRpZr_33H")E>Lֲ|Rr_33H g MESSAG~1.PHPSpZ4K?3H0PE>Lً|R4K?3HPD MESSAG2.PHPTpZ6K3H!UF>L|R6K3H0. MESSAG~3.PHPUhR"W3HzF>Lŗ|R"W3H@{3 misc.phpVpZ.g3H\)`G>L|R.g3Hnw moderate.phpWxbx3HڈG>Lv|Rz3Hjq moderatepoll.phpWpZx3HڈG>Lv|Rz3Hjq MODERA~1.PHPXhVц3HXG>Lvت|Rц3H  online.php`P,^>H5?H5?H@WSHpluginsYhR63HpoH>La|R63H< poll.phpZhR`3H8I>L숻|R`3H2 post.php[hX3HrYI>L|R3HPON profile.php\(hV3H*J>L|R3Hpg search.phpg`L_4H4H4H\SHstyleta]xh*3H<4J>Lp`|R*3H uninstall.agora.php]pZ*3H<4J>Lp`|R*3H UNINST~1.PHP^p\}3HJ>L$%|RF3HPL~|RT3H uploadimg_config.php`xh4H rK>L2L|R 4H@K: uploadimg_stats.phpaxf2A4H?'L>L|R2A4H`_ uploadimg_view.php^pZ}3HJ>L$%|RF3HPL~|RT3H UPLOAD~2.PHP`pZ4H rK>L2L|R 4H@K: UPLOAD~3.PHPapZ2A4H?'L>L|R2A4H`_ UPLOAD~4.PHPbpZ,$4HK>L|R,$4H0% userlist.phpcp\04HnrL>LN|R04H`U viewforum.phpcpZ04HnrL>LN|R04H`U VIEWFO~1.PHPdpZ,@4H!M>L#|R,@4Hp viewpoll.phpep\yQ4H`xN>LJ|RyQ4Hp}k viewtopic.phpepZyQ4H`xN>LJ|RyQ4Hp}k VIEWTO~1.PHPfhRde]4HʷM>L}Rde]4H  vote.phpINDX( [n(0)jF1H:7>Lf{RF1H s admin_captchabox.phpZ:x`VG2HF>>L{RVG2HPzE admin_users.phpEpVۭ2HTB>LA|Rۭ2H@o9 extern.phpRfr_33H")E>Lֲ|Rr_33H g message_delete.phpUser groups->Add new group */ /***************************************************** ** Statistics setting *****************************************************/ $Allow_Stats = array(); // // Listed below are user groups that are are allowed to view upload statistics. // // $Allow_Stats[] = "MY_USERGROUP"; // $Allow_Stats[] = "Administrators"; $Allow_Stats[] = "Moderators"; //$Allow_Stats[] = "Uploaders"; //$Allow_Stats[] = "Members"; /***************************************************** ** Delete setting *****************************************************/ $Allow_Delete = array(); // // Listed below are user groups that are allowed to delete their own uploaded images. // Note: Only Administrators can delete images of another user // // $Allow_Delete[] = "MY_USERGROUP"; // $Allow_Delete[] = "Administrators"; //$Allow_Delete[] = "Moderators"; //$Allow_Delete[] = "Uploaders"; //$Allow_Delete[] = "Members"; ?>erts">

"; ?> $val) { $summb = $summb + $nuwearray[$pos]["size"]; $sumuploads = $sumuploads + round(($nuwearray[$pos]["count"]/2),0); $sumposts = $sumposts + $nuwearray[$pos]["posts"]; $uploaderscount = $uploaderscount + 1; ?>
$val) { $$key = $val; } } // Get all vars from the POST method. Assign variable and value if($HTTP_POST_VARS) { foreach($HTTP_POST_VARS as $key => $val) { $$key = $val; } } // get file extension function GetExt($val) { $val = strtolower($val); switch($val) { case "gif"; $type = "GIF Image"; $image = "uploadimg_icon.gif"; break; case "jpg"; $type = "JPEG Image"; $image = "uploadimg_icon.gif"; break; case "jpeg"; $type = "JPEG Image"; $image = "uploadimg_icon.gif"; break; case "png"; $type = "PNG Image"; $image = "uploadimg_icon.gif"; break; //--- New Here---// default: $type = "Unknown Type"; $image = "uploadimg_icon.gif"; } // return both values (to be split) return $type."?".$image; } // Path to icon folder with ending slash $iconfolder = $forumurl; $_GLOBAL['image'] = ""; // Open images directory if(!isset($fdir)) { $fdir = "./".$idir; } $fdir = str_replace("../", "", $fdir); // Open thumbs directory if(!isset($fdir2)) { $fdir2 = "./".$tdir; } $fdir2 = str_replace("../", "", $fdir2); // check to see if still inside directory boundry $check = substr($fdir, 0, 2); if($check != "./") { $fdir = "./"; } $check = substr($fdir2, 0, 2); if($check != "./") { $fdir2 = "./"; } // setup file properties class class File_Properties { var $file_name; // just the file name var $file_ext; // file extension var $file_size; // size of file var $file_date; // date modified var $file_icon; // icon for file type var $file_type; // short description for file type // constructor method - build object function Build($file) { $this->setFname($file); $this->setFext($file); $this->setFsize($file); $this->setFdate($file); $this->setFicon_type(); } // Set file name function setFname($file) { $this->file_name = basename($file); } // set file extension function setFext($file) { $this->file_ext = array_pop(explode('.', $file)); } // set file size function setFsize($file) { $kbs = filesize($file) / 1024; $this->file_size = round($kbs, 2); } // set date modified function setFdate($file) { $modified = filectime($file); $this->file_date = date("M jS Y, H:i A", $modified); } // set file type function setFicon_type() { list($this->file_type, $this->file_icon) = split("\?", GetExt($this->file_ext), 2); } // setup all get/return methods for class vars function getFname() { return $this->file_name; } function getFext() { return $this->file_ext; } function getFsize() { return $this->file_size; } function getFdate() { return $this->file_date; } function getFicon() { return $this->file_icon; } function getFtype() { return $this->file_type; } } // initialize file and folder arrays $file_array = array(); $dir_array = array(); $Fname_array = array(); $Dname_array = array(); // open images directory $dir = opendir($fdir); // Read image files into array while(false !== ($file = readdir($dir))) { $parts = Explode('_', $file); $dienr = $parts[0]; if($file != "." && $file != ".." && is_numeric($dienr)) { $type = filetype($fdir.$file); $info = pathinfo($file); if($type != "dir") { if(isset($info["extension"])) { $file_extension = $info["extension"]; } } if($type == "file" && !in_array($file, $Exclude_File) && !in_array($file_extension, $Exclude_Extension)) { // setup file object $This_File = new File_Properties; $This_File->Build($fdir.$file); $file_array[] = $This_File; } } } closedir($dir); // open thumbs directory $dir2 = opendir($fdir2); // Read thumbnail files into array while(false !== ($file = readdir($dir2))) { $parts = Explode('_', $file); $dienr = $parts[0]; if($file != "." && $file != ".." && is_numeric($dienr)) { $type = filetype($fdir2.$file); $info = pathinfo($file); if($type != "dir") { if(isset($info["extension"])) { $file_extension = $info["extension"]; } } if($type == "file" && !in_array($file, $Exclude_File) && !in_array($file_extension, $Exclude_Extension)) { // setup file object $This_File = new File_Properties; $This_File->Build($fdir2.$file); $file_array[] = $This_File; } } } closedir($dir2); // Set default sort by method if(!isset($SortBy) || $SortBy != 0 && $SortBy != 1) { $SortBy = 1; } // Number of the column to sort by (0-3) set default to 0 if(!isset($NumSort) || $NumSort != 0 && $NumSort != 1 && $NumSort != 2 && $NumSort != 3) { $NumSort = 0; } // determin object sorting methods switch($NumSort) { case 0; $Fsort_method = "file_name"; $Dsort_method = "dir_name"; break; case 1; $Fsort_method = "file_size"; $Dsort_method = "dir_name"; break; case 2; $Fsort_method = "file_type"; $Dsort_method = "dir_name"; break; case 3; $Fsort_method = "file_date"; $Dsort_method = "dir_date"; break; default: $Fsort_method = "file_name"; $Dsort_method = "dir_name"; } // object sorting functions function ASC_sort_file_objects($a, $b) { global $Fsort_method; $obj1 = strtolower($a->$Fsort_method); $obj2 = strtolower($b->$Fsort_method); if ($obj1 == $obj2) return 0; return ($obj1 < $obj2) ? -1 : 1; } function ASC_sort_dir_objects($a, $b) { global $Dsort_method; $obj1 = strtolower($a->$Dsort_method); $obj2 = strtolower($b->$Dsort_method); if ($obj1 == $obj2) return 0; return ($obj1 < $obj2) ? -1 : 1; } function DESC_sort_file_objects($a, $b) { global $Fsort_method; $obj1 = strtolower($a->$Fsort_method); $obj2 = strtolower($b->$Fsort_method); if ($obj1 == $obj2) return 0; return ($obj1 > $obj2) ? -1 : 1; } function DESC_sort_dir_objects($a, $b) { global $Dsort_method; $obj1 = strtolower($a->$Dsort_method); $obj2 = strtolower($b->$Dsort_method); if ($obj1 == $obj2) return 0; return ($obj1 > $obj2) ? -1 : 1; } // sort ascending if($SortBy == 0) { // sort arrays (ASCENDING) usort($file_array, 'ASC_sort_file_objects'); usort($dir_array, 'ASC_sort_dir_objects'); $arrow = "▲"; $SortBy = 1; } // sort descending else { // sort arrays (DESCENDING) usort($file_array, 'DESC_sort_file_objects'); usort($dir_array, 'DESC_sort_dir_objects'); $arrow = "▼"; $SortBy = 0; } $othernum = 0; // alternate row counter $count = 0; $countj = 1; $kode = ""; // output file info for($y = 0; $y < count($file_array); $y++) //while (list($key, $val) = each($Fname_array)) { // alternate row colors if($count % 2 != 0) { $special = "bgcolor='$RowColor'"; } else { $special = ""; } $count++; //============= STATS CODE START ============= $fnf = $file_array[$y]->getFname(); $partss = Explode('_', $fnf); //initialize if ($kode != $partss[0]) { $kode = $partss[0]; $countj = $countj + 1; $nuwearray[$countj]["id"] = $kode; $nuwearray[$countj]["size"] = $file_array[$y]->getFsize(); $nuwearray[$countj]["count"] = 1; $result7 = $db->query('SELECT id, username, num_posts FROM '.$db->prefix.'users WHERE id = '.$kode); $krydit = $db->fetch_assoc($result7); $hierisdit = $krydit['username']; $hierisposts = $krydit['num_posts']; $result9 = $db->query('SELECT u.id, u.username, u.title, u.num_posts, u.registered, g.g_id, g.g_user_title FROM '.$db->prefix.'users AS u LEFT JOIN '.$db->prefix.'groups AS g ON g.g_id=u.group_id WHERE u.id = '.$kode); $user_data = $db->fetch_assoc($result9); $hieristitle = get_title($user_data); $nuwearray[$countj]["title"] = $hieristitle; if (empty($hierisdit)) { $hierisdit = $lang_uploadimg['Deleted user']; $nuwearray[$countj]["title"] = $lang_uploadimg['Deleted user']; } if (empty($hierisposts)) { $hierisposts = "0"; } $nuwearray[$countj]["name"] = $hierisdit; $nuwearray[$countj]["posts"] = $hierisposts; } //initialize end else { $nuwearray[$countj]["size"] = $nuwearray[$countj]["size"] + $file_array[$y]->getFsize(); $nuwearray[$countj]["count"] = $nuwearray[$countj]["count"] + 1; } //============= STATS CODE END ============= } $sortthis = $_GET['sortthis']; if (empty($sortthis)) { $sortthis = 'count'; $orde = "1"; } // sort by ? foreach ($nuwearray as $pos => $val) { $tmp_array[$pos] = $val[$sortthis]; if ($orde == "1") { arsort($tmp_array); } elseif ($orde == "0") { asort($tmp_array); } } if ($orde == "1") { $orde = "0"; } elseif ($orde == "0") { $orde = "1"; } ?>

".$lang_common['Username']." ".$lang_common['Title']." ".$lang_uploadimg['Uploads']." ".$lang_uploadimg['Megabyte']." ".$lang_common['Posts']."
 
foreiki.html" title="I CHAKRAS" class="Stile29">I CHAKRAS

YIN E YANG

I 5 PRINCIPI

IL PERCORSO VITALE

I 5 OGGETTI

".$lang_uploadimg['Filename']." $arrow ".$lang_uploadimg['Size']." ".$lang_uploadimg['Filetype'].""; if ($show_dim) echo "".$lang_uploadimg['Dimensions'].""; if ((in_array($agora_user['g_title'], $Allow_Delete)) && ($showdel)) { echo " ".$lang_uploadimg['Date']."    "; } else { echo " ".$lang_uploadimg['Date']."  "; } echo " "; $othernum = 0; // alternate row counter $count = 0; // output file info for($y = 0; $y < count($file_array); $y++) //while (list($key, $val) = each($Fname_array)) { // alternate row colors if($count % 2 != 0) { $special = "bgcolor='$RowColor'"; } else { $special = ""; } $count++; $filenm = $file_array[$y]->getFname(); $isize = getimagesize("$idir$filenm"); $iwidth = $isize[0]; $iheight = $isize[1]; echo " \"\" getFname()."\">".substr($file_array[$y]->getFname(),$prefix_length)." ".round($file_array[$y]->getFsize(), 0)." ".$lang_uploadimg['Kilobyte']." ".$file_array[$y]->getFtype()." ".$lang_uploadimg['Image'].""; if ($show_dim) echo "".$iwidth."x".$iheight.""; if ((in_array($agora_user['g_title'], $Allow_Delete)) && ($showdel)) { echo " ".format_time($file_array[$y]->getFdate())." getFname() . "\">".$lang_uploadimg['Get code']." getFname()."\" onClick=\"return confirmdelete();\">".$lang_uploadimg['Delete']." "; } else { echo "".format_time($file_array[$y]->getFdate())." getFname() . "\">".$lang_uploadimg['Get code']." ";