Hudlite not connecting

May 22nd, 2009

Hudserver not listing

service ircd start

ps -aux | grep ircd

Image tag for coldfusion

May 5th, 2009

Cfimage gace me problems on cf8. Image cfc gave me problems. I finally started using cfx_openimage and am no longer having issues.

Download here http://www.kolumbus.fi/jukka.manner/cfx_openimage/

Install on server in c:\cfx_openimage
Make sure your server has c:\temp folder

Code samplesResize
DEBUGs
NAME="qimages"
FILE="#session.imageRoot#/#form.name#"
animation_support="full"
commands="
setimage or1=original
resize #form.width#
writeanimate #session.imageRoot#/#form.name#
resize #form.width#
writeanimate #session.imageRoot#\RE-#form.name#
">

Crop
NAME="qimages"
DEBUGs
COMMANDS="
getsize
setimage test=current
useimage test
## cropping removes exterior of the area
## crop x,y,x2,y2
## note: you must give a rectangle of the area maintained thus
## y2 must be creater than y
## note2: you set the are which will remain
crop #form.x1#,#form.y1#,#form.x2#,#form.y2#,0
write #session.imageRoot#/#url.name#
">
NAME="qimages"
DEBUGs
COMMANDS="
getsize
setimage test=current
useimage test
## cropping removes exterior of the area
## crop x,y,x2,y2
## note: you must give a rectangle of the area maintained thus
## y2 must be creater than y
## note2: you set the are which will remain
crop #form.x1#,#form.y1#,#form.x2#,#form.y2#,0
write #session.imageRoot#/RE-#url.name#
">

How to Reset maint password for trixbox

May 1st, 2009

reset maint password

Command line type
passwd-maint

enter new password

Alternate row colors in coldfusion

April 18th, 2009

<tr bgcolor=###iif(currentrow MOD 2,DE(’ffffff’),DE(’efefef’))#“>