aetool
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: re-hiding custoimizer previewI am using the customizr theme and in the appearance/customize menu there was a button that said “click to show preview” or similar.
The upshot is that now in certain areas of the appearance/customize menus, things get all squeezed and mangled because the preview window takes up all the space. I want the preview pane to be like it was before as in not there at all.
Forum: Reviews
In reply to: [BackUpWordPress] stopped working after a weekSame thing happened to me and to multiple sites. I suspect that a plugin is interfering with it. Sorry about the support issue you are having. But the way the backup plugin is designed, there is no way to properly troubleshoot/trace where or when things go wrong. In the end I wrote my own backup scripts. It isn’t hard. Simply zip/tar/cpio up the whole directory tree, then do a mysql dump of the database, compress/zip/gzip the sql dump file and then send the two files to the cloud if you want. Just for giggles, I send a SMS message to myself that the backups have completed. There is a free SMS messaging service that is available. You do NOT have to pay for SMS messaging from Linux or Windows.
Forum: Plugins
In reply to: [BackUpWordPress] No backup – No errorI have the same issue here. What I had to do was to write my own backup scheme. It wasn’t hard. It just took a few minutes, plus I copy my backup to the google cloud.
I know that isn’t what you wanted to hear, but that was the only practical solution I could come up with. What is needed is a bunch of code added to the plugin so that debugging/tracing is possible. It was quicker for me to just write my own backup scripts.
Forum: Plugins
In reply to: [BackUpWordPress] How to do exclusions without wildcards?Assuming this is on linux, try defining as
‘./dir/’also try defining it as ‘dir’
you can also try ‘./dir/.’
- This reply was modified 6 years, 9 months ago by aetool.
I have found issues when combined with recaptcha and google auth.
Unless you provide some details, no one can help you. I use it all the time and email redirect does indeed work correctly.
Forum: Plugins
In reply to: [BackUpWordPress] Error message: php zip read errorTHe files are missing. Either your hard drive is failing, you have been hacked, or there is some other failure.
Uninstall and reinstall.
If it keeps recurring, install, rename the directory to something like .foo and install again. Check your server logs.- This reply was modified 6 years, 9 months ago by aetool.
Forum: Reviews
In reply to: [BackUpWordPress] Worst PluginI would not call it the worst plugin. The worst plugin is one that installs correctly, setup is right yet it does not do anything and it causes all of the admin function to display nothing but a white screen.
There seems to be some plugin conflicts with BUWP. What makes it really frustrating is that there is no debugging available. I am tempted to write a plugin that works no matter what. My problem is that I do NOT want to write a windows version. Anyone that runs WP on windows is not really serious about their site(s).
Some have called me a Unix/Linux bigot. I just know what works and works without a ton of grief.
I have lost interest in this plugin. I wrote my own backup solution and removed BUWP from all the sites I administer due to the non-existant debugging info, lack of support, silent failures, etc. My program creates the archives of file system and data base, uploads the backup archives to the cloud, sends SMS and/or email messages upon completion and/or failure, and do I do it all for free.
rich
.
Forum: Reviews
In reply to: [BackUpWordPress] Does Not WorkCan you give any additional info about your site?
Plugins installed.
http or https
reverse proxy
platform (Linux/Windows?) and versions
php versionIt might help others that have similar issues.
Forum: Networking WordPress
In reply to: WP and squid reverse proxybackupwordpress does not work. That seems to be the only thing that does not work.
- This reply was modified 6 years, 11 months ago by aetool.
Forum: Plugins
In reply to: [BackUpWordPress] BUWP and HTTPSI am in the middle of converting another e-commerce site to https. Yes, BUWP does not work.
With the demands made by paypal and regulators to force HTTPS, this is going to be a bigger problem as time goes on.
I am surprised that you found something that meets your needs. I tried several and gave up.
You are welcome.
I have a problem getting the backup plugin to run since I had to update to https. Since I am behind a reverse poroxy, it proved to be a challenge. Anyway, what I did was to write my own backup program and have it run from cron. It took about 20 minutes to implement. I get full backups of the database and all the files.
Of all the wordpress backup plugins available, this one is the best, but it just won’t run in my situation unless some code changes are made. I am not willing to go through that grief.
I suggest that if you are hosted on a linux platform, write your own backup solution.
If you need a copy of my script, let me know and I will post it. At least you will have a backup until your issues are sorted out.
rich
Forum: Plugins
In reply to: [YITH WooCommerce Social Login] Change the default Facebook permissionsFacebook permissions?
I am not sure what you need.
DO you have some details of what you want?
- This reply was modified 6 years, 11 months ago by aetool.
Forum: Plugins
In reply to: [User Email Verification for WooCommerce] huge gap before email first lineIf you are on a linux server and use the linux mailer to forward mail to google or some other SMTP agent, then adding a simple grep statement would be one way to fix the issue. Adding a “| grep . ” to the stream will take out blank lines. Brute force would be the cut out the lines such as cut -f1,12, 22,99 where lines 1-12 are the header and the next 10 lines are skipped/deleted, and then lines 22-99 left intact.
I know it can be painful to set up something like that if you haven’t done it before, but it is a solution.