Jacob Hill
Forum Replies Created
-
I also ran into this issue, and discovered that WP RSS Aggregator cannot retrieve data from an RSS feed when HTTP auth is enabled. It is strange though, because the preview shows up fine in the feed entry in wp-admin, but it doesn’t do a thing when fetch items is clicked. I had to disable HTTP auth to get it to work.
Resolved!! Well, this was actually a problem related to the bash script! Apparently after you pass 9 parameters and declare them in the script, the 10th and subsequent items need to be formatted within brackets: https://stackoverflow.com/questions/4912733/how-to-handle-more-than-10-parameters-in-shell. I’ll just format each one in brackets.
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Error On LoginThat resolved the issue, thank you so much!
Hopefully this functionality will be rolled into WordPress core…
Jim, thanks for the response! I’ll use ACF then. Have a great day!
Just a heads up, I installed Ithemes security, and then wasn’t able to do much of anything on my website. When I tried to deactivate a plugin or update a user, it would log me out. I had to manually remove Ithemes security, and then I was able to use my site as normal.
I am not sure if the conflict is caused by Ninja Firewall or another plugin (Or even a setting), but I am getting rid of it.
Thank you very much for the response!
Thank you very much for the support!! I really appreciate it! FYI, I read this on PHP’s documentation:
‘SERVER_NAME’
The name of the server host under which the current script is executing. If the script is running on a virtual host, this will be the value defined for that virtual host.
Note: Under Apache 2, you must set UseCanonicalName = On and ServerName. Otherwise, this value reflects the hostname supplied by the client, which can be spoofed. It is not safe to rely on this value in security-dependent contexts.
Source: http://php.net/manual/en/reserved.variables.server.php
And here is the link to Apache’s docs: https://httpd.apache.org/docs/2.4/mod/core.html#usecanonicalname
I’ll make sure that is configured appropriately. Thanks again!
Jake
- This reply was modified 7 years, 8 months ago by Jacob Hill.
- This reply was modified 7 years, 8 months ago by Jacob Hill.
- This reply was modified 7 years, 8 months ago by Jacob Hill.
Ok, I just found this thread: https://wordpress.org/support/topic/access-wp-config-php-credentials/
I was able to create the .htninja file, and reference the path of the wp-config.php file, and it is working — BUT only for the top level domain. The .htninja in the subdomain subfolder was ignored.
I modified the the .htninja file in web root:
<?php /* +===================================================================+ | NinjaFirewall optional configuration file | | | | See: https://nintechnet.com/ninjafirewall/wp-edition/help/?htninja| +===================================================================+ */ if ( $_SERVER['HTTP_HOST'] == "www.example.com" ) { $wp_config = '/home/path/wp-config/main-site/wp-config.php'; } elseif ( $_SERVER['HTTP_HOST'] == "www.subdomain.example.com" ) { $wp_config = '/home/path/wp-config/subdomain/wp-config.php'; }That worked well!
The reason I haven’t deleted this post is because I want you all to know someone else used this method! 🙂 It would be helpful if this scenario could be documented in the FAQ.
Thank you!
Jake
- This reply was modified 7 years, 8 months ago by Jacob Hill.
Wow, sorry to hear about your issues! Do you happen to use a backup plugin like UpdraftPlus?
Can you provide more specifics? Which files can’t you restore? What updates have you lost (I’m assuming these are page/post updates).
I tried to open all of the UM roles, and then save them, and that made my menus appear again as well.
You’re welcome! Let us know!
Ok. I’d recommend getting in touch with their support. They should be able to “rescue” your site by deactivating the UM plugins either by accessing the database or by renaming the UM plugin folders.
Just tell them the error, and that the plugin needs to be deactivated so you can log into the dashboard. They should handle it from there.
It’s ok! Who is your WordPress host?
@myancy, try this direct link: https://www.tachi-yokut-nsn.gov/wp-login.php
It works for me. Also see my edited post above about using FTP to deactivate the UM plugins if you can’t access the dashboard after logging in.
- This reply was modified 8 years, 1 month ago by Jacob Hill.