csierra
Posts: 123
|
| Posted: 04/26/2009, 12:23 AM |
|
Hi, very profficent with ASP /SQL Srv, a dumb in LAMP... First time making a PHP project, I am having trouble with the output. I only get blank pages if the pages contain data components, e.g. I have a Win XP SP 3 with IIS 5.2 and MySQL and pHP 5.2.x correctly installed on it, it does run PHP scripts perfectly. I have a database, I have created successfully a OBDC for that MySQL DB, the ODBC gui says connection succeeded when testing. I can even create in CCS 4.2 IDE datagrids, pick tables, views, columns, etc. No output errors reported but, nothing but blank pages...
Why this could be? I have the DB Conn setings as follows:
PHP Databse Library: MySQL
Server Database Name: (I do indicate the database name)
Server Host: (localhost)
Server Port: 3306
Server login: root (wich is root@%) with all privilleges on
Server password: the 'root' user's password for that DB
What could be causing this?
_________________
Yes! I Can!!! |
 |
 |
csierra
Posts: 123
|
| Posted: 04/26/2009, 12:27 AM |
|
Another, what do I have to do, apart from reading a book, to make this crap report an error...
Thank you?
_________________
Yes! I Can!!! |
 |
 |
materix
Posts: 161
|
| Posted: 04/26/2009, 5:09 AM |
|
What LAMP distribution are you using?
To see errors then add the following to the top of the file "Common.php":
ini_set('display_errors',1);
error_reporting(E_ALL);
|
 |
 |
|