Just another WordPress weblog
18 Mar
http://www.websiteoptimization.com/speed/tweak/redesign/
11 Mar
http://www.howtogeek.com/howto/windows/how-to-automate-ftp-uploads-from-the-windows-command-line/
http://www.codejacked.com/zip-up-files-from-the-command-line/
11 Mar
http://www.softsilver.com/downloads.asp
4 Mar
Remove (Not Verified) – http://drupal.org/node/99409
Remove Submitted By – http://www.kirkdesigns.co.uk/format-submitted-text-drupal-6-nodes-and-comments
Add Comments Header – http://drupal.org/node/76716
20 Jan
Good file permissions tutorial -
http://www.interspire.com/content/articles/12/1/FTP-and-Understanding-File-Permissions
FTP overwrite problems using Virtualmin setup –
http://www.virtualmin.com/node/9885
7 Jan
Linux to the rescue. This sure beats using Export from PhpMyAdmin, it can be slow and may time out with large databases.
mysqldump -a -u USER -p DBNAME > /path/to/backupname.sql
http://www.metatitan.com/mysql/6/how-to-backup-and-restore-large-databases-in-mysql.html
5 Jan
Check your SSL certificate – http://www.digicert.com/help/
Setting up SSL on apache:
http://onlamp.com/pub/a/onlamp/2008/03/04/step-by-step-configuring-ssl-under-apache.html
5 Jan
If you need a slideshow for your Drupal website, I recommend using JCarousel Lite – http://gmarwaha.com/jquery/jcarousellite/
It has lots of parameters to tweak depending on how you want to set it up. It’s easy to get working.
One slight issue (well major issue really until I fixed it), that I had using this with Drupal was that [...]
1 Jan
FILES=”test.xml”
# for loop read each file
for f in $FILES
do
INF=”$f”
OUTF=”$f.out.tmp”
# replace javascript
sed ‘//d;//d’ $INF > $OUTF
/bin/cp $OUTF $INF
/bin/rm -f $OUTF
done
http://en.kioskea.net/faq/sujet-1451-sed-delete-one-or-more-lines-from-a-file
http://www.oracle.com/technology/pub/articles/dulaney_sed.html
31 Dec
In my quest to convert a CSV file to XML I’ve found the best advice seems to be to use Perl.
Do I have Perl installed on my linux server?
http://www.cyberciti.biz/faq/how-do-i-find-out-what-perl-modules-already-installed-on-my-system/
Enter the following command in shell -
$ instmodsh
To find the version of perl -
http://www.cyberciti.biz/faq/how-can-i-find-out-perl-version/
$ perl -v
Here’s my findings:
I’ve been following a tutorial in a book called XML [...]