Die bucht die Surfbar ja auch nicht automatisch, dafür gibt es sicher auch Crons bzw. Interfaces?
Die bucht die Surfbar ja auch nicht automatisch, dafür gibt es sicher auch Crons bzw. Interfaces?
Kill one man, and you are a murderer.
Kill millions of men, and you are a conqueror.
Kill them all, and you are a god. - Jean Rostand, Thoughts of a Biologist (1939)
Natürlich habe ich die crons abgefahrenCREATE TABLE `vms_traffic` (
`uid` int(11) NOT NULL default '0',
`tan` varchar(32) NOT NULL default '',
`kid` int(11) NOT NULL,
`link` text NOT NULL,
`reloadsperre` int(11) NOT NULL default '0',
`aufendhalt` int(11) NOT NULL default '0',
`verguetung` double(10,2) NOT NULL default '0.00',
`preis` double(10,2) NOT NULL default '0.00',
`gebucht` int(11) NOT NULL default '0',
`sponsor` text NOT NULL,
`status` int(11) NOT NULL default '1'
);
CREATE TABLE `vms_traffic_reload` (
`ip` varchar(15) NOT NULL default '',
`uid` int(11) NOT NULL default '0',
`tan` varchar(32) NOT NULL default '',
`reload_bis` int(11) NOT NULL default '0'
);
ALTER TABLE `vms_kontodaten` ADD `trafficseiten` INT(11) NOT NULL AFTER `kv` ;
ALTER TABLE `vms_kontodaten` ADD `trafficsumme` DOUBLE(20,6) NOT NULL AFTER `trafficseiten` ;
INSERT INTO `vms_crons` (`cron`, `intervall`, `laufzeit`, `datei`, `bezeichnung`)
VALUES
('int_traffic', 0, 1106400686, 'crons/traffic_webmasterlose.int.php', 'Surfbar Webmasterlose');
INSERT INTO `vms_crons` (`cron`, `intervall`, `laufzeit`, `datei`, `bezeichnung`)
VALUES
('int_traffic', 0, 1106400686, 'crons/traffic_hp-lose.int.php', 'Surfbar HP-Lose');
Naja, wenn durch die Crons nichts eingebucht wird, sind diese entweder veraltet, oder du hast falsche Interface Daten angegeben.
Oder beim Sponsor sind keine Traffickampagnen vorhanden zurzeit.
Kill one man, and you are a murderer.
Kill millions of men, and you are a conqueror.
Kill them all, and you are a god. - Jean Rostand, Thoughts of a Biologist (1939)
das sind aber die crons für das vms1.1 und du nutzt das vms1.2 sehe nämlich das die cron-id fehlt, also nehme ich mal an das es daran liegt, das die crons falsch sind
www.scripte-box.de VMS,VMS2 und FWX
versuchs mal damit,PHP-Code:
INSERT INTO `vms_crons` (`id``cron`, `intervall`, `laufzeit`, `datei`, `bezeichnung`)
VALUES
(`19`'int_traffic', 0, 1106400686, 'crons/traffic_webmasterlose.int.php', 'Surfbar Webmasterlose');
INSERT INTO `vms_crons` (`cron`, `intervall`, `laufzeit`, `datei`, `bezeichnung`)
VALUES
(`20`'int_traffic', 0, 1106400686, 'crons/traffic_hp-lose.int.php', 'Surfbar HP-Lose');
in den crons nach diesem zeichen <? folgendes einfügen, am besten eine zeile tiefer
PHP-Code:
unset($file1);
www.scripte-box.de VMS,VMS2 und FWX