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?
Hi @wawababies
Can you attach a screenshot with your question?
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.
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