https://www.youtube.com/watch?v=4EnXogAC8Mw
Fix: Language bar missing from taskbar windows 8 and 8.1 I Notification area icon
sábado, 26 de noviembre de 2016
sábado, 19 de noviembre de 2016
agregar impresora en windows 8
http://tipsandtrickwindows8.blogspot.pe/2011/09/how-to-add-local-printer-or-network.html
http://www.dummies.com/computers/operating-systems/windows-8/how-to-add-a-printer-to-a-windows-8-computer/
http://www.full-windows8.com/2011/09/how-to-add-local-printer-or-network.html
https://www.youtube.com/watch?v=32zRGzspUUg
configurar protector de pantalla windows 10
http://www.tecnicomo.com/windows/como-configurar-el-protector-de-pantalla-en-windows-10/
https://www.youtube.com/watch?v=l6H255QBMZs
ICONOS ESCRITORIO https://xpertix.com/mostrar-icono-este-equipo-windows-10/
https://www.youtube.com/watch?v=l6H255QBMZs
ICONOS ESCRITORIO https://xpertix.com/mostrar-icono-este-equipo-windows-10/
domingo, 31 de julio de 2016
Error 262 al crear una base de datos SQL SERVER
ADDITIONAL INFORMATION:
An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.Express.ConnectionInfo)
------------------------------
CREATE DATABASE permission denied in database 'master'. (Microsoft SQL Server, Error: 262)
Al crear una base de datos con windows 8 y SQL SERVER 2012 parece que es problema de insuficientes permisos, al parecer debí agregarselo al momento de instalacion el rol de sys admin al usuario actual de windows
Are you a member of the sysadmin role?
When you installed it, there was a page where you specified who should be sys admins for the instance. It doesn't sound like you used the right options (one of them was to
Add Current User
) (unless this is Express)
Como lo solucione?
Right-click and run "SQL Server Management Studio" as administrator.
In SQL Server Management Studio, connect to an instance of SQL Server.
Click en la carpeta Security para que se expanda luego, right-click Logins, and then click New Login.
In the Login name box, enter the user name. (en vez de eso, use el boton search y busque mi usuario actual y salio TOSHIBANOTEBOOK\USUARIO ) luego pasamos a la ventana izquierda,
http://stackoverflow.com/questions/24198458/how-to-fix-microsoft-sql-server-error-262
http://stackoverflow.com/questions/14625682/create-database-permission-denied-error
https://social.msdn.microsoft.com/Forums/es-ES/b6f73e14-268f-425d-b62e-ee9c2bf023f6/error-262-al-crear-nueva-base-de-datos?forum=sqlserveres
viernes, 29 de julio de 2016
Herramientas .net
Herramientas
interfaces con devexpress
FxCop, ReSharer, CodeRush, Stylecop, Pex and Molex, Visual Studio for Database Developers,
Codedoom, Roslyn
http://geeks.ms/jirigoyen/
miércoles, 20 de julio de 2016
Configurarcion XDEBUG en netbeans para depurar php ADEMAS DE ECLIPSE
https://www.youtube.com/watch?v=k4ByadtSra8
de la parte de [XDebug] y descomenta :
zend_extension = "\xampp\php\ext\php_xdebug.dll"
descomenta y cambia el valor a
xdebug.remote_enable = 1
descomenta
;xdebug.remote_handler = "dbgp"
;xdebug.remote_host = "127.0.0.1"
;xdebug.trace_output_dir = "\xampp\tmp"
Error :solo es necesario reinicia el servicio de apache no el mysql
Para ejecutar error mio hacia clic en Run Project en realidad es Debug Project
Menu debug -> Debug project o ctrl + F5 o desde el icono de la barra de herramientas.
En chrome tiene que salir algo como esto en la barra de direcciones
http://localhost/debug/index.php?XDEBUG_SESSION_START=netbeans-xdebug
otro enlace de netbeans que encontre pero no me ayudo de mucho:
http://wiki.netbeans.org/HowToConfigureXDebug
------------------------
Enseña solo una parte
https://www.youtube.com/watch?v=Dz8K0fkbUEo&spfreload=10
en php.ini en la parte de [XDebug]
descomenta:
zend_extension = "\xampp\php\ext\php_xdebug.dll"
y descomenta y cambia el valor a:
xdebug.remote_enable = 1
y reinicia el servicio de apache.
-------------------
En
https://www.youtube.com/watch?v=9yzkxpxCmNM con http://otroblogmas.com/configurar-xampp-para-debugar-con-xdebug-en-netbeans/
Agrega que suele deseleccionar en
Menu options->PHP-> debugging, la opción: Stop a
t the first line
*No tengo el parametro remote_port
************
En chrome Tiene que salir algo como esto en la barra de direcciones
http://localhost/debug/index.php?XDEBUG_SESSION_START=netbeans-xdebug
*************
PARA ECLIPSE
https://www.youtube.com/watch?v=Dm2ivX3uwR4
Camino mas facil descargar Eclipse for PHP developers
https://www.youtube.com/watch?v=kB6uB9dgaT4
*OTRO METODO: Mediante plugin PDT integrado (PHP Development Tools):
ENSEÑA A CONFIGURAR EL PDT A XDEBUG
https://www.youtube.com/watch?v=Dm2ivX3uwR4
Solo enseñan a instalar el pdt no ha configurar el XDEBUG
https://www.youtube.com/watch?v=bTKuZ7TAxVw
http://blog.idominiun.com/comentarios/105.html
https://www.youtube.com/watch?v=b2Ea_QwprNM
https://anibalismo.wordpress.com/2012/05/19/instalar-plugin-de-php-al-eclipse-para-no-tener-que-bajar-el-pdt/
El siguiente enlace habla de las versiones de eclipse y PDT
http://www.mclibre.org/consultar/php/otros/in_eclipse_instalacion.html
http://www.desarrolloweb.com/articulos/instalar-pdt.html
*************
informacion generica
https://xdebug.org/docs/all_settings
de la parte de [XDebug] y descomenta :
zend_extension = "\xampp\php\ext\php_xdebug.dll"
descomenta y cambia el valor a
xdebug.remote_enable = 1
descomenta
;xdebug.remote_handler = "dbgp"
;xdebug.remote_host = "127.0.0.1"
;xdebug.trace_output_dir = "\xampp\tmp"
Para ejecutar error mio hacia clic en Run Project en realidad es Debug Project
Menu debug -> Debug project o ctrl + F5 o desde el icono de la barra de herramientas.
En chrome tiene que salir algo como esto en la barra de direcciones
http://localhost/debug/index.php?XDEBUG_SESSION_START=netbeans-xdebug
otro enlace de netbeans que encontre pero no me ayudo de mucho:
http://wiki.netbeans.org/HowToConfigureXDebug
Enseña solo una parte
https://www.youtube.com/watch?v=Dz8K0fkbUEo&spfreload=10
en php.ini en la parte de [XDebug]
descomenta:
zend_extension = "\xampp\php\ext\php_xdebug.dll"
y descomenta y cambia el valor a:
xdebug.remote_enable = 1
y reinicia el servicio de apache.
-------------------
En
https://www.youtube.com/watch?v=9yzkxpxCmNM con http://otroblogmas.com/configurar-xampp-para-debugar-con-xdebug-en-netbeans/
Agrega que suele deseleccionar en
Menu options->PHP-> debugging, la opción: Stop a
t the first line
*No tengo el parametro remote_port
************
En chrome Tiene que salir algo como esto en la barra de direcciones
http://localhost/debug/index.php?XDEBUG_SESSION_START=netbeans-xdebug
*************
PARA ECLIPSE
https://www.youtube.com/watch?v=Dm2ivX3uwR4
Camino mas facil descargar Eclipse for PHP developers
https://www.youtube.com/watch?v=kB6uB9dgaT4
*OTRO METODO: Mediante plugin PDT integrado (PHP Development Tools):
ENSEÑA A CONFIGURAR EL PDT A XDEBUG
https://www.youtube.com/watch?v=Dm2ivX3uwR4
Solo enseñan a instalar el pdt no ha configurar el XDEBUG
https://www.youtube.com/watch?v=bTKuZ7TAxVw
http://blog.idominiun.com/comentarios/105.html
https://www.youtube.com/watch?v=b2Ea_QwprNM
https://anibalismo.wordpress.com/2012/05/19/instalar-plugin-de-php-al-eclipse-para-no-tener-que-bajar-el-pdt/
El siguiente enlace habla de las versiones de eclipse y PDT
http://www.mclibre.org/consultar/php/otros/in_eclipse_instalacion.html
http://www.desarrolloweb.com/articulos/instalar-pdt.html
*************
informacion generica
https://xdebug.org/docs/all_settings
domingo, 17 de julio de 2016
Why does my download stop before it is finished?
Download termination and latency
As we mentioned previously, many problems are caused by issues with your Internet Service Provider. Usually, these issues result in highlatency or lag, which in turn cause your download to fail. When this occurs, it is problematic in that your Internet cache may "think" the download was completed, thus making the browser not want to resume. One solution is to clear the temporary internet files under the History section in your browser and try the download again.
Suscribirse a:
Entradas (Atom)