Magento Payment methods in admin panel gone missing -
after re-installing paypal module, our payment methods screen went weird, , have no idea how fixed. reloaded entire /app/design/adminhtml/ folder original magento compressed files used install it, still, no luck.
the block supposed come when click on "configure" button paypal express checkout.
the block supposed show has empty html elements in it, guess block not being rendered somewhere.
i copied across entire /app/design/adminhtml folder similar install, /skin/adminhtml.
screen looks this:
how can fix problem?
is layout issue, design issue, data, or missing template files somewhere?
it should this:
thanks in advance help.
a few things try (obviously disable caching/apc/compilation/minification of js,css/etc.):
logs & developer mode
first enable developer mode via .htaccess setenv or uncommenting flag in index.php
. ensure logging enabled via admin. system->configuration->developer->log settings. check var/logs/
existing exception.log or system.log possible information issues. doesn't hurt check apache , php's logs.
paypal , magento debugging
something note since ebay has/had backing of magento module pretty highly customized, on configuration, can tell. key files step through xdebug be:
app/code/core/mage/paypal/model/config.php
, ..paypal/model/system/config/*
directories , files, these driving of custom configuration options of module. etc/system.xml entry point review modules configurations.
reverting stock
1) copy fresh version of paypal module magento 1.7.x source archive (ensure same version running!)
copy app/code/core/mage/paypal
source archive
to app/code/local/mage/paypal
(note: paypaluk module may copy down local well)
this should quick , easy way check if there missing files, damaged/corrupted, and/or core file modified.
2) revert theme/skins base/default
theme. quick way system->design->add design change.
3) make backup of core_config_data
, remove instances of path
contains paypal, payment , payflow.
select * core_config_data path '%paypal%' or path '%payflow%' or path '%payment%';
this should revert configuration changes done defaults specified in modules xml.
the point of of these steps payment module stock possible.
hope helps!
sonassi has detailed fundamentals debugging magento worth read:
Comments
Post a Comment