After new installation 8.1 and deploy my site stops run.

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, webmaster@etaxiswaste.urlhost.gr and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

It happened to me too. I have update to the latest version. How to solve this problem ?

Did you tried to redeploy? Maybe something corrupt? Error 500 are related to a lot of possible errors. From a syntax error, to permission or whatever

yes several times
In error log on server says that the file htaccess is missing

But i did not make any changes to project.

The error has changed to “Zend Guard Run-time support missing!”
SC 8.1 makes me dizzy because my production becomes unpredictable.

Wich sc versi?n arecyou using? I think you forgot an update. You must be on 8.1.04

in About page

Version 8.1.0004

[QUOTE=dagathos;39444]in About page

Version 8.1.0004[/QUOTE]

Yes, but force an update, maybe some files are needed.

Hi

I make and update , redeploy but i take the same error on server.

Now i try to create a new project with only one form , to check the result .

[QUOTE=dagathos;39505]Hi

I make and update , redeploy but i take the same error on server.

Now i try to create a new project with only one form , to check the result .[/QUOTE]

Before starting a trial on error episode I would first check out the apache error log. Clean the file, start your application and after the message look into the errorlog and see what’s going on. That info should put you on the right track.

copy the error lines from server error log.

"
[Thu Aug 06 11:32:51 2015] [error] [client 212.251.40.85] File does not exist: /home/urlhost/public_html/etaxiswaste/500.shtml
[Thu Aug 06 11:32:51 2015] [error] [client 212.251.40.85] SoftException in Application.cpp:256: File “/home/urlhost/public_html/etaxiswaste/index.php” is writeable by group
[Thu Aug 06 11:31:45 2015] [error] [client 212.251.40.85] File does not exist: /home/urlhost/public_html/etaxiswaste/404.shtml, referer: http://etaxiswaste.urlhost.gr/
[Thu Aug 06 11:31:45 2015] [error] [client 212.251.40.85] File does not exist: /home/urlhost/public_html/etaxiswaste/favicon.ico, referer: http://etaxiswaste.urlhost.gr/
[Thu Aug 06 11:31:45 2015] [error] [client 212.251.40.85] File does not exist: /home/urlhost/public_html/etaxiswaste/500.shtml
[Thu Aug 06 11:31:45 2015] [error] [client 212.251.40.85] SoftException in Application.cpp:256: File “/home/urlhost/public_html/etaxiswaste/index.php” is writeable by group"

can you help me please?

That is the only text in the errorlog of apache? These messages have nothing to do with scriptcase afaik. But the error is coming from a security issue on your server. See http://www.frihost.com/forums/vt-133999.html

I try with full permissions 777 for all directory,
but the problem is still active.

I mention the i have diff versions on Apache in my pc and server site , is that problem ?

[QUOTE=dagathos;39645]I try with full permissions 777 for all directory,
but the problem is still active.

I mention the i have diff versions on Apache in my pc and server site , is that problem ?[/QUOTE]

Shouldn’t be a problem, but this erros don’t seems to come from SC app BTW

the same thing happened with me. Thanks for the help.

how you solved ?
I try until now but the problem is the same.

Hi again,

i try many times but the problem is the same.

Also create a new project with one blank module only, on my pc run’s fine , but on server i take again the same message.

The permissions are 777, for the demo, but nothing change .

Please if anyone can help me i appreciate.

Thanks .:frowning:

Turn on full logging for php errors e.g. using E_ALL using error_reporting(E_ALL); in your code.
Next to that check your apache error logging, turn it on if it isnt.
Clear the logs and do your tests. The errors should appear in your error logging.
It looks like some bad configutation. In fact it looks like the file is not accessible (I just tried to access http://etaxiswaste.urlhost.gr/home/urlhost/public_html/etaxiswaste/index.php).
On the other hand I also noticed that this: http://etaxiswaste.urlhost.gr/ was also not accessible. So it smells like a misconfig on the server side…

The problem seem’s to be the zip file created by deploy.

When try to deploy on local server , and then copy all files via ->ftp to server it works.

The total file size is 129MB of zip file , do you know if has limit ?

Any idea ?

Technically it shouldnt have a limit, since it is basically zipping a file together. And php can zip way more then 129MB.
If you download the zip can you check if the zip is damaged?
I can imagine that it takes too long to zip the 129MB together if your machine is very slow. Then the php routine might be aborted if it runs too long. In which case you would also get a broken zip. But honestly 129mb is not much, it is a small zip file.
You could increase the php timeout on your development environment. The default is 30 seconds afaik. You could change max_execution_time in your php.ini and see if that helps (default also 30 seconds).
I recall I also changed this one more then a year ago (search in the forum, more ppl did it too).
Maybe that will help you.