Hi,
I have gotten most of my setup issues worked out through these forums and with Nicolas's help. I am thrilled to see how well this looks and works.
One issue. I have tried (in vain) to add an entry to the visual phonebook.
I can add them just fine, but it reports "no records found" when trying to view them.
Mysql tables:
mysql> use fop2; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> select * from visual_phonebook; +----+-----------+----------+---------------------------+------------+------------+---------+ | id | firstname | lastname | company | phone1 | phone2 | picture | +----+-----------+----------+---------------------------+------------+------------+---------+ | 1 | Kenneth | Myers | Atlantia Technology Group | 190 | 8431983648 | | | 2 | Darrell | Watson | Atlantia Technology Group | 191 | 8431982545 | | | 3 | john | doe | NULL | 0141123456 | NULL | NULL | +----+-----------+----------+---------------------------+------------+------------+---------+ 3 rows in set (0.02 sec) mysql> show columns from visual_phonebook; +-----------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +-----------+--------------+------+-----+---------+----------------+ | id | int(11) | NO | PRI | NULL | auto_increment | | firstname | varchar(50) | YES | | NULL | | | lastname | varchar(50) | YES | | NULL | | | company | varchar(100) | YES | | NULL | | | phone1 | varchar(25) | YES | | NULL | | | phone2 | varchar(25) | YES | | NULL | | | picture | varchar(100) | YES | | NULL | | +-----------+--------------+------+-----+---------+----------------+ 7 rows in set (0.01 sec)
I have tried regranting permissions to the user on tables to no avail. The first two users were added via the web interface.
MySQL Server version: 5.0.45
PHP
PHP 5.2.9 (cli) (built: Jul 8 2009 05:59:13)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
FOP2 Beta
thanks in advance, gonna keep trying to resolve the issue