diff options
-rw-r--r-- | conf.php | 3 | ||||
-rw-r--r-- | test_index.php | 15 |
2 files changed, 9 insertions, 9 deletions
@@ -18,6 +18,9 @@ * */ +/** Where is the current app located. */ +$g_webapp_dir = '/var/www/bs'; + /** Full system path where packages are uploaded. */ $upload_dir = '/var/lib/schedbot/uploads'; diff --git a/test_index.php b/test_index.php index 55ee644..f96f3ed 100644 --- a/test_index.php +++ b/test_index.php @@ -201,7 +201,6 @@ $tmpl = <<<T T; if ($total > 0) { - echo getcwd(); foreach ($pkgs as $key => $p) { if (trim($p['package']) == '') { continue; @@ -220,16 +219,14 @@ if ($total > 0) { $typelink = ''; if ($p['type'] == 'failure') { - $typelink = '/uploads/' . $p['type'] . '/' . $p['path']; + $typelink = '/uploads/' . $p['type'] . '/' . $p['path']; } elseif ($p['type'] == 'rejected') { - $typelink = '/uploads/' . $p['type'] . '/' . $p['path'] . '.youri'; + $typelink = '/uploads/' . $p['type'] . '/' . $p['path'] . '.youri'; } else { - $typelink = '/uploads/done/' . $p['path']; - echo ".$typelink", ' = ', print_r(is_dir(".$typelink"), true), '<br>'; - - if (!is_dir(".$typelink")) { - $typelink = ''; - } + $typelink = '/uploads/done/' . $p['path']; + if (!is_dir(realpath($upload_dir . '/..' . $typelink))) { + $typelink = ''; + } } $typestr = $p['type']; if ($p['status']['build']) { |