quicksetup.php 478 B

1234567891011121314151617181920212223
  1. <html>
  2. <head>
  3. <title>Quick Setup</title>
  4. <link rel="stylesheet" href="tocas.css">
  5. </head>
  6. <body>
  7. <br><br>
  8. <div class="ts container">
  9. Quick Setup Script Started.<br>
  10. <?php
  11. $output = shell_exec('sudo chmod -R 777 /var/www/html/AOB');
  12. echo $output . "<br>";
  13. $output = shell_exec('ls -l /var/www/html');
  14. echo '<div class="ts segment">';
  15. echo "<pre>". $output."</pre>";
  16. echo '</div>';
  17. echo "<br>Quick Setup Script Ended.<br>";
  18. ?>
  19. <a href="index.php">Back</a>
  20. </div>
  21. </body>
  22. </html>