cancel
Showing results for 
Search instead for 
Did you mean: 

How to install and test 1.9.3.1

How to install and test 1.9.3.1

I tried uploading the version 1.9.3.1 everything works fine but when i get to the licensing agreement it doenst let me click continue that's after i clicked on the agree to terms and condition. what do i do?

3 REPLIES 3

Re: How to install and test 1.9.3.1

Hi @wawababies

 

Can you attach a screenshot with your question?

---
Problem Solved Click Accept as Solution!:Magento Community India Forum

Re: How to install and test 1.9.3.1

Maybe you have enabled any ad blocker plugin that might be causing to block execution of javascript
Otherwise, check if there is some incompatibility in structure or files.

Re: How to install and test 1.9.3.1

Hi,
It look like you have file permission issue. During installation you must give 644 to all files and 755 to all directories in order to get it working.

find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
chmod +x mage

for more information check following thread.
https://community.magento.com/t5/Installing-Magento-1-x/Installation-Continue-button-does-not-work-u...
Thanks