March 8, 2006 by Chris
Drupal is an excellent open source content management system.
Once you have a linux install with Apache, PHP, and MySQL installing drupal is a breeze.
Refer to this post for an easy installation of Fedora Core 4.
- Setup MySQL:
mysqladmin -u root password new-password
chkconfig –levels 235 mysqld on
- Setup Apache:
chkconfig –levels 235 httpd on
vi /etc/httpd/conf/httpd.conf
-> Change Allow Override None to Allow Override All
-> Add index.php as first entry under DirectoryIndex
- Install drupal – follow these instructions
- Create files subdirectory:
cd drupal_install_dir
mkdir files
chown root:apache files/
chmod 775 files/
- Install GD:
yum install php-gd
- Finally restart apache: apachectl graceful
Posted in Linux, PHP | Leave a Comment »
March 8, 2006 by Chris
This is a very good FAQ regarding installation of Fedora Core 4:
The Perfect Setup – Fedora Core 4
In addition to the standard server install, I chose the following packages:
Server Configuration Tools (all)
Web Server (all)
Mail Server (all)
MySQL Database (all)
Development Tools (Standard)
Administration Tools (all)
Posted in Linux | Leave a Comment »
March 1, 2006 by Chris
In restoring a file from our backup machine to a user – I found the easiest way is just to email the file to the user through the terminal. However since it was a word document it needed to be encoded. This worked beautifully:
uuencode FILENAME FILENAME | mail -s SUBJECT RECIPIENT
Posted in Command Line | Leave a Comment »
February 14, 2006 by Chris
One of the nice features about Safari is that it displays the PDF files directly in the browser whereas Firefox and Camino will download them and then open them in Preview.
There is a free non-commercial plugin that will allow Firefox or Camino to display PDF files within the browser.
- Download here:
http://www.schubert-it.com/pluginpdf/
- Mount the dmg file
- Copy the .plugin file to /Library/Internet Plug-Ins to use for all users or ~/Library/Internet Plug-Ins to use only for yourself
Posted in Apple, Mozilla | 6 Comments »
February 14, 2006 by Chris
Camino the web browser designed specifically for Mac OS X by Mozilla now has published their official 1.0 release.
It is built on Mozilla’s Gecko rendering engine. It also is built on Cocoa so it looks beautiful just like the Mac OS X interface.
It doesn’t have the same extension plug-in that Firefox offers, but it makes up for it with its speed (maybe because I have too many extensions installed!)
Check it out – download here!
Posted in Apple, Mozilla | Leave a Comment »
February 9, 2006 by Chris
Maybe I’m picky but our Windows boxes (including our email server) were keeping time that was about 4 minutes faster than our Macs. It was driving me crazy.
So I found this article:
How to configure an authoritative time server in Windows Server 2003
And followed the instructions on our PDC (Primary Domain Controller) and chose time.apple.com as the ntp server.
Beautiful, everything is synchroinzed now.
Posted in Windows Server | Leave a Comment »
February 3, 2006 by Chris
Wikipedia has a good entry on crontab.
The crontab is used to schedule command to be executed at a later time or periodically.
The best way to schedule the jobs is to login as the user you want the job to execute as and type:
crontab -e
Posted in Command Line | Leave a Comment »
February 3, 2006 by Chris
This is a free Open Source php-based web calendar implementation.
It can be downloaded at: http://phpicalendar.net/
To implement it – all I had to do was copy the files to my web directory and add a few lines of code to my Apache config file to enable webdav for iCal publishing:
Greg Westin describes how to enable WebDav for OSX – but on OSX Server there are even less steps:
- Edit your apache config file: (by default /etc/httpd/httpd.conf) Right before the first tag – insert this code
- Then create the password file:
sudo mkdir /etc/httpd/passwords
sudo htdigest -c /etc/httpd/passwords/webdav.digest “webdav access” mywebdavuser
- Then on your calendar directory run:
sudo chown www:www /mycalendarsdir
- Finally restart apache:
sudo apachectl graceful
Posted in OSX Server, PHP | Leave a Comment »
February 2, 2006 by Chris
Posted in Intel | Leave a Comment »