15/08/2012, 10:35
|
| | | Fecha de Ingreso: agosto-2010
Mensajes: 70
Antigüedad: 14 años, 4 meses Puntos: 0 | |
Paralles Cron Job y PHP Hola e hecho una pagina de subastas y funciona muy bien en mi maquina pero con paralles y windows server 2008 solo me muestra la pagina de inicio y eso a medias
les pongo la pagina para que la vean www.kykofertas.com
alguien me podria decir porque no funciona me e quebrado la cabeza y no encuentro solucion dejo el config para que lo analisen Código PHP: <?php
$config = array(
'Database' => array(
'driver' => 'mysql',
'persistent' => false,
'host' => 'kykofertas.com',
'login' => 'Admin01',
'password' => '********', aqui cambie mi contra
'database' => 'sistema_subastas',
'prefix' => ''
),
'App' => array(
'encoding' => 'UTF-8',
'baseUrl' => '',
'base' => '/',
'dir' => 'app',
'webroot' => 'webroot/',
'name' => 'www.kykofertas.com',
'url' => 'http://www.kykofertas.com',
'timezone' => 'America/Mexico City',
'language' => 'esp',
'email' => '',
'theme' => 'default',
'currency' => '$ ',
'pageLimit' => 100,
'bidHistoryLimit' => 10,
'remember_me' => '+30 days',
'auctionUpdateFrequency' => 1,
'timeSyncFrequency' => 9,
'gateway' => true,
'demoMode' => false,
'noAutobids' => false,
'cronTime' => 1,
'logoutRedirect' => '/users/login',
'Image' => array(
'thumb_width' => 100,
'thumb_height' => 100,
'max_width' => 340,
'max_height' => 230
),
'Dob' => array(
'year_min' => date('Y') - 100,
'year_max' => date('Y') - 17
)
),
'Paypal' => array(
'url' => 'https://www.sandbox.paypal.com/cgi-bin/webscr',
'business' => '[email protected]',
'email' => '[email protected]',
'lc' => 'ES',
'currency_code' => 'USD',
'tipocambio' => 3.968
),
'Email' => array(
'delivery' => 'smtp',
'sendAs' => 'both',
'from' => 'kykofertas.com',
'host' => 'kykofertas.com',
'port' => 25,
'timeout' => 60,
'username' => '',
'password' => ''
),
'Cache' => array(
//'disable' => true,
'check' => false,
'time' => '' //
),
'debug' => 0
);
?> |