Archive for the ‘Cómo’ Category
Tip: How to detect with PHP if iPhone visits your site
Saturday, January 30, 2010 2:17 1 CommentCurrently I’m developing some websites which “can be visited from iPhone” [the customer say that], the big thing is: there are some javascripts functions to detect it but when you use it with jQuery this “lock” the effects.
The solution is so easy, you just need to use this PHP script:
PHP<5.3.0
if (ereg('iPhone',$_SERVER['HTTP_USER_AGENT']))
{
header("Location:/iphone.html");
}
PHP>=5.3.0
if (preg_match("/iPhone/",$_SERVER['HTTP_USER_AGENT']))
{
header("Location:iPhone.php");
}
Take Care: Is Important [...]
Cómo – Win7: Conectar a la red WiFi que conoces pero no autentica…
Saturday, October 31, 2009 15:47 No CommentsEn muchas ocaciones tenemos una red hogareña que hemos configurado pero no nos autentica [y de hecho a veces, tampoco nos conecta], este mini-tutorial te enseñará cómo configurar tu conexión manualmente.
Este error me ha aparecido en redes con autenticación WEP.
Cómo: Solucionar el error “no se puede instalar el Centro de Dispositivos de Windows Mobile” en Windows 7 N
Thursday, October 29, 2009 1:45 No CommentsDurante la tarde al tratar de instalar el Centro de Dispositivos de Windows Mobile me indicó el error: “no se puede instalar el Centro de Dispositivos de Windows Mobile” [pronto subiré una captura].
El error se soluciona instalando Windows Media Player [click acá para ver cómo instalarlo].
Saludos!
Cómo: Instalar Windows Media Player en Windows 7 N
Thursday, October 29, 2009 1:22 2 CommentsHoy en la mañana instalé Windows 7 Ultimate N, la edición de Windows 7 SIN WINDOWS MEDIA PLAYER… Y ahora necesito correr una aplicación que requiere Windows Media Player.
La solución es muy simple, sólo debes descargar el paquete de carácteristicas multimedia de Windows 7 [KB968211] desde este link [Tu Windows 7 debe ser original].
La versión [...]
