Macromedia Flash 7 plugin with Firefox
ORIGINAL MESSAGE FROM << http://www.jail.se/software/f... >>
Macromedia Flash 7 plugin with Firefox Reported to work with
FreeBSD 6.x and PC-BSD 1.x cd /usr/src/libexec/rtld-elf
cd /usr/local/lib/browser_pl ugins/
ln -s /usr/local/lib/npapi/linu x-flashplugin/flashplayer .xpt
ln -s /usr/local/lib/npapi/linu x-flashplugin/libflashpla yer.so
RFDUMP.org
Freebsd + PHP + MSSQL How To Connect Witt FreeTDS
// /usr/local/etc/freetds.conf
[global]
# TDS protocol version
tds version = 4.2
text size = 64512
[MSSQL2000]
host = XX.XX.XX.XX
port = 1433
tds version = 8.0
test connection with php
$dbhandle=mssql_connect(& quot;MSSQL2000",&nbs p; "username",&nbs p; "password")
or die("Couldn't connect to SQL Server on $myServer");
SSH port forwarding
To forward port from a host inside firewall so that i can access the host from home.
ssh -N -f -R 1234:localhost:22 USER@externalhost
this will forward MYHOST port 22 to port 1234 at the external server side.
From my home :: i access to the externalhost and dothis to access myhost:
ssh -p 1234 USER@localhost