Hello,
Just purchased the full copy. I followed the instructions by renaming and modifying config.php with my hosted MySQL database. After running "install.php" I am taken to the demo site instead of my own database.
Can you please provide clear instructions on how to prevent the demo and get to my own database defined in the config.php?
Thank you,
Hi,
You can change any of the demo code e.g. in demos/editing/index.php
You need 2 changes:
1) Database config
$db_conf = array(
"type" => PHPGRID_DBTYPE,
"server" => PHPGRID_DBHOST,
"user" => PHPGRID_DBUSER,
"password" => PHPGRID_DBPASS,
"database" => PHPGRID_DBNAME
);
and
2) Table name
$g->table = "customers";
Based on your settings it will show your desired database table.
For other options like SQL select_command and columns customizations, you can refer docs.