|
||||
|
da musste schon bei cao nachfragen
![]() oder kommt eine fehlermeldung ?
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
|
||||
|
bei allen updates --> xtc, oder nur bei produkten ?
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
|
||||
|
aha, dann liegt das problem woanders:
folgendes: hast du mal alle firewalls etc deaktiviert ? evtl. nen router ? denn bei dir schl?gt es hier fehl: if (($_POST['action']) && ($REQUEST_METHOD=='POST')) um das genau zu untersuchen mit welchen befehl bei dir cao das script aufruft, und dann das problem einzugrenzen (welches lokal liegt), m?sstest du einen logger einbauen: dazu das in phpmyadmin ausf?hren: Code: Code:
DROP TABLE IF EXISTS `cao_log`; CREATE TABLE `cao_log` ( `id` int(11) NOT NULL auto_increment, `date` date NOT NULL default '0000-00-00', `user` varchar(64) NOT NULL default '', `pw` varchar(64) NOT NULL default '', `method` varchar(64) NOT NULL default '', `action` varchar(64) NOT NULL default '', PRIMARY KEY (`id`) ); unter der zeile: Code: Code:
require('../includes/application_top_export.php');
Code: Code:
define('LOGGER',true);
if (LOGGER==true) {
// log data into db.
xtc_db_query("INSERT INTO cao_log
(user,pw,method,action) VALUES
('".$_GET['user']."','".$_GET['password']."','".$REQUEST_METHOD."','".$_POST['action']."')");
}
danach rufst du mal den export in cao auf, und guckst danach in phpmyadmin was in der tabelle steht.
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
|
||||
|
da steht dann folgendes
#---------------------------- # Table structure for cao_log #---------------------------- create table cao_log ( id int(11) not null auto_increment, `date` date not null default '0000-00-00', `user` varchar(64) not null, pw varchar(64) not null, method varchar(64) not null, `action` varchar(64) not null, primary key (id)) type=MyISAM; #---------------------------- # No records for table cao_log #---------------------------- |
|
||||
|
firewall und router sind vorhanden, einmal lokale software-fw einmal hardware-fw
software-fw hab ich mal deaktiviert axo, lokaler apache/mysql -> FoxServ mein fehler, muss ja in der xt-c db ausgef?hert werden, da kommt folgendes: # # Tabellenstruktur f?r Tabelle `cao_log` # DROP TABLE IF EXISTS `cao_log`; CREATE TABLE `cao_log` ( `id` int(11) NOT NULL auto_increment, `date` date NOT NULL default '0000-00-00', `user` varchar(64) NOT NULL default '', `pw` varchar(64) NOT NULL default '', `method` varchar(64) NOT NULL default '', `action` varchar(64) NOT NULL default '', PRIMARY KEY (`id`) ) TYPE=MyISAM AUTO_INCREMENT=2 ; # # Daten f?r Tabelle `cao_log` # INSERT INTO `cao_log` VALUES (1, '0000-00-00', '', '', '', ''); |
|
||||
|
????????????
du sollst die tabelle in MYSQL anlegen, dann den logger befehl mit query ins import script kopieren, und mit CAO dann einen export (cao->shop) starten. danach muss in der datenbank in der cal_log table auch was eingetragen sein,
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
![]() |
| Lesezeichen |
| Stichworte |
| #62, cao, export, xtc |
| Themen-Optionen | |
| Ansicht | |
|
|