Просмотр файла engine/includes/chmod_test.php

Размер файла: 2.85Kb
  1. <?
  2.  
  3. $install = !file_exists(H.'engine/files/data/settings.ini');
  4.  
  5. chmod(H.'style/users/avatar/',0777);
  6. chmod(H.'engine/files/data/',0777);
  7.  
  8. chmod(H.'engine/files/modules/archives/',0777);
  9. chmod(H.'engine/files/modules/configs/',0777);
  10. chmod(H.'engine/files/backup/files/',0777);
  11. chmod(H.'engine/files/backup/mysql/',0777);
  12. chmod(H.'engine/files/users/cache/',0777);
  13.  
  14. chmod(H.'engine/files/tmp/',0777);
  15. chmod(H.'style/themes/',0777);
  16. if ($install)
  17. {
  18. chmod(H.'install/',0777);
  19. chmod(H.'lib/files/attach/',0777);
  20. chmod(H.'lib/files/cache/',0777);
  21. chmod(H.'lib/files/download/html/',0777);
  22. chmod(H.'lib/files/download/txt/',0777);
  23. chmod(H.'lib/files/upload/',0777);
  24. chmod(H.'download/files/',0777);
  25. chmod(H.'download/about/',0777);
  26. chmod(H.'download/screen/',0777);
  27. chmod(H.'download/time_files/created_java/files', 0777);
  28. chmod(H.'download/time_files/created_zip/', 0777);
  29. chmod(H.'download/time_files/open_zip/', 0777);
  30. chmod(H.'forum/files/attach/', 0777);
  31. }
  32. else
  33. chmod(H.'engine/files/data/settings.ini', 0777);
  34.  
  35. function permissions($filez){
  36. return decoct(@fileperms("$filez")) % 1000;
  37. }
  38.  
  39.  
  40. function test_chmod($df,$chmod)
  41. {
  42. global $err,$user;
  43. if (isset($user) && $user['level']==10)
  44. $show_df=preg_replace('#^'.preg_quote(H).'#', '/', $df);
  45. else $show_df=$df;
  46.  
  47.  
  48. @list($f_chmod1,$f_chmod2,$f_chmod3)=str_split(permissions($df));
  49. list($n_chmod1,$n_chmod2,$n_chmod3)=str_split($chmod);
  50. //list($m_chmod1,$m_chmod2,$m_chmod3)=str_split($max_chmod);
  51.  
  52. if ($f_chmod1<$n_chmod1 || $f_chmod2<$n_chmod2 || $f_chmod3<$n_chmod3)
  53. {
  54. $err[]="Установите CHMOD $n_chmod1$n_chmod2$n_chmod3 на $show_df";
  55. echo "<div class='err'>$show_df : [$f_chmod1$f_chmod2$f_chmod3] - >$n_chmod1$n_chmod2$n_chmod3</div>\n";
  56. }
  57. else
  58. {
  59. echo "<div class='menu_razd'>$show_df ($n_chmod1$n_chmod2$n_chmod3) : $f_chmod1$f_chmod2$f_chmod3 (OK)</div>\n";
  60. }
  61. }
  62.  
  63.  
  64. if ($install)
  65. {
  66. test_chmod(H.'install/',777);
  67. test_chmod(H.'lib/files/attach/',777);
  68. test_chmod(H.'lib/files/cache/', 777);
  69. test_chmod(H.'lib/files/download/html/',777);
  70. test_chmod(H.'lib/files/download/txt/',777);
  71. test_chmod(H.'lib/files/upload/', 777);
  72. test_chmod(H.'download/files/', 777);
  73. test_chmod(H.'download/about/', 777);
  74. test_chmod(H.'download/screen/', 777);
  75. test_chmod(H.'download/time_files/created_java/files', 777);
  76. test_chmod(H.'download/time_files/created_zip/', 777);
  77. test_chmod(H.'download/time_files/open_zip/', 777);
  78. test_chmod(H.'forum/files/attach/', 777);
  79. }
  80.  
  81. test_chmod(H.'style/users/avatar/',777);
  82. test_chmod(H.'engine/files/data/',777);
  83.  
  84. test_chmod(H.'engine/files/modules/archives/',777);
  85. test_chmod(H.'engine/files/modules/configs/',777);
  86. test_chmod(H.'engine/files/backup/files/',777);
  87. test_chmod(H.'engine/files/backup/mysql/',777);
  88. test_chmod(H.'engine/files/users/cache/',777);
  89.  
  90. test_chmod(H.'engine/files/tmp/',777);
  91. test_chmod(H.'style/themes/',777);
  92.  
  93.  
  94. if (file_exists(H.'engine/files/data/settings.ini'))test_chmod(H.'engine/files/data/settings.ini',666);