Code: Select all
require('includes/autoload_func.php');
if(!in_array(basename($_SERVER['SCRIPT_NAME']), array('shopping_cart.php', 'login.php', 'create_account.php', 'checkout_shipping.php', 'checkout_payment.php', 'checkout_confirmation.php', 'checkout_process.php', 'checkout_success.php'))) include(DIR_WS_INCLUDES . 'magic_seo_url.php');
BUT it doesn't stop MSU from rewriting all those files....and also i have to integrate Fast Easy checkout code:
Code: Select all
require('includes/autoload_func.php');
if ($_GET['main_page'] != 'checkout') {
include(DIR_WS_INCLUDES . 'magic_seo_url.php');
}
therefore, in case the code to stop rewriting some urls decided to work, how do i integrate with the FeC?
Thanks