Usamos cookies para medir audiência e melhorar sua experiência. Você pode aceitar ou recusar a qualquer momento. Veja sobre o iMasters.
Sempre dizem que pegar códigos de outra pessoa é uma dor de cabeça so..
Mesmo sabendo disso, arrisquei, afinal, que problema teria sem "simplismente" mudar de hospedeiro e manter o código? No entanto, meu problema começa ai...
Tive o desafio de mudar para esse site: http://www.feiraodastintas.com.br dentro do LINK LOJA ONLINE, inserir esse site: http://www.diretodistribuidor.com.br/
Parece coisa simples, não acham?
O que eu precisaria de fazer? Copiar o banco desse direto distribuir para o servidor do feiraodastintas e mudar o arquivo de conexão para o banco novo. Além disso, copiar todos os arquivos do dominio antigo para o novo.. Fiz isso, feliz da vida que ia dar certo...
TEORICAMENTE isso bastaria para funcionar, no entanto, as coisas não foram assim.
Para começar, tem milhões de arquivos que não existem.. o que parece que o antigo desenvolvedor achou um codigo ja pronto e so mudou uma coisa e outra..
Sinceramente estou desesperada, pois, nao sei o que faço..
No index do site do direto, ele chama uma pagina que chama application_top.php
Nesse application tem um monte de if:
<?php
/**
* application_top.php Common actions carried out at the start of each page invocation.
*
* Initializes common classes & methods. Controlled by an array which describes
* the elements to be initialised and the order in which that happens.
* see {@link http://www.zen-cart.com/wiki/index.php/Developers_API_Tutorials#InitSystem wikitutorials} for more details.
*
* @package initSystem
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: application_top.php 6526 2007-06-25 22:59:38Z drbyte $
*/
/**
* boolean if true the autoloader scripts will be parsed and their output shown. For debugging purposes only.
*/
define('DEBUG_AUTOLOAD', false);
/**
* boolean used to see if we are in the admin script, obviously set to false here.
*/
define('IS_ADMIN_FLAG', false);
/**
* integer saves the time at which the script started.
*/
define('PAGE_PARSE_START_TIME', microtime());
// define('DISPLAY_PAGE_PARSE_TIME', 'true');
@ini_set("arg_separator.output","&");
/**
* Set the local configuration parameters - mainly for developers
*/
if (file_exists('includes/local/configure.php')) {
/**
* load any local(user created) configure file.
*/
include('includes/local/configure.php');
}
/**
* set the level of error reporting
*
* Note STRICT_ERROR_REPORTING should never be set to true on a production site. <br />
* It is mainly there to show php warnings during testing/bug fixing phases.<br />
* note for strict error reporting we also turn on show_errors as this may be disabled<br />
* in php.ini. Otherwise we respect the php.ini setting
*
*/
if (defined('STRICT_ERROR_REPORTING') && STRICT_ERROR_REPORTING == true) {
@ini_set('display_errors', '1');
error_reporting(E_ALL);
} else {
error_reporting(E_ALL & ~E_NOTICE);
}
/**
* include server parameters
*/
if (file_exists('includes/configure.php')) {
/**
* load the main configure file.
*/
include('includes/configure.php');
} else {
header('location: zc_install/index.php');
}
/**
* if main configure file doesn't contain valid info (ie: is dummy or doesn't match filestructure, goto installer)
*/
if (!is_dir(DIR_FS_CATALOG.'/includes/classes')) header('location: zc_install/index.php');
/**
* include the list of extra configure files
*/
if ($za_dir = @dir(DIR_WS_INCLUDES . 'extra_configures')) {
while ($zv_file = $za_dir->read()) {
if (preg_match('/\.php$/', $zv_file) > 0) {
/**
* load any user/contribution specific configuration files.
*/
include(DIR_WS_INCLUDES . 'extra_configures/' . $zv_file);
}
}
$za_dir->close();
}
$autoLoadConfig = array();
$loader_file = 'config.core.php';
$base_dir = DIR_WS_INCLUDES . 'auto_loaders/';
if (file_exists(DIR_WS_INCLUDES . 'auto_loaders/overrides/' . $loader_file)) {
$base_dir = DIR_WS_INCLUDES . 'auto_loaders/overrides/';
}
/**
* load the default application_top autoloader file.
*/
include($base_dir . $loader_file);
if ($loader_dir = dir(DIR_WS_INCLUDES . 'auto_loaders')) {
while ($loader_file = $loader_dir->read()) {
if ((preg_match('/^config\./', $loader_file) > 0) && (preg_match('/\.php$/', $loader_file) > 0)) {
if ($loader_file != 'config.core.php') {
$base_dir = DIR_WS_INCLUDES . 'auto_loaders/';
if (file_exists(DIR_WS_INCLUDES . 'auto_loaders/overrides/' . $loader_file)) {
$base_dir = DIR_WS_INCLUDES . 'auto_loaders/overrides/';
}
/**
* load the application_top autoloader files.
*/
include($base_dir . $loader_file);
}
}
}
$loader_dir->close();
}
/**
* determine install status
*/
if (( (!file_exists('includes/configure.php') && !file_exists('includes/local/configure.php')) ) || (DB_TYPE == '') || (!file_exists('includes/classes/db/' .DB_TYPE . '/query_factory.php'))) {
header('location: zc_install/index.php');
exit;
}
/**
* load the autoloader interpreter code.
*/
require('includes/autoload_func.php');
/**
* load the counter code
**/
// counter and counter history
require(DIR_WS_INCLUDES . 'counter.php');
// get customers unique IP that paypal does not touch
$customers_ip_address = $_SERVER['REMOTE_ADDR'];
if (!isset($_SESSION['customers_ip_address'])) {
$_SESSION['customers_ip_address'] = $customers_ip_address;
}
?>
Ele fala que se nao existir algumas paginas que é para instalar outras..
So que essas outras nao existe.. afz!!!
Se eu tiro esse if, da pau em outra coisa.. misericordia..
http://www.feiraodastintas.com.br/Loja/zc_install/index.php
Se alguém puder ajudar, eu agradeço eternamente
Obrigada
Carregando comentários...