Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2015
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <?php
  2. /**
  3. * Plugin Name: Easy-Piwik
  4. * Plugin URI: http://dreamalityinnovations.com/easy-piwik
  5. * Description: This installs Piwik and configures WordPress to work with it
  6. * Version: 1.0
  7. * Author: TheMamboKing420
  8. * Author URI: http://dreamalityinnovations.com
  9. * License: GPL V3
  10. */
  11. ?>
  12.  
  13. <?php
  14. $tempFolder = '/tmp';
  15. $webRootFolder = '/var/www/html/wp-content/plugins';
  16. $scriptName = 'easy-piwik.sh';
  17. $moveCommand = "mv $webRootFolder/$scriptName $tempFolder/$scriptName";
  18. $output = shell_exec($moveCommand);
  19. ?>
  20.  
  21. <?php
  22. $output = shell_exec (“/tmp/easy-piwik.sh”);
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement