Macromedia Flash 7 plugin with Firefox

05.28.07 (3:03 pm)   [edit]

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

05.28.07 (2:50 am)   [edit]

Freebsd + PHP + MSSQL How To Connect Witt FreeTDS

05.16.07 (1:49 pm)   [edit]

// /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

05.07.07 (2:56 pm)   [edit]

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