hi,
1) no catalog references in the definitions in the configure files.
2> the only hardcoded catalog reference inthe Proforma files is in the:
/*
$Id: catalog/includes/functions/proforma.php,v 1.0 20:57:52 NCB Exp $
by hanuman at Open Source Services
Upgrade at
www.open-source-services.com/Products/OS...-PLUS.html?flypage=0
Support and Forum at
www.open-source-services.com/Forum/Profo...0.1-free-osCommerce/
*/
which i removed without help.
I have tried commenting our the
function getContentRow($pf_pos){
in the includes/functions/proforma_data_access.php file which brought an error about an
Parse error: syntax error, unexpected '}' in includes/functions/proforma_data_access.php
so i guess its finding the right files, its just not loading the data from the db, yet when i look at the db there is nothing obviously wrong and i can see the content i have creatd in there. The database_tables.php has been set up as directed.
is there anything that would need to be check from the point of the proforma_data_access.php communicating with the db?
<?php
/*
$Id: includes/functions/proforma_data_access.php,v 1.0 20:57:52 NCB Exp $
by hanuman at Open Source Services
Upgrade at
www.open-source-services.com/Products/OS...-PLUS.html?flypage=0
Support and Forum at
www.open-source-services.com/Forum/Profo...0.1-free-osCommerce/
*/
function getContentRow($pf_pos){
$pf_query_raw = "select content, active, pages from pf_content where position = '" . $pf_pos ."'";
$pf_query = tep_db_query($pf_query_raw);
return $pf_query;
}
function notifyDeployed($pf_pos){
$pf_query_raw = "update pf_positions set deployed='Yes' where pos_name = '" . $pf_pos . "'";
tep_db_query($pf_query_raw);
}
?>
thanks