montrealist
Forum Replies Created
-
Forum: Localhost Installs
In reply to: WordPress Docker Image breaks REST api because loopback failsThank you @digitaltech – this is very useful.
No specific solution here but a good read, may help as well: https://github.com/docker-library/wordpress/issues/493
Forum: Fixing WordPress
In reply to: Other people uploading files on your site?This is potentially dangerous, since basically anyone can register with your site and upload files to your server; you need to be very careful to pick the right solution and make sure the file permissions on the server are properly tuned.
This being said, there are many plugins out there allowing for user-uploaded content. Here’s one (I made a quick search and this came up):
Forum: Fixing WordPress
In reply to: User/File ManagerPerhaps this plugin will be useful:
Forum: Fixing WordPress
In reply to: Importing error “Connection Timeout”I believe by default the export tool will not include your attachments (unless it got fixed recently, since this was an issue for years).
Do you have access to the source site? You could always use a plugin like Updraft Plus to create a backup of just the database and import that into the new site using the same plugin.
Forum: Fixing WordPress
In reply to: Failed to open stream / no such file or directory with a TWISTYep – and you can even use a plugin if you don’t want to do it manually. I find WP Migrate DB Pro (has a free version as well, not sure what features are lacking in it) handles the task really well.
Forum: Fixing WordPress
In reply to: Site hacked but couldn’t make any senseCan you reproduce the issue if you run the site locally? You’d probably need to look for those same characters by checking the page source.
If you can, I’d start by running a diff of your site’s current code against a latest ‘clean’ backup or against the clean WordPress codebase of the same version. If there’s nothing in WordPress core then you need to check the active theme and possibly even plugins. Easiest to narrow it down is just disable all plugins and check if issue persists, then switch to a clean version of some default theme like twentysixteen, then check again.
Forum: Fixing WordPress
In reply to: bad plugin locked me outYour pass is not working when, exactly? If you cannot connect to the server you need to talk to your host to reset it and get it working again.
Also, how have you “tried to disable thru total commander ftp client“? Are you using WP-CLI or were you going to get into the DB directly?
- This reply was modified 7 years, 8 months ago by montrealist.
Forum: Fixing WordPress
In reply to: Show two wordpress product categories with one urlHow do you have it set up? Are
fruit
andvegetable
both subcategories ofproduct-category
taxonomy?Forum: Developing with WordPress
In reply to: show wp-usermeta value in emailI think you’re getting back an array of arrays, so you would need to further drill down inside the variable. From the documentation:
Note: …you need to dereference the array that is returned for each key, like so:
$last_name = $all_meta_for_user['last_name'][0];
Have you tried this? E.g.
$namekid = $usermeta[‘name_kid’][0];
Another option is targeting what you need exactly:
$namekid = get_user_meta( $user_id, 'name_kid' , true );
- This reply was modified 7 years, 8 months ago by montrealist.
- This reply was modified 7 years, 8 months ago by montrealist.
Are you using any caching plugins on your site? Do you remember what happened around a month ago – did you update WordPress and/or plugins?
Forum: Fixing WordPress
In reply to: Failed to open stream / no such file or directory with a TWISTCan you list all files and folders you see inside your
/users/domain.com/htdocs/directory/new subdirectory/
?- This reply was modified 7 years, 8 months ago by montrealist.
Forum: Fixing WordPress
In reply to: Header Logo too large in IE and Firefox@sajer137 great – please mark this post as ‘resolved’.
Forum: Fixing WordPress
In reply to: How to change this plugin to support RTL websiteYou’ll need to get comfortable with writing CSS by hand, as well as core WordPress concepts that revolve around plugins and themes.
Here’s a good overview of what needs to be done. It’s for a theme, but a plugin would need a very similar kind of effort:
https://wpml.org/documentation/theme-compatibility/build-rtl-wordpress-themes/
Do you have a link to a thread with the plugin authors – either on their forum or on Github?
Forum: Fixing WordPress
In reply to: Adding an Instagram Feed using CSS, no plugin (Hidden Sidebars)This is not hard but not trivial either. You need to code up a mini-plugin with a shortcode that would do the job. If you can’t find an existing solution out there I’d say you’ll need to pay someone to do this.