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.15Configuration File (php.ini) Path /etc/php7.2 Loaded Configuration File /homepages/xx/xxxxx/htdocs/xyxdfsfs/php.ini
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
// 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
Need Help?
PHP DocumentationServer failed to respond. Please try again.
Your PHP settings are correct.
Need Help?
PHP Extension HelpServer failed to respond. Please try again.
You meet 5 out of 5 writable file permission requirements.