Search
-
Categories
Tags
5.2 best php editor css debian error finger eleven google htaccess javascript javascript function life lifehouse linux love Lyrics mod_rewrite mysql mysql error mysql function nickelback nusphere nusphere phped nusphere phped 5.2 palawan palawan vacation paralyzer pdflib php4 pdflib php5 photoshop php phped php editor php error php function plugin regex regular expression regular expressions vacation vhcs video windows vista wordpress wordpress error wow
Category Archives: mysql
Error installing apache,php on windows vista
ShareI’ve done this before, I’ve installed it several times but how come this time it’s not working with the same settings that needed to be changed… a moment of confusion, annoyance and craziness flashed on my eyes. I’ve exerted every … Continue reading
Installing apache 2.2, php 5.2 and mysql 5 in windows vista
ShareHere’s a quick guide for installing apache 2.2, php 5.2 and mysql 5 in windows vista. Download needed files: 1. Apache – msi file 2. PHP – better choose the zip file than the msi installer 3. MYSQL – msi … Continue reading
Posted in apache, mysql, php
Tagged error installing apache mysql php, httpd.conf, installing apache, mysql, php, php.ini
Leave a comment
SET SQL_BIG_SELECTS=1
ShareI encountered this error on my query. I had the same query on my local computer, running without any problem but uploading it on the live site I got this error below: The SELECT would examine more than MAX_JOIN_SIZE rows; … Continue reading
mysql_data_seek to reset mysql recordset in php
ShareI’ve been into this situation where I need to reset the recordset for mysql and one way to do this is by using mysql_data_seek(). Sample below from mysql site: Description bool mysql_data_seek ( resource result, int row_number ) mysql_data_seek() moves … Continue reading
Data truncated for column
ShareFirst time I got this error Data truncated for column. I’m using mysql version 5 and I got a simple query like this: $val1= 1; $val2 = 3; INSERT INTO TBL(‘val1′, ‘val2′) VALUES ($val1, $vall2); Notice the variable name for … Continue reading