Website keeps going down, is it a plugin, database, memory problem, or something else?

Allowed memory exhausted is generally generated because the server can’t handle the memory usage of your site, and the actual memory issue can, as Pieter Goosen mentioned, really be anything on the site. Answers to your questions: It’s not too many plugins. WordPress can handle it 🙂 Probably not. If the storage of your website … Read more

How can I rebuild my websites while I don’t have databases?

Your database contains all your data for each of your sites. Without the databases, your sites will not have any posts, pages, site configuration, users, comments, or settings. If you stand these back up, you will have to create blank databases for each and install WordPress from scratch. You can follow the “Famous 5-minute Installation” … Read more

PHP Call to External Database

I can’t bee too specific answering your question, but you can certainly use a $wpdb instance to access another database: $db = new wpdb(‘user’, ‘password’, ‘dbname’, ‘dbhost’); $results = $db->get_results(‘..query..’);

Tool to check the database in Production [closed]

You can try use: MySQL WorkBench or other MySQL Client program; SSH to the Server and connect from the command prompt; Use PHPMyAdmin (make sure to password protect and set the right configuration); If you are really in need of an extra level of security you may want to consider setting up a VPN between … Read more