cancel
Showing results for 
Search instead for 
Did you mean: 

Upgrade from 1.9.3.6 to 1.9.3.7

Upgrade from 1.9.3.6 to 1.9.3.7

I am currently attempting to upgrade by site from 1.9.3.6 to 1.9.3.7 so that the latest security patches can be installed. When I uploaded the 1.9.3.7 files over the current installation, the entire site went to a 404 page error (store and admin).  And I was completely locked in. 

 

I reuploaded the 1.9.3.6 files and was able to get things working. However, what is different about the 1.9.3.7 version?  All files were uploaded correctly. So does anybody have any insights on how to deal with this issue???

 

 

 

6 REPLIES 6

Re: Upgrade from 1.9.3.6 to 1.9.3.7

Hi, have you read the release notes of 1.9.3.7? http://devdocs.magento.com/guides/m1x/ce19-ee114/ce1.9_release-notes.html#ce19-1936

 

There is a known issue in installations with PHP warnings being thrown, this can cause a 404 page being shown: http://devdocs.magento.com/guides/m1x/ce19-ee114/ce1.9_release-notes.html#ce19-1936

----
If you've found one of my answers useful, please give "Kudos" or "Accept as Solution" as appropriate. Thanks!

Re: Upgrade from 1.9.3.6 to 1.9.3.7

I have disabled every 3rd party modules, one by one, in hopes of identifying the module, yet the problem persists.  

 

What is the best way to identify the culprit?

 

Steve

Re: Upgrade from 1.9.3.6 to 1.9.3.7

Hi @Nexobus,

Please check system.log file or exception.log file under var folder.

If you found any error than please share.

---
If you've found my answer useful, please give"Kudos" and "Accept as Solution"

Re: Upgrade from 1.9.3.6 to 1.9.3.7

There is nothing listed in those 2 log files or any other log files.


Re: Upgrade from 1.9.3.6 to 1.9.3.7

This is caused when the core error handler is called early in the execution, when you're not in developer mode, before the current store has been initialised.

It's due to the addition of the log file extension validation in Mage.php, which in turn calls getStoreConfig, which refers to the current store.

We had a legacy store containing a module with an invalid config.xml - so try checking all your xml files to ensure they are valid.

It also should be easy enough to find by checking the stack trace around line 247 in functions.php (where the call to Mage::log is)

Re: Upgrade from 1.9.3.6 to 1.9.3.7

Can you provide a step by step guide to what you just wrote?  It is all greek to me.