Trying to install a fresh copy of magento 2.3.2. It goes throught steps 1(passes) and step 2 fine. When I click next after Step 3, it does nothing.
customize-your-store:1 Failed to load resource: the server responded with a status of 503 (Service Unavailable)
angular.js:533 Error: [$compile:tpload] http://errors.angularjs.org/1.6.9/$compile/tpload?p0=index.php%2Fcustomize-your-store&p1=503&p2=Serv...
at angular.js:173
at angular.js:13951
at angular.js:6988
at m.$digest (angular.js:8414)
at m.$apply (angular.js:8817)
at l (angular.js:11306)
at t (angular.js:12295)
at XMLHttpRequest.A.onload (angular.js:12410)
(anonymous) @ angular.js:533
(anonymous) @ angular.js:10538
(anonymous) @ angular.js:14224
(anonymous) @ angular.js:6988
$digest @ angular.js:8414
$apply @ angular.js:8817
l @ angular.js:11306
t @ angular.js:12295
A.onload @ angular.js:12410
Hi @brian_vida,
Try once with full permission to root folder.
sudo chmod -R 0777 MAGENTO_DURECTORY_PATH
after installation you need to give following permission
sudo find . -type d -exec chmod 755 {} \; && find . -type f -exec chmod 644 {} \; && chmod u+x bin/magento sudo chmod -R 0777 var/ pub/ generated/
Also increase memory limit on the server.
memory_limit 4096M
Or add in index.php file of root folder.
ini_set("memory_limit","-1");
I hope it will help you!!
Hello @brian_vida,
Please check for .maintenance.flag file in var folder of your magento root directory, if it is there then please delete it and provide permission to var,generated and pub folder by s
udo chmod -R var/ pub/ generated/ app/etc/config.php
And then check it again on front end.
I hope this will help you. If still you face this error, please let me know.
If it helps you, please accept it as solution and give kudos.
Regards
You may also want to chnage PHP notofication level for the errors.
Still having no luck. I looked for the maintenance.flag. IT's not there and does not appear to be the issue. I tried deleting everything and re-uploading, set the folder to 777, no dice. This is a shared server, so I only have so much access. Tried installing on an old version of IE, get this error:
Error: [$compile:tpload] http://errors.angularjs.org/1.6.9/$compile/tpload?p0=index.php%2Fcustomize-your-store&p1=503&p2=Serv...
Chrome shows:
Failed to load resource: the server responded with a status of 503 (Service Unavailable)
angular.js:533 Error: [$compile:tpload] http://errors.angularjs.org/1.6.9/$compile/tpload?p0=index.php%2Fcustomize-your-store&p1=503&p2=Serv...
at angular.js:173
at angular.js:13951
at angular.js:6988
at m.$digest (angular.js:8414)
at m.$apply (angular.js:8817)
at l (angular.js:11306)
at t (angular.js:12295)
at XMLHttpRequest.A.onload (angular.js:12410)
(anonymous) @ angular.js:533
It may happen because the server is under the maintenance mode or is simply busy. 503 (Service Unavailable). Or you can contact your Hosting Provider.
Problem solved? Click Accept as Solution and Click Kudos.