Categories
- ALCATEL (2)
- Blog Personal (135)
- Cisco (35)
- Cluster (2)
- elearn (13)
- Nix (381)
- OpenVMS (5)
- Programación (37)
- C++ (2)
- javaScript (11)
- PHP mySQL (22)
- travel (1)
- Windows (44)
- Exchange (3)
- SQL Server (6)
- www (7)
- apache (3)
Category Archives: PHP mySQL
Reset MySQL Password
en estos simples pasos se puede resetear el password de root de mysql el cual me tuvo batallando con manuales y no lo lograba esto lo probe en mi centos 4.4 y me funciono a la perfeccion, pero me imagino … Continue reading
Posted in PHP mySQL
Comments Off
MySQL Cluster in 5 minutes
http://forge.mysql.com/tools/tool.php?id=16
Posted in PHP mySQL
Comments Off
How to Setup MySQL Replication
This tutorial will go through the setup of MySQL database replication. I will also talk about how to get everything working smoothly again after a server crash, or if you wish to switch databases. I will try to explain what … Continue reading
Posted in PHP mySQL
Comments Off
Replication MySQL multiple DBs
============================= MASTER: add lines to my.cnf ============================= binlog-do-db=database_name_1 binlog-do-db=database_name_2 binlog-do-db=database_name_3 ============================= MASTER: SQL SYNTAX ============================= GRANT REPLICATION SLAVE ON *.* TO ‘user’@'%’ IDENTIFIED BY ‘password’; FLUSH PRIVILEGES; FLUSH TABLES WITH READ LOCK; UNLOCK TABLES; SHOW MASTER STATUS; output> file | … Continue reading
Posted in PHP mySQL
Comments Off
Database Replication
http://www.howtoforge.com/mysql_database_replication
Posted in PHP mySQL
Comments Off
PHP 5 OSCOMMERCE BUG
PHP 5 Oscommerce BUG Hello! D:\xampplite\htdocs\linux\shop\admin\includes\classes\ipload.php on line 31 i did this: instead of this: ________________________ // self destruct $this = null; return false; } } } ________________________ biggrin.gif i did this: ________________________ // self destruct unset($this); return false; } … Continue reading
Posted in PHP mySQL
Comments Off
Hide intro text joomla
Hide Intro Text we usually set the defaults in the relevant XML files for the user to make it easier when they are adding and editing new content. Like you, we often find we’re wanting Hide intro text on by … Continue reading
Posted in PHP mySQL
Comments Off
Search and Reemplace
update esalud_content set introtext = replace(introtext,CONVERT( _utf8 ‘%{ }%’ USING latin1 ),’ ‘)
Posted in PHP mySQL
Leave a comment
moseasymedia
{moseasymedia media=/consulta/banner.swf height=195 width=170}
Posted in PHP mySQL
Leave a comment
AUTO_INCREMENT
El valor inicial para AUTO_INCREMENT para la tabla. En MySQL 5.0, sólo funciona para tablas MyISAM y MEMORY. También se soporta para InnoDB desde MySQL 5.0.3. Para inicializar el primer valor de auto incremento para motores que no soporten esta … Continue reading
Posted in PHP mySQL
Leave a comment