admin on September 2nd, 2011

This is a post sent directly from my Android phone.  Sweet!

Continue reading about Android HTC EVO 4g

admin on September 16th, 2010

sudo ln -s /var/lib/python-support/python2.5/django/bin/django-admin.py /usr/local/bin/

Continue reading about Sim linking Django Admin command

admin on September 16th, 2010

find {directory} -name ‘{filename}’ find / -name ‘django-admin.py’ http://www.debuntu.org/how-to-find-files-on-your-computer-with-find

Continue reading about Find Command

admin on November 21st, 2009

I found this to be a helpful video when working on this site: http://www.dailymotion.com/video/x4gfqu_introduction-to-drupal_tech.

Continue reading about Good intro to Drupal video

admin on November 21st, 2009

I found that the install went fine, but the assets appeared as broken images. This needed a couple things fixed. Assets are stored in a subfolder inside assets (mephisto/public/assets/www.example.com/{YEAR}/{MONTH}/{DAY}/{IMAGE NAME}). The asset URLs however do not include that subfolder (example.com/assets/{YEAR}/{MONTH}/{DAY}/{IMAGE NAME}). This is fixed in the second block of mod_rewrite code. That subfolder is the [...]

Continue reading about Fixing assets in Mephisto

admin on November 21st, 2009

Well, I am not very familiar with the included markup languages included with Mephisto. I decided to give Markdown with Smarty Pants a try. I found that Daring Fireball had a good overview of the language.

Continue reading about Mardown Language for Mephisto

admin on November 21st, 2009

The command to go back to the previous page <a href=”#” onclick=”window.history.go(-1);”>Go Back</a> or <a href=”javascript:void(history.back());”>Go Back</a>

Continue reading about JavaScript – back to previous page

admin on November 21st, 2009

Definitely have trouble moving to production. make a new rails app in the web directory for that vhost. rails APP_NAME -d mysql move over the app, public, and vendor folders to the production server. Get latest schema from dev rake db:schema:dump Update the database.yml file Copy over schema file (found in db folder) Create new [...]

Continue reading about Moving your rails app to production.

admin on November 21st, 2009

This is the basic function for restarting ISPConfig. Remember that you will need to enter your SSL passphrase at this time if you have one. /etc/init.d/ispconfig_server start|stop|restart The server runs a seperate webserver at: https://www.example.com:81

Continue reading about Restarting ISPConfig

admin on November 21st, 2009

When inserting columns into the database you must select your field type. Here is a list of the main ones: binary boolean date datetime decimal float integer primary_key string (255 characters) text time timestamp

Continue reading about Ruby Field Types