Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello, @firozavp38
Could you please elaborate more on the issue itself? Do you receive any error messages when you’re loading the site or you just receive timeouts in your browser?
You can examine the Apache/Nginx error log to see if there are any logged errors in order to see if something specific is causing the issue for you.
The location of the Apache error log is:
/var/log/apache2/error.log
The location of the Nginx error log is:
/var/log/nginx/error.log
You can also check your PHP error log if your site is based on PHP. You can find the location of the error log from the php.ini file. Just look for the error_log line and see the exact location.
Let me know how it goes.
Regards, Alex
Do you have any idea about this error
Warning in ./libraries/plugin_interface.lib.php#551 count(): Parameter must be an array or an object that implements Countable
Backtrace
./libraries/display_export.lib.php#381: PMA_pluginGetOptions( string ‘Export’, array, ) ./libraries/display_export.lib.php#883: PMA_getHtmlForExportOptionsFormat(array) ./libraries/display_export.lib.php#1099: PMA_getHtmlForExportOptions( string ‘database’, string ‘moviesna_wp174’, string ‘’, string '<div class=“export_table_list_container”><input type=“hidden” name=“structure_or_data_forced” value=“0”><table class=“export_table_select”><thead><tr><th></th><th>Tables</th><th class=“export_structure”>Structure</th><th class=“export_data”>Data</th></tr><tr><td></td><td class=“export_table_name all”>Select all</td><td class=“export_structure all”><input type=“checkbox” id=“table_structure_all” /></td><td class=“export_data all”><input type=“checkbox” id=“table_data_all” /></td></tr></thead><tbody> <tr><td><input type=“checkbox” name=“table_select[]” value=“wp4s_commentmeta” checked=“checked” /></td><td class=“export_table_name”>wp4s_commentmeta</td><td class=“export_structure”><input type=“checkbox” name=“table_structure[]” value=“wp4s_commentmeta” checked=“checked” /></td><td class=“export_data”><input type=“checkbox” name=“table_data[]” value=“wp4s_commentmeta” checked=“checked” /></td></tr><tr><td><input type=“checkbox” name=“table_select[]” value=“wp4s_comments” checked=“checked” /></td><td class=“export_table_name”>wp4s_comments</td><td class=“export_structure”><input type=“checkbox” name=“table_structure[]” value=“wp4s_comments” checked=“checked” /></td><td class=“export_data”><input type=“checkbox” name=“table_data[]” value=“wp4s_comments” checked=“checked” /></td></tr><tr><td><input type=“checkbox” name=“table_select[]” value=“wp4s_links” checked=“checked” /></td><td class=“export_table_name”>wp4s_links</td><td class=“export_structure”><input type=“checkbox” name=“table_structure[]” value=“wp4s_links” checked=“checked” /></td><td class=“export_data”><input type=“checkbox” name=“table_data[]” value=“wp4s_links”
Hello, @firozavp38
You can tail the last 100 rows from the Apache error log using the following command:
tail -n 200 /var/log/apache2/error.log
As for the provided output, there is a warning but not an error itself, so I will wait for the Apache error log output to see if there is a logged error there.
Regards, Alex