cancel
Showing results for 
Search instead for 
Did you mean: 

Magento (CE2.3) Installation Errors PHP

Magento (CE2.3) Installation Errors PHP

Hi

im stucked getting this error messages, php.ini file is in root.

Other Sites are currently running on the server so php should give response.

 

PHP Version Check

Server failed to respond. Please try again.

 

PHP Settings Check *

Your PHP settings are correct.

 

PHP Extensions Check

Server failed to respond. Please try again.

 

File Permission Check

You meet 5 out of 5 writable file permission requirements.

 

php.ini files gives out :

Core PHP Version 7.2.15

 

Configuration File (php.ini) Path /etc/php7.2 Loaded Configuration File /homepages/xx/xxxxx/htdocs/xyxdfsfs/php.ini
 
if i delete my php.ini file it gets 
Configuration File (php.ini) Path /etc/php7.2 Loaded Configuration File /etc/php7.2/php.ini
2 REPLIES 2

Re: Magento (CE2.3) Installation Errors PHP

Hi @yusuf_eren 

 

You need to add this line of code:

 

error_reporting (E_ERROR);

After the line:

 

set_error_handler ([$ handler, 'handler']);

In setup/index.php file.

 

I hope it will work for you.

 

Thanks

 

--
If my answer is useful, please Accept as Solution & give Kudos

Re: Magento (CE2.3) Installation Errors PHP

// For Setup Wizard we are using our customized error handler
$handler = new \Magento\Framework\App\ErrorHandler();
set_error_handler([$handler, 'handler']);
error_reporting (E_ERROR);

$configuration = require __DIR__ . '/config/application.config.php';
$bootstrap = new Application();
$application = $bootstrap->bootstrap($configuration);
$application->getServiceManager()
->get(ObjectManagerProvider::class)
->setObjectManager(\Magento\Framework\App\Bootstrap::create(BP, $_SERVER)->getObjectManager());
$application->run();

 

 

 

doesnt work, unfortunately @PankajS_Magento 

 

 

Error! You need to resolve these issues to continue.
PHP Version Check

Server failed to respond. Please try again.

PHP Settings Check *

Your PHP settings are correct.

 
PHP Extensions Check

Server failed to respond. Please try again.

File Permission Check

You meet 5 out of 5 writable file permission requirements.