Problems with deploy

I’m trying to deploy 9.1 versions of all my 8.1 applications to AWS, I can’t get past editing the connections.

File permissions and ownership look fine (read/write by owner and group, readable by others). Folders are correct permissions for Apache. Ownership is by Apache.

My connections are created and test OK, my timezone is set, but my site url always goes to setup instead of the default application.

AWS linux (centos variant), apache 2.4, php71, mysql 55.

Please help. Everything is down.

It would also be great if someone could share the tools/versions requirements for 9.1 linux. Someone forgot to put that in the documentation.

A workaround!

It seems I can start the initial application by explicitly calling its URL, so I added a 1 second redirect to that URL in the root index.html. This will keep the wolves at bay.

It seems I have similar problem. Please be so kind and provide details of how you did the redirect workaround.

Sure, but be aware that it’s just a workaround until NetMake fixes it (which may/may-not happen).

Create a new index.html in your application’s root. My root is at Apache’s wwwroot, so /var/www/html/index.html

My initial application is called “login”, so I redirect to the full URL for that application:

index.html:

<html>
<meta http-equiv=“refresh” content=“1;url=http://www.mydomain.com/login/”>
<body>
Wait…
</body>
</html>