Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment I didn't buy my smart 3d TV for those features... (Score 1) 217

I have a smart 3dtv, I bought that model because it was the cheapest way to get an LCD/LED backlit TV with enough HDMI sockets for my gear.

All the cheap non-smart/non-3d TV on the market in my price range and target screen size maxed out at 2 HDMI sockets, moving up to a smart TV gained me an extra HDMI and 3D... Moving up a model again gained another HDMI...

I use none of the smart tv features - my dvr does them better...

Comment Re:Companies are obsessed with VPNs (Score 3, Insightful) 212

Slap you vpn admin until he sets up split-tunnelling properly if your vpn locks out your lan.

I use a cisco asa based vpn and with split tunnelling turned on at the host i can still use my lan while vpn is connected.

You just must have a different subnets for the local & remote.

Comment Re:Everybody hatin' on PHP (Score 4, Informative) 192

Changes in PHP 6
Issue: Register globals are the source of many application's security problems and cause a constant grief.

Discussion: We shortly discussed how we want to attend users on the disappearance of this functionality. We decided that if we find the setting during the startup of PHP we raise an E_CORE_ERROR which will prevent the server from starting with a message that points to the documentation. The documentation should explain why this functionality was removed, and some introduction on safe programming.

Conclusions:

We are going to remove the functionality.
We throw an E_CORE_ERROR when starting PHP and when we detect the register_globals setting

http://www.php.net/~derick/meeting-notes.html#id12

Issue: Magic_quotes can be cumbersome for application developers as it is a setting that can be set to on or off without any influence from within the script itself as input parameters are escaped before the script starts.

Discussion: In the same way as with the remove of the register_globals functionality, we decided that if we find the setting during the startup of PHP we raise an E_CORE_ERROR which will prevent the server from starting with a message that points to the documentation. The documentation should explain why this functionality was removed, and point the users at the input_filter extension as replacement.

Conclusions:

We remove the magic_quotes feature from PHP.
We throw an E_CORE_ERROR when starting PHP and when we detect the magic_quotes, magic_quotes_sybase or magic_quotes_gpc setting.

http://www.php.net/~derick/meeting-notes.html#id13

They are also planning on getting rid of the non-PDO db stuff at a future date.

Slashdot Top Deals

Real Programmers don't eat quiche. They eat Twinkies and Szechwan food.

Working...