Difference between revisions of "Mesh/Website/Local"

From Sudo Room
Jump to navigation Jump to search
(adds more)
 
(6 intermediate revisions by 2 users not shown)
Line 6: Line 6:
* Install [https://en.wikipedia.org/wiki/LAMP_(software) LAMP server] which is a common software stack of Linux with Apache, MySQL, and PHP (but also can refer to Perl/Python).  
* Install [https://en.wikipedia.org/wiki/LAMP_(software) LAMP server] which is a common software stack of Linux with Apache, MySQL, and PHP (but also can refer to Perl/Python).  
*: <code>$ sudo apt-get install tasksel</code>
*: <code>$ sudo apt-get install tasksel</code>
*:* Select the "LAMP server" option with the space bar, then press enter or select the "OK" button.
*: or, possibly use:  
*: or, possibly use:  
*: <code>$ sudo apt-get install lamp-server</code>
*: <code>$ sudo apt-get install lamp-server</code>
*: if that doesn't work, try installing lamp via the following:
*:<code>$ sudo apt-get install apache2</code>
*: Then install PHP:
*:<code>$ sudo apt-get install php5 libapache2-mod-php5 </code>
* Examine how Apache runs, can be managed as a <code>service</code> to "reload" or "restart", and how it works with PHP.
* Examine how Apache runs, can be managed as a <code>service</code> to "reload" or "restart", and how it works with PHP.
** For most of this, having a full LAMP install saves a bit of configuration time to get running.
** For most of this, having a full LAMP install saves a bit of configuration time to get running.
Line 25: Line 30:
**: <code>$ sudo service nscd restart</code>
**: <code>$ sudo service nscd restart</code>
** Now visit <code>http://peoplesopen.loc</code> in your browser
** Now visit <code>http://peoplesopen.loc</code> in your browser
* Install WordPress (it's easy!
* Install WordPress (it's easy!)
** Grab a copy of latest wordpress:
** Grab a copy of latest wordpress:
**: $ cd /var/www/peoplesopen.loc
**: <code>$ cd /var/www/peoplesopen.loc</code>
**: $ wget http://wordpress.org/latest.zip
**: <code>$ wget http://wordpress.org/latest.zip</code>
**: $ unzip latest.zip
**: <code>$ unzip latest.zip</code>
**: $ mv wordpress/* public_html/
**: <code>$ mv wordpress/* public_html/</code>
**: $ rm -r wordpress/
**: <code>$ rm -r wordpress/</code>
** Change owners (this lets the Apache users, who goes by www-data on debian/ubuntu own the files and write to them, but you can too as the group owner)
** Change owners (this lets the Apache users, who goes by www-data on debian/ubuntu own the files and write to them, but you can too as the group owner)
**: $ sudo chown www-data:YOURUSERNAME ./ -R
**: <code>$ sudo chown www-data:YOURUSERNAME ./ -R</code>
**: $ sudo chmod g+w ./ -R
**: <code>$ sudo chmod g+w ./ -R</code>
** Create a MySQL database.
** Create a MySQL database.
**: $ mysql -u root -p
**: <code>$ mysql -u root -p</code>
**: mysql> create database peoplesopen;
**: <code>mysql> create database peoplesopen;</code>
**: mysql> show databases;
**: <code>mysql> show databases;</code>
**: mysql> quit;
**: <code>mysql> quit;</code>
** Browse to <code>http://peoplesopen.loc</code> to proceed with the installation process, filling out with the information from the previous steps.
** Browse to <code>http://peoplesopen.loc</code> to proceed with the installation process, filling out with the information from the previous steps.
*** Fill out the basic site information (doesn't really matter, use whatever is helpful), including a local user account. Don't forget the password, it'll be easier not to.
*** Fill out the basic site information (doesn't really matter, use whatever is helpful), including a local user account. Don't forget the password, it'll be easier not to.
** Once you've finished and logged in to this new local site, clone the github repository to your local machine.
** Once you've finished and logged in to this new local site, we need to install the themes, including making a clone of the github repository of the peoplesopen "child theme" to your local machine.
**: <code>$ git clone https://github.com/sudomesh/peoplesopen</code>
**: <code>$ cd /var/www/peoplesopen.loc/wp-content/themes/</code>
**: <code>$ wget https://github.com/downloads/320press/wordpress-foundation/wp-foundation-v2.0.zip</code>
**: <code>$ unzip wp-foundation-v2.0.zip</code>
**: <code>$ git clone git@github.com:sudomesh/peoplesopen.git</code>
*** If you don't have git installed, install it this way:
*** If you don't have git installed, install it this way:
***: <code>$ sudo apt-get install git</code>
***: <code>$ sudo apt-get install git</code>
** Finally, since the "child theme" specifies some custom colors, we need to save them so they show up:
*** Go to http://peoplesopen.loc/wp-admin/themes.php?page=options-framework and select "Save options" at the bottom of the page.
=== Mac OSX Flavas..===
So, the big difference between going the MAMP route and installing on Linux, is that on MAMP your local dev environment is not in <code>$ /var/www </code>but instead in <code>$ /Applications/htdocs</code>
'''1. Install MAMP:'''
http://www.mamp.info/en/index.html
Note: Just download the free version, the pro automatically comes bundled with it.
'''2. Download WordPress:'''
http://en-ca.wordpress.org/download/
'''3. move it from your Downloads folder and put it here:'''
<code>$ /Applications/MAMP/htdocs</code>
<code> $ unzip </code> [Your WP zip file]
'''4. You're going to need to do some minor configuration:'''
  - Build a database on phpMyAdmin
  - Create users, etc
  - If you've never installed WP, read this:
    http://codex.wordpress.org/Installing_WordPress
  -Once WP is installed and ready to go, then proceed to the next step
'''5. Get the conf file'''
Now that you know where things are, go get the Apache conf file from here:
https://gist.github.com/wrought/7296693
Save it as <code>peoplesopen.loc.conf</code> and put is here:
<code>$ /Applications/MAMP/conf</code>
6. Now, go download the 'wp-foundation' theme and move it to your 'themes' folder
http://320press.com/wp-foundation/
themes folder is located at <code>$ /Applications/MAMP/htdocs/peoplesopen/wordpress/wp-content/themes</code>
7.  Next, clone the People's Open theme and put it in your 'themes' folder:
go to your themes folder and type:
<code>$ git clone git@github.com:sudomesh/peoplesopen.git </code>
Note: PeoplesOpen theme is built on top of the WP-Foundation theme
8.  Now  that you have all the necessary files, log into your wp-damin GUI and activate the PeoplesOpen theme. And voila!  You're done ;)

Latest revision as of 12:59, 9 November 2013

How to set up a local instance of a sudo mesh sites, namely peoplesopen.net.

peoplesopen.net website

Debian / Ubuntu / General? Linux

  • Install LAMP server which is a common software stack of Linux with Apache, MySQL, and PHP (but also can refer to Perl/Python).
    $ sudo apt-get install tasksel
    • Select the "LAMP server" option with the space bar, then press enter or select the "OK" button.
    or, possibly use:
    $ sudo apt-get install lamp-server
    if that doesn't work, try installing lamp via the following:
    $ sudo apt-get install apache2
    Then install PHP:
    $ sudo apt-get install php5 libapache2-mod-php5
  • Examine how Apache runs, can be managed as a service to "reload" or "restart", and how it works with PHP.
    • For most of this, having a full LAMP install saves a bit of configuration time to get running.
    • Apache site config file: https://gist.github.com/wrought/7296693 for /etc/apache2/sites-available/peoplesopen.loc
      $ sudo nano /etc/apache2/sites-available/peoplesopen.loc.conf
        • For some reason, modern Ubuntu needs the ".conf" on the end--it shouldn't really matter, but it's convenient.
    • Create the directories for your site
      $ sudo mkdir /var/www/peoplesopen.loc/public_html -p
    • Need to enable site with:
      $ sudo service apache2 restart
      $ sudo a2ensite peoplesopen.loc
      • You may need to
  • Edit /etc/hosts file to include something like this line (unless you have a specific configuration):
    127.0.1.1 peoplesopen.loc
    • If you happen to be using a local dns caching system, you may need clear it with something like:
      $ sudo service nscd restart
    • Now visit http://peoplesopen.loc in your browser
  • Install WordPress (it's easy!)
    • Grab a copy of latest wordpress:
      $ cd /var/www/peoplesopen.loc
      $ wget http://wordpress.org/latest.zip
      $ unzip latest.zip
      $ mv wordpress/* public_html/
      $ rm -r wordpress/
    • Change owners (this lets the Apache users, who goes by www-data on debian/ubuntu own the files and write to them, but you can too as the group owner)
      $ sudo chown www-data:YOURUSERNAME ./ -R
      $ sudo chmod g+w ./ -R
    • Create a MySQL database.
      $ mysql -u root -p
      mysql> create database peoplesopen;
      mysql> show databases;
      mysql> quit;
    • Browse to http://peoplesopen.loc to proceed with the installation process, filling out with the information from the previous steps.
      • Fill out the basic site information (doesn't really matter, use whatever is helpful), including a local user account. Don't forget the password, it'll be easier not to.
    • Once you've finished and logged in to this new local site, we need to install the themes, including making a clone of the github repository of the peoplesopen "child theme" to your local machine.
      $ cd /var/www/peoplesopen.loc/wp-content/themes/
      $ wget https://github.com/downloads/320press/wordpress-foundation/wp-foundation-v2.0.zip
      $ unzip wp-foundation-v2.0.zip
      $ git clone git@github.com:sudomesh/peoplesopen.git
      • If you don't have git installed, install it this way:
        $ sudo apt-get install git
    • Finally, since the "child theme" specifies some custom colors, we need to save them so they show up:

Mac OSX Flavas..

So, the big difference between going the MAMP route and installing on Linux, is that on MAMP your local dev environment is not in $ /var/www but instead in $ /Applications/htdocs

1. Install MAMP: http://www.mamp.info/en/index.html Note: Just download the free version, the pro automatically comes bundled with it.

2. Download WordPress: http://en-ca.wordpress.org/download/

3. move it from your Downloads folder and put it here: $ /Applications/MAMP/htdocs $ unzip [Your WP zip file]

4. You're going to need to do some minor configuration:

 - Build a database on phpMyAdmin
 - Create users, etc
 - If you've never installed WP, read this:
   http://codex.wordpress.org/Installing_WordPress
 -Once WP is installed and ready to go, then proceed to the next step

5. Get the conf file Now that you know where things are, go get the Apache conf file from here: https://gist.github.com/wrought/7296693

Save it as peoplesopen.loc.conf and put is here: $ /Applications/MAMP/conf

6. Now, go download the 'wp-foundation' theme and move it to your 'themes' folder http://320press.com/wp-foundation/

themes folder is located at $ /Applications/MAMP/htdocs/peoplesopen/wordpress/wp-content/themes

7. Next, clone the People's Open theme and put it in your 'themes' folder: go to your themes folder and type: $ git clone git@github.com:sudomesh/peoplesopen.git

Note: PeoplesOpen theme is built on top of the WP-Foundation theme

8. Now that you have all the necessary files, log into your wp-damin GUI and activate the PeoplesOpen theme. And voila! You're done ;)