About
Setting up a Drupal-powered web site with LSNet is a shared experience. We partner with you every step of the way.
Drupal updates
Updates are not so bad.
I downloaded 5.19 and 6.13 from drupal.org to /root.
Then I extracted both files creating the directories /root/drupal-5.19 and /root/drupal-6.13
Immediately I renamed /root/drupal-5.19/sites/default/settings.php to settings.php.org. If you forget this step you will wish you had a backup of settings.php.
Then I "su" to the appropriate user; cd to public_html/domain_name and
cp -a /root/drupal-x.yy/* .
- webmaster's blog
- Login or register to post comments
- Read more






Upgrading Ubuntu Feisty > Gutsy > Hardy
Diligence and hard work pays off in the long run but procrastination pays off immediately.
One of the disadvantages of experience is that you retain memories of past failures. Like hunting with Dick Cheney and upgrading operating systems. A former Mandrake Linux fan, I once destroyed a fledging managed hosting business by insisting on installing the "latest" version on a number of servers.
- tarvid's blog
- Login or register to post comments
- Read more






Running a Drupal site locally under Windows XP
There are many reasons for running a copy of a Drupal website on a local machine among them backup, offline development or more likely a perverse desire to show that it can be done. The perversity is hightened by doing this on a Windows machine, in this case Windows XP. This case study is based on the real world user "varley" and the site "vekon.com". You may get your case to work with appropriate substitions.
- tarvid's blog
- Login or register to post comments
- Read more






Drupal vs. Dreamweaver
Rather inadequately, I have explained the difference between a CMS website and a conventional website as a matter of who contributes content, a CMS encourages wider participation in the website creation process. But that understates the significance of collaboration and networking. For example one site featured at the recent DrupalCon in DC was OAN. It is just difficult to imagine Dreamweaver in the driver's seat.
- tarvid's blog
- Login or register to post comments
- Read more






Implementing php5-xcache
Of the three "free" php opcode caching schemes APC, eAccelerator and Xcache, the latter had an installable package and appeared simplest to implement. I tried it on my local workstation first (always a good idea) and it came up with little difficulty.
apt-get install php5-xcache
Now generate the password.
echo -n "my_password" | md5sum -
Modify the username and password in /etc/php5/apache2/conf.d/xcache.ini
Hang the web code someplace easy to get at.
- tarvid's blog
- Login or register to post comments
- Read more






Tuning MySQL query_cache
An appropriate amount of "query_cache" is believed to improve MySQL performance at the expense of available memory. "Appropriate" will vary widely with usage and "performance" on a live site can be elusive. On Ubuntu, the defaults are modest but "work".
# * Query Cache Configuration
#
query_cache_limit = 1M
query_cache_size = 16M
Drupal 5.x provides a summary at "admin/logs/status/sql" and 6.x at "admin/reports/status/sql".
Kompozer+Prince+Boom = Book!
People who want a well-reasoned blog should write their own or look elsewhere. Sometimes I stumble across a process or practice that seems to work fairly well yet might not be obvious to the average reader. One such process is producing a book.
- webmaster's blog
- Login or register to post comments
- Read more






CSS - once more with feeling
We all know CSS is a pit. Things which soar in one browser, crash in another. There is a reason for that.
http://www.webdevout.net/browser-support-css provides a neat list of things you probably don't know about CSS and browser developers don't either. I've been in pursuit of a CSS mechanism for printing and one of the things you would want for that purpose is @page. For some reason, "The size of a page box cannot be specified in CSS 2.1.". If anybody discovers the wisdom behind that, please clue me in.
- webmaster's blog
- Login or register to post comments
- Read more







