autotutorial
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why my links show as /?page_id=xx ? my permalinks is set up as post?p=1283
<!-- DRAGONITA meter breadcrumbs --> <div class="breadcrumbs-container"><div class="inner-container"><p id="breadcrumbs"><span><span><a href="https://domain.example/" >Home</a> » <span class="breadcrumb_last" aria-current="page">Error 404: Page not found</span></span></span></p></div></div><!-- END DRAGONITA -->Maybe Yoast Seo plugin have conflict with theme or plugin.
When using a non-default language the url is not found, you have Spanish as the default while if you use the English language is added en / to the url this produces an error http 404, ask for support to your multilingual plugin
https://wpml.org/purchase/support-policy/- This reply was modified 6 years, 6 months ago by autotutorial. Reason: Edit, problem multi language
Forum: Fixing WordPress
In reply to: Remove default themes PERMANENTLYthemes from being installed on upgrade, explicitly define
* CORE_UPGRADE_SKIP_NEW_BUNDLED as false.
https://core.trac.wordpress.org/browser/tags/5.3/src/wp-admin/includes/update-core.php#L810Forum: Fixing WordPress
In reply to: Invalid argument supplied for foreach() in class-wp-post-type.phphttps://wordpress.org/support/topic/warning-message-115/#post-12134170
are you two to receive the same error, have you installed wordpress via some loader?Forum: Networking WordPress
In reply to: Position of multisite code in wp-config@mnatseah624 wp-settings.php and wp-config.php are two distinct configurations, in your specific case I can’t tell you if they are correct, I should encode all wordpress to see if the constant ones can exist in wp-settings.php.
Forum: Fixing WordPress
In reply to: Warning messagehttps://github.com/WordPress/WordPress/blob/5.3-branch/wp-includes/class-wp-post-type.php#L526
Foreach only works with arrays and objects.
may be a conflict of themes or pligin, set the default theme twenty * and disable your plugins, if this does not solve the problem you can check your php error log.Forum: Fixing WordPress
In reply to: Can’t access wp-admin DashboardAdd this constant into wp-config.php before
require_once//Without and slash define('WP_HOME', 'http://your domain.com'); define('WP_SITEURL', 'http://your domain.com');If you still can’t access it means that one or more of the following temporary problems is using a load balancer and / or a cache. Contact your hosting if you have never added this.
Forum: Fixing WordPress
In reply to: Multisite Menus’ Error After Upgrade to 5.3looks like a theme or plugin conflict, wp-admin/network/ is the netwotk while wp-admin/ is the default blog. WordPress 5.2 go to tools site health see if something is wrong, However it is a javascript conflict of your plugins with the default blog.
Forum: Fixing WordPress
In reply to: faulty redirect for /wp-admin/I ask you for this information to create htaccess and the constants in wp-config.php right
Forum: Fixing WordPress
In reply to: faulty redirect for /wp-admin/Without this constant this normal WordPress
Enable network for wp-config.php
You can access into mysql? Phpmyadmin wp_site, wp_blogs wp_2_options please send me.Forum: Networking WordPress
In reply to: Problems with DOMAIN_CURRENT_SITE valueSITE_ID_CURRENT_SITE (normally its value is 1 because currently WordPress does not allow you to create more than one network) is reference of network and BLOG_ID_CURRENT_SITE is your id blog always referring to the network (1 for primary site , first secondary site)
https://developer.wordpress.org/reference/functions/ms_load_current_site_and_network/Forum: Networking WordPress
In reply to: Position of multisite code in wp-configBefore
require_oncehttps://github.com/WordPress/WordPress/blob/master/wp-config-sample.php#L90 is equvalent
In this scenario you can understand that bluehost has customized wordpress and may behave differently from the standard wordpress, it means when you have problems contact your hosting because only he can know what he has changed.Forum: Networking WordPress
In reply to: Problems with DOMAIN_CURRENT_SITE valueMultisite subdirectory on wpsamp
these constants are all for network (never for secondary sites or the first primary site that is the first secondary site)
do you have all these constants in your network? has the network been defined?
if both answers are true, that’s enough
define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST']);
define('COOKIE_DOMAIN', '');
blog_id to zero is right on a non-existent domain while if the domain exists it is always different from zero.
Network -> domain.tld
Multisite on subdirectory -> domain.tld/ns1 (seconday site with >= id 2)
Or
Multisite on subdomain -> ns1.domain.tld (secondary site with >= id 2)
Domain mapping (for network domain.tld) -> any.domain.com
I search any.domain.com WordPress start connection with domain.tld/ns1 or ns1.domain.tld after any.domain. com
if the secondary site is archived the mapping should never be taken into consideration, at least this is what I understand.
Please you can share your constant multisite (network) wp-config.php?Forum: Networking WordPress
In reply to: Domain Mapping@kalico you can
define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST']);
Or
define('COOKIE_DOMAIN', '');
one of them must work with the default behavior (without other plugins)@lahiru if the first installation is started before wordpress 3.5 and in the case of a multisite wp-content it also has a blog_dir folder inside it. In wp-content there is the theme directory, plugin initially but other plugins can create other folders.
I hope you read the entire article I entered, from wordpress 3.7 you can always update to the latest version otherwise you manually update every two minor ones for example 3.4 3.4.2 etx.@bunnylake if you do the manual update you always work, it depends on the type of error you find I suppose your wp-includes folder was not writable (it is a hosting problem not of wordpress).
You have to read the extended update obviously you need to have a working backup, you don’t have to delete the wp-content wp-config.php etc .. this process is described in the extended update link.