You can check your current timezone by just running...
$ date
$ Thu Nov 14 00:39:05 CST 2013
You can also check the timezone file...
$ more /etc/timezone
This should help you get Sendmail installed with basic configuration on Ubuntu.
sudo apt-get install sendmail/etc/hosts file: nano /etc/hosts127.0.0.1 localhost yourhostnamesudo sendmailconfigsudo service apache2 restart| <!DOCTYPE html> | |
| <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> | |
| <!--[if lt IE 7 ]> <html class="ie6" lang="en"> <![endif]--> | |
| <!--[if IE 7 ]> <html class="ie7" lang="en"> <![endif]--> | |
| <!--[if IE 8 ]> <html class="ie8" lang="en"> <![endif]--> | |
| <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]--> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="apple-mobile-web-app-capable" content="yes"> |
| <?php | |
| // | |
| // Hide WordPress toolbar for non-admins | |
| // | |
| if ( !current_user_can('administrator') ) { | |
| show_admin_bar(false); | |
| } | |
| ?> |
| <?php | |
| // | |
| // Hide WordPress toolbar for non-admins | |
| // | |
| if ( !current_user_can('administrator') ) { | |
| show_admin_bar(false); | |
| } | |
| ?> |
| adamstacoviak@AS-MBP-i7 [06:11:14] [~] | |
| -> % vagrant init precise32 http://files.vagrantup.com/precise32.box | |
| A `Vagrantfile` has been placed in this directory. You are now | |
| ready to `vagrant up` your first virtual environment! Please read | |
| the comments in the Vagrantfile as well as documentation on | |
| `vagrantup.com` for more information on using Vagrant. | |
| adamstacoviak@AS-MBP-i7 [06:12:23] [~] | |
| -> % vagrant up | |
| Vagrant could not detect VirtualBox! Make sure VirtualBox is properly installed. | |
| Vagrant uses the `VBoxManage` binary that ships with VirtualBox, and requires |
| // Typekit FOUT | |
| //------------------------------------------------ | |
| // References: | |
| // 1. http://blog.typekit.com/2010/10/29/font-events-controlling-the-fout/ | |
| // | |
| .wf-loading { | |
| visibility: hidden; | |
| } |
| // WebKit font-smoothing | |
| //------------------------------------------------ | |
| // References: | |
| // | |
| // 1. http://maxvoltar.com/sandbox/fontsmoothing/ | |
| // 2. http://maxvoltar.com/archive/-webkit-font-smoothing | |
| // | |
| // Values: none, antialiased (default), subpixel-antialiased | |
| // |
| # Opens a file using iA Writer (if installed) | |
| # Example: ia README.md | |
| alias ia='open $1 -a /Applications/iA\ Writer.app' |