David
Forum Replies Created
-
This is a feature that is holding me back from using this in production. i prefer to backup the files every couple of days but the database every 12hrs. I use BackWPup now and just create two jobs and it works well. I like the way your backup plugin splits things up though so restoring parts of a site is easier. any eta on this feature?
Forum: Plugins
In reply to: [Adminimize] wp-login.php 404i managed to clean the DB of adminize, and the plugin and was able to get back in. I did take an export right before I got dumped if support wants to see it. I also took a backup before the plugin so all is good.
bump
Here is the code I have in teh system. As you can see I have the staff shortcode in, and teh page is outputting the “team” and “role” but none of the name, bio, picture etc.
<h2>Head Coach</h2> [staff 148] <h3>Assistant Varsity Team Coach</h3> [staff 182] <h2>Junior Varsity Coach</h2> [staff 177]Forum: Plugins
In reply to: [Facebook Events Importer] Stop Updates Overriding CustomizationsI also do not want to stop ALL events updating, just specific ones.
What I did was set the S3 bucket to my production bucket and so I can work on it in local dev or production and the urls stay the same. See screenshot: http://imgur.com/Z5tizbI
I am using a single bucket per domain for my sites. This is why I stripped everything but the wp-content/uploads part. So another domain would be in a different bucket and no cross posted files to worry about.
I also like this method, if I need to I can delete the plugin, and use something like Velvet Urls to update all the links and they would all be back to the local domain quickly.
This is working well, as I can then sync my db and theme and no need to worry about image urls.
Thanks for the fix…
Forum: Plugins
In reply to: [AIO Cache & Performance] PRO kills dashicon cssFrustrating as a PRO user have to use the forums, and still not getting a reply.
Ok, so I figured it out. For some reason I had ” instead of ‘ around the prefix field.
$table_prefix = “myunique_”;
vs
$table_prefix = ‘myunique_’;I changed the prefix, and re-enabled the plugin and it is working. I looked at my backups for the last few months and it has always been with ” instead of ‘ yet the plugin worked (or at least did not give a warning).
DB_NAME: OK
DB_USER: OK
DB_PASSWORD: OK
DB_HOST: OK
cannot read table_prefix
Sorry I forgot to mention, the “update” was Ninja-Firewall not WP. I am using 3.8.1 and have been since it launched. Only change is Ninja Firewall.
There is nothing in the wp-config that I can think of. I do not use any special settings. I only added the following, but removing these does not make any affect with your plugin. Everything else is standard wp-config-sample items.
/* Custom WordPress URL. */
define( ‘WP_SITEURL’, ‘http://www.’ );
define( ‘WP_HOME’, ‘http://www.’ );/* Specify maximum number of Revisions. */
define( ‘WP_POST_REVISIONS’, ‘3’ );
/* Media Trash. */
define( ‘MEDIA_TRASH’, true );/* Multisite. */
define( ‘WP_ALLOW_MULTISITE’, false );/* PHP Memory */
define( ‘WP_MAX_MEMORY_LIMIT’, ‘512M’ );/* WordPress Cache */
define( ‘WP_CACHE’, true );/* Compression */
define( ‘COMPRESS_CSS’, true );
define( ‘COMPRESS_SCRIPTS’, true );
define( ‘CONCATENATE_SCRIPTS’, true );
define( ‘ENFORCE_GZIP’, true );/* Updates */
define( ‘WP_AUTO_UPDATE_CORE’, true );
define( ‘DISALLOW_FILE_EDIT’, true );Again, the site is loading and working fine. So if there was an issue with actually getting the details from the DB based on aomething in the wp-config would it not be then that the site would have issues. Also, it was working the exact some wp-config file before the last update. So I do not think it is my enviro or wp-config.