Eric
Forum Replies Created
-
So, I don’t have SELinux or open base configured. There is plenty on disk space and the server is not spitting out any errors. Since the server runs in kubernetes, I tried the same docker build in a local environment and it indeed works. So that has me thinking that the issue I’m seeing isn’t due to a misconfiguration, but maybe an incompatibility of this application and how the microservices work???
The only difference that I see is that both MYSQL and storage are over the network. Since the plugin is dying on file extraction, I’m thinking that your plugin is not compatible with NFS storage. Can you shed some more light on what your plugin requires? I really want to get it to work for this environment.
Thanks.
Mar 18 2019 01:16:10
{“Number”:2,”Message”:”fopen(\/var\/www\/html\/wp-content\/plugins\/all-in-one-wp-migration\/storage\/t5kokyg5x78t\/import.log): failed to open stream: Invalid argument”,”File”:”\/var\/www\/html\/wp-content\/plugins\/all-in-one-wp-migration\/functions.php”,”Line”:1178}Thanks so much for the reply. I sent the details to your contact.
Forum: Fixing WordPress
In reply to: woocommerce tabs on the product page are not active (not clickable)Hey @onlineipi,
You need to look at your css for .related.products
The position of relative is overlaying the entire content area. Fix this and all will be working.
- This reply was modified 8 years, 11 months ago by Eric.
Forum: Fixing WordPress
In reply to: Pages that show blog menuHey @wererich1,
Sorry for the delay, are you referring to the actual widgets (search, recent posts, etc) or the sidebar (the whole area on the left side). If you are talking about the widgets, @wbcomdesigns is correct. If you’d like to remove the entire left side sidebar, you could easily add some custom css to make all pages full width.
.singular-page .grid.main-content-grid .sidebar {
display: none;
}.singular-page .grid.main-content-grid .content {
width: 100%;
}That will change all single pages to full width, hiding the sidebar. If you want to only hide the sidebar on select pages, just get the page id and add it to singular-page-.
For example:
.singular-page-35 .grid.main-content-grid .content {
width: 100%;
}This would target only the About page.
Forum: Fixing WordPress
In reply to: Can’t fix “parallelize downloads across hostnames” Ask QuestionI know this is going the opposite direction, but parallelizing hostnames are somewhat depreciated now. Enabling SSL and HTTP/2 can now serve multiple resources on one connection, making the need to parallelize irrelevant.
I would recommend moving your site to SSL and you could even use LetsEncrypt which will provide you with a free cert.
On a side note, I would also get rid of W3TC since your on DO. Instead, use NGINX’s built in caching, PHP7 Opcache, and install a REDIS instance for object caching. Keep all caching on the server and not within a plugin.
Forum: Fixing WordPress
In reply to: Faster way to select category???Hey @drweed!
We had the same issue and found that this plugin works the best.
Forum: Fixing WordPress
In reply to: Could not insert term into the databaseHey @emergingideas,
I don’t think the error resides in your database. You see the original categories there, so nothing is deleted. Without seeing the code, it sounds like you deleted or are missing a closing bracket or another operator in your functions file which is preventing the categories page to populate correctly.
Forum: Fixing WordPress
In reply to: PHP Warning: inet_ntop()Hey @jfantasybooks,
Looks like they already have a bug report going for it:
https://core.trac.ww.wp.xz.cn/ticket/41083Forum: Fixing WordPress
In reply to: General advice needed on inherited WP websiteHey @jasnick,
I’ve personally dealt with sites like this and you’re right, they tend to be cumbersome. Nevertheless, they are recoverable.
Since this site was compromised, I wouldn’t mess around with updating it. Updating WordPress will overwrite its own files, but the malicious files will still remain. It will be much easier and less time consuming to simply delete and install a fresh instance. I also wouldn’t trust the old SQL database in case of any injection attacks. This does include the theme files unless there isn’t much coding and easy to go through and identify any malicious code.
Be sure to export out all pages and posts, and any other media files, users, etc before you delete the old site. You will need to reimport this onto the new instance.
Also by doing this, you will be able to reinstall the updated versions of each plugin to ensure it works with version 4.8. Or, if the plugin is required at all.
As far as compromising your other sites, it depends completely on your host and how everything is configured. If this site is hosted in a separate folder on the same web server and uses the same user/group permission, then yes I would say an attacker could fully access your other sites’ files.
If you have any other questions, feel free to reach out to me.
Thanks.
Forum: Fixing WordPress
In reply to: Pages that show blog menuHey @wererich1,
Can you please post your URL for the site?
Forum: Plugins
In reply to: [Nginx Cache] Flush on CommentSounds good thanks. I think I figured out the confusion as well. I thought caching was at fault but it looks like chrome is syncing session data between my phone and compute, even while in incognito. Naughty naughty.
Anywho, I’ll look into the function and may implement something just as an assurance.
Forum: Plugins
In reply to: [Redis Object Cache] ACF does not work for widgetsYup flushed all Cache etc. I’ve setup redis for object caching per here: https://www.digitalocean.com/community/tutorials/how-to-configure-redis-caching-to-speed-up-wordpress-on-ubuntu-14-04
You can see all the prerequisites in that tutorial.
Forum: Plugins
In reply to: [Redis Object Cache] ACF does not work for widgetsI can answer this for diego if he doesn’t get around it.
Predis works. It seems with this new update, especially on Nginx, all ACF fields are disabled. From what it looks like ACF can’t read the DB / Redis cache properly. Disabling object cache or forcing Redis to use Predis does fix this issue.
What is the drawback with forcing Predis?
Forum: Plugins
In reply to: [EWWW Image Optimizer] Missing DB TableWould it be possible to send me the table structure and I’ll import it?