Axel13
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How To Add Youtube Video To Plugin's PageYou can look at the readme file to see how it was done…
And apparently you can simply paste the URL 🙂Did you lose any data or settings? Else simply update…
Forum: Fixing WordPress
In reply to: Site keeps crashing with 500 error code.Not sure if it would help, and it basically shouldn’t happen, but perhaps try to add a comment in between, like this:
# BEGIN WordPress
#
<IfModule mod_rewrite.c>
#
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Fixing WordPress
In reply to: Feed not workingAccording to W3C nothing is wrong with your feed.
https://validator.w3.org/feed/check.cgi?url=http%3A%2F%2Fwww.gujinfo.com%2Ffeed%2FWhat problem do you experience?
Forum: Fixing WordPress
In reply to: New user registration not coming thruTo solve email problems Postman SMTP may also be helpful. I didn’t try it yet, but I would if I experienced something like this.
Forum: Fixing WordPress
In reply to: New user registration not coming thruThis may not be a solution to your problem, but to prevent losing registrations you could install Contact Form DB. This way, all gets saved in the database.
Have you tried whether or not other emails can be sent from your website?
Forum: Fixing WordPress
In reply to: Clicking on appearance or plugins "Page not found"Could you activate your error log?
You can do so in wp-config.php by adding:define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);before where it says:
/* That's all, stop editing! Happy blogging. */This way your errors will not be displayed on your site. Instead they will be saved in /wp-content/debug.log.
This my be useful to find the cause.Make sure not to leave it on too long, because if there are many errors the file may become very large in no time.
Forum: Fixing WordPress
In reply to: Unable to log in after 4.3 updateIn wp-settings.php on line 272 there should be:
$GLOBALS['wp_rewrite'] = new WP_Rewrite();If this isn’t the case, then there probably went something wrong during upgrade. You could download WP 4.3 and replace that file through FTP. You may need to replace more files though, but you’ll notice when you get a new error.
I hope that helps. GL!
Forum: Networking WordPress
In reply to: Multisite Subdomain map to new domainGreat! WordPress works in mysterious ways 🙂
GL with it!
Could you mark this topic as resolved?Forum: Networking WordPress
In reply to: Multisite Subdomain map to new domainIt should return the IP indeed. Also, it probably wouldn’t return your main URL if it did not refer correctly.
Still it’s weird that it redirects to http://www.domain.com/wp-signup.php?new=www.domain2.com. “Normally’ when the IP is correct, yet there is no subdomain for it, the domain would redirect to the main domain. I can’t think of anything that would make it ask to create a new site with the domain as subdomain… This redirect would happen when you try to visit a subdomain that doesn’t exist. F.ex. when you would go to domain2.domain.com. Then you would be redirected to http://www.domain.com/wp-signup.php?new=domain2… So, I’m not getting it either.
Perhaps you could better ask for help in the WordPress MU Domain Mapping forum. When it’s a problem (that may be) related to a plugin, this increases you chances on finding help. You can find plugin forums on the plugin pages > support.
Forum: Networking WordPress
In reply to: multi language multi site problemHere it seems to work fine. The menu changes, the content too. The language flags, however, do not show up in the German menu. There is text instead.
What I find a bit weird, though, is that all content is in a language folder. Not https://isciencebox.de/en/, but https://isciencebox.de/language/en/. It would be better to change that, since ‘language’ probably has little SEO value (at least not for all pages).
Forum: Networking WordPress
In reply to: multi language multi site problemAs far as I know, polylang and qtranslate do the same, so you should use only one or the other, not both…
But I see it has improved already 🙂
Bon courage!Forum: Networking WordPress
In reply to: multi language multi site problemConsidering the link on the logo it seems that the site has moved to https://isciencebox.de/language/en/home/
Also, when going to the main URL that’s where the site redirects to too, but from there it wants to redirect again, which causes a loop.
The homepage seems to be https://isciencebox.de/language/en/Something else that is weird, the links on the flags are:
German: http://isciencebox.de/language/de
English: http://www.isciencebox.de/language/en
So, the language shouldn’t be there, but one has www and the other not.http://www.isciencebox.de/en & http://www.isciencebox.de/de are not working, that’s a 404 page there, saying the pages do not exist.
Frankly, there seems to be more wrong than just the language.
Can you recall what exactly you did to change the it?I think it would be best to return on your steps.
Perhaps deactivate the plugin (assuming you used one) and try to make sure that everything works correctly before you give it another try.
-my2ct.
I hope it helps. GL!Forum: Networking WordPress
In reply to: Subfolder site problemJust guessing… Did you perhaps create a folder with that name? If yes, there is no need to do this.
Forum: Networking WordPress
In reply to: How to disable an active plugin from one siteHey Shmoo,
I didn’t try it, but based on a reply here, the following should do the trick:
1. Create a file named no-woo.php
2. Paste the following in it:<?php defined( 'ABSPATH' ) or die( 'Caminante, no hay camino.' ); /* Plugin Name: No Woo Plugin URI: https://wordpress.org/support/topic/plugins-how-to-disable-an-active-plugin-from-one-site Description: Deactivate WooCommerce on main site in a multisite License: GNU General Public License v.3 License URI: http://www.gnu.org/licenses/gpl-3.0.html Author: Axel13 Author URI: https://eco13.me/ Version: 00.01 Network: true */ function no_woo($value) { global $current_blog; if( $current_blog->blog_id == 1 ) { unset($value['woocommerce/woocommerce.php']); } return $value; } add_filter('site_option_active_sitewide_plugins', 'no_woo'); ?>3. Save and upload to /wp-content/mu-plugins/
Plugins in this folder activate automatically.
I hope that does the trick indeed. GL with it!