LumberHack
Forum Replies Created
-
Forum: Plugins
In reply to: [Keyy Two Factor Authentication (like Clef)] How many websites ?Hi again @danemorgan
I’d like to clarify this as it may not have been clear on the site. A site owner can buy a premium license and that will allow the site users (or employees) to connect to the site without any purchases.
So to clarify each app user gets 5 free sites and unlimited premium sites (as long as the premium site itself has available slots).
Hi there @danemorgan
Yes that’s right, a site behind basic http authentication is not supported at the moment.
The next upcoming release (presently undergoing a final set of tests) should support this. You can expect to see it live shortly. This would be version 1.0.3
Thanks for deciding to use Keyy.
Have a great week ahead !
@cleverk – Thanks for reporting this, did you change the url of the site since your last login ? Please use the contact support option within the Android app and send me a message. It should attach logs which I’ll need to investigate this for you. Thanks
Forum: Fixing WordPress
In reply to: Error Establishing a Database Connection in WordPressHey there
Since this is an intermittent issue, I suspect the DB is timing out or that there is a spike in load on the server and either Apache or the PHP handler times out ( less likely ). This is very likely to occur on shared hosts. I suggest you speak to your web hosting company and have them give you more memory.
Also take a look at your MySQL and Apache logs, these can be found in your cPanel / WHM / Control Panel, and share any interesting error messages when this happens here.
Forum: Fixing WordPress
In reply to: Can’t install new plugins like Contact Form 7.. PLEASEAlso are you getting any errors on the console ?
https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_ErrorsIt could be a conflict of some sort too, can you try a plugin conflict test as detailed here ? Please use a default theme when doing this
http://premium.wpmudev.org/manuals/using-wpmu-dev/getting-support/Finally can you turn on WP_DEBUG and post the exact error messages you see here ?
https://codex.wordpress.org/Debugging_in_WordPressForum: Fixing WordPress
In reply to: Redirecting Individual IP Addresses to Custom PageI dont see a plugin that can do this out of the box, I can give you a code snippet but that’d be manual and not what you are looking for based on your post. At this point the best way forward if to hire a developer and get a plugin like say this one, modified to support IP addresses. Should be pretty simple to do for the right guy
Forum: Networking WordPress
In reply to: Exporting wordpress sites to portable static site.This actually depends on the types of site and the content therein. If its primarily text and a few images then this is a good starting point.
https://www.npmjs.com/package/wp-to-static
Also this plugin can help export the contents of the site into a portable zip
Forum: Fixing WordPress
In reply to: Security ProblemHey there lefemi
I suspect the site may have been hacked as my AV throws a warning when I visit. That said here are some tips and techniques on having the site fixed.
Forum: Networking WordPress
In reply to: (SEO) Duplicate title tags on / and wp-signup.phpYou can simply add this to your
wp-config.phpfile and that should turn this behavior off.define( 'NOBLOGREDIRECT', 'http://webhive.com.au' );- This reply was modified 9 years, 7 months ago by LumberHack.
Forum: Networking WordPress
In reply to: What do users with theirDomain.org see when using sub-domains?You only need to point the DNS records to the server. The users should be able to traverse the site as theirDomain.net.
mod_rewriteand WP will take care of the urls.The same applies to both subsites and subdomains. Subsites for examples become
theirDomain.net/site1theirDomain.net/site2etc .. likewise for subdomainssite1.theirDomain.netandsite2.theirDomain.netetcForum: Networking WordPress
In reply to: Multisite Subdirectory Domain MappingCan you change back the site url and make sure the vhosts config file points the domain to the same folder as your multisite and NOT a new / blank folder. If you’re using a tool like cPanel make sure you add DOMAIN.com as a add on domain and point the folder to the root of the multisite setup.
Forum: Networking WordPress
In reply to: Instructions for single user login to their own blog on multsiteYou can try a plugin like this one.
https://wordpress.org/plugins/redirect-multisite-user-to-their-own-site/
It may not work if they own more than one site though.
Forum: Networking WordPress
In reply to: Different domain with the same contentHi there,
You can either use a plugin that handles domain mapping for you or alternately use the technique shown here
http://myjeeva.com/mapping-multiple-domains-into-single-instance-of-wordpress.html
Also its always better to use a canonical link to point to the master domain in such cases
Forum: Fixing WordPress
In reply to: Some posts not displayed right after HTTPS migration(CSS?)Does the plaintext HTTP version work fine ? Also are you getting any errors on the console ?
https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_ErrorsForum: Fixing WordPress
In reply to: Writing a Plugin – Hook advice?Can you share the shortcode handler code here ?
Also can you set the priority to something really high like
add_filter('the_content', 'modify_tables', 10, 999);