This is a post sent directly from my Android phone. Sweet!
sudo ln -s /var/lib/python-support/python2.5/django/bin/django-admin.py /usr/local/bin/
find {directory} -name ‘{filename}’ find / -name ‘django-admin.py’ http://www.debuntu.org/how-to-find-files-on-your-computer-with-find
I found this to be a helpful video when working on this site: http://www.dailymotion.com/video/x4gfqu_introduction-to-drupal_tech.
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 [...]
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.
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>
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 [...]
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
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