SpecialPathfile.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. $ztid=(int)$_GET['ztid'];
  19. if(empty($ztid))
  20. {
  21. $ztid=(int)$_POST['ztid'];
  22. }
  23. //验证权限
  24. //CheckLevel($logininid,$loginin,$classid,"zt");
  25. $returnandlevel=CheckAndUsernamesLevel('dozt',$ztid,$logininid,$loginin,$loginlevel);
  26. //专题
  27. if(!$ztid)
  28. {
  29. printerror('ErrorUrl','');
  30. }
  31. $ztr=$empire->fetch1("select ztid,ztname,ztpath from {$dbtbpre}enewszt where ztid='$ztid'");
  32. if(!$ztr['ztid'])
  33. {
  34. printerror('ErrorUrl','');
  35. }
  36. $filepath_r=array();
  37. $filepath_r['actionurl']='SpecialPathfile.php';
  38. $filepathr['filepath']=$ztr['ztpath'].'/uploadfile';
  39. $filepathr['filelevel']='dozt';
  40. $filepathr['addpostvar']='<input type="hidden" name="ztid" value="'.$ztid.'">';
  41. $filepathr['url']='位置:专题:<b>'.$ztr['ztname'].'</b> &gt; 管理专题附件';
  42. include('../file/TruePathfile.php');
  43. db_close();
  44. $empire=null;
  45. ?>