Guest User

Untitled

a guest
Jul 16th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. aptitude install \
  4. apache2 \
  5. mysql-server \
  6. libapache2-mod-php5 \
  7. php5 \
  8. php5-mysql \
  9. php5-mcrypt \
  10. php5-gd \
  11. php5-cli \
  12. git-core \
  13. php-pear \
  14. memcached \
  15. php5-memcache
  16.  
  17. a2enmod rewrite
  18.  
  19. # Install some usefull pear packages
  20.  
  21. pear install Pager
  22. pear install Console_Commandline
  23. pear install Console_Color
  24. pear install Text_Highlighter-0.7.1
  25. pear install Validate-0.8.4
  26. pear install Mail
  27. pear install Mail_Mime
  28. pear install HTML_Safe-0.10.1
  29. pear install Image_Transform-0.9.3
  30. pear install Net_SMTP
  31. pear install Cache_Lite
  32.  
  33.  
  34. # install markdown (used in a couple of filters)
  35. pear channel-discover pear.michelf.com
  36. pear install michelf/MarkdownExtra
  37.  
  38. # pearhub.org seems to be broken. Need facebook the get it on github.
  39. # install facebook php-sdk (account/facebook)
  40. # pear channel-discover pearhub.org
  41. # pear install pearhub/facebook
  42.  
  43. # For automatic documentation. Install:
  44. pear install PhpDocumentor
  45.  
  46. # for aksimet
  47. pear install Net_URL2-0.3.1
  48. pear install HTTP_Request2-0.5.2
  49. pear install Services_Akismet2-0.3.1
  50.  
  51. # Install Zend Framework (openid implementation)
  52.  
  53. aptitude install zendframework
  54.  
  55. #
  56.  
  57. echo "Remember to check if Zend/ directory exists in your php_include_path"
  58. echo "Or move Zend/ to default include_path (only used for open id so far.)"
  59. echo "But always good to have!"
  60. echo ""
  61. echo "Zend lib should be placed in /usr/share/php/Zend"
Add Comment
Please, Sign In to add comment