How tos, tips, etc
Technical Tips
Comments
3 responses to “Technical Tips”
-
How to add campaign websites on network
- Log in to admin
- My Sites -> Network Admin -> Sites
- Add new
Optional: Giving the website its own domain name
- Buy domain name
- Point nameservers of domain name to ns1.rimuhosting.com and ns2.rimuhosting.com
- Admin work
- Log in to Rimuhosting control panel
- Manage DNS
- Add new zone
- Point to 74.50.59.207
- Edit /etc/apache2/sites-available/aigohost.org and add domain name
- /etc/init.d/apache2 restart
-
How to get your own icon: go to http://gravatar.com and sign up. WordPress will pull up the photo for the account that matches the email on record
-
When you wget and untar files from other servers, there will be permission issues disallowing WordPress from auto updating or modifying those files via the web interface. this can be solved by typing the following in terminal:
chown -Rf www-data /var/www/aigohost.org/public_html/wordpress/wp-content
It gives permission to the apache daemon (www-data) to own the files and allow other programs to edit files
Don’t do chmod 777, which is a security risk. Do chown first, and it should be enough.
Leave a Reply