I get the following error after the "Extra component" step:

An AJAX HTTP error occurred.
HTTP Result Code: 500
Debugging information follows.
Path: /core/install.php?rewrite=ok&profile=varbase&langcode=en&id=4&op=do_nojs&op=do
StatusText: Internal Server Error
ResponseText: 
500 Internal Server Error
Internal Server Error
The server encountered an internal error or
misconfiguration and was unable to complete
your request.
Please contact the server administrator,
you@example.com 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.
Apache/2.2.34 (Unix) mod_wsgi/3.5 Python/2.7.13 mod_fastcgi/mod_fastcgi-SNAP-0910052141 DAV/2 mod_ssl/2.2.34 OpenSSL/1.0.2o mod_perl/2.0.9 Perl/v5.24.0 Server at d8varbase.local Port 80

Comments

mori created an issue. See original summary.

rajab natshah’s picture

Thank you Marcus for reporting,

Have you had a look at Varbase requirements?
https://docs.varbase.vardot.com/getting-started/requirements

If you are installing, you will need to change the max execution time , and the memory limit
in the php.ini file in your local development machine and restart apache2

max_execution_time = 1200;
max_input_time = 180
max_input_vars = 10000
memory_limit = 3000M
error_reporting = E_ALL
post_max_size = 64M
upload_max_filesize = 32M
max_file_uploads = 40
mohammed j. razem’s picture

Status: Active » Needs work

I think the "install" directive in YML file for varbase_core and similar modules should be batched.

This should solve this issue without the need to bump up memory and execution time.

bogdog400’s picture

I'm seeing the same error at the start of the section for assembling components. I'll go back and try to bump up the limits, but please work toward batching the install. It would be much simpler.

An AJAX HTTP error occurred.
HTTP Result Code: 500
Debugging information follows.
Path: /var/docroot/core/install.php?rewrite=ok&profile=varbase&langcode=en&id=3&op=do_nojs&op=do
StatusText: Internal Server Error
ResponseText: 
paskainos’s picture

Title: Installation Issues: Internal Server Error » Installation Issues: An AJAX HTTP error occurred. HTTP Result Code: 500
Version: 8.x-6.x-dev » 9.0.6
Component: Miscellaneous » Code
Priority: Normal » Major

I attempted fresh Varbase 9.0.6 installations on PHP 8.1.5, 8.0.18, and 7.4.29. On each install, at the Assemble extra components stage, I received the following status message:

An error has occurred.
Please continue to the error page

An AJAX HTTP error occurred.
HTTP Result Code: 500
Debugging information follows.
Path: /core/install.php?rewrite=ok&profile=varbase&langcode=en&id=3&op=do_nojs&op=do
StatusText: Internal Server Error
ResponseText:

In php.ini I had:

max_execution_time = 300
max_input_vars = 1000
memory_limit = 2G

Which I bumped to:

max_execution_time = 1200
max_input_vars = 10000
memory_limit = 3G

After which the install completed successfully.

rajab natshah’s picture

rajab natshah’s picture

Status: Needs work » Fixed
rajab natshah’s picture

Status: Fixed » Closed (fixed)