Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

pt:Depurar Uma Rede WordPress

Depurar uma Rede WordPress

If you have reached this page, chances are you have received an error in your WordPress network. This failure occurs when WordPress cannot find one or more of the global tables for the network in the database.

On some shared webhosts, the host has disabled the functionality from running. It is always best to check with your webhost before creating a network to make sure your webhost account fulfills the technical requirements.

Se acabou de instalar a sua rede

Verifique se o seu ficheiro wp-config.php por:

  • detalhes da base de dados corretos
  • constante SUBDOMAIN_INSTALL
  • constante MULTISITE
  • variável $base
  • prefixo de tabela
  • Não deverá ter nada depois de
/* That's all, stop editing! Happy blogging. */

/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
	define('ABSPATH', dirname(__FILE__) . '/');

/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
Move any code that is after
require_once(ABSPATH . 'wp-settings.php');
to above the stop editing line.


Mod_rewrite não está a funcionar

Main site works but 404 errors show up when trying to access added child subdomain sites. Ubuntu 10.04 LAMP apache2 install needs these steps:

  sudo a2enmod rewrite
  sudo nano /etc/apache2/sites-avail/default

and change in two places the 'AllowOveride None' to 'AllowOveride all'

  /etc/init.d/apache2 restart

to restart apache2. Note that on more modern versions of Ubuntu the following syntax is preferred (for restarting services such as Apache - also note that in either case you may need to use prepend sudo):

  service apache2 restart

Verificar a base de dados

Assuming all that is correct, check the database itself and see if all the extra network tables were created. The tables are:

  • wp_blogs
  • wp_blog_versions
  • wp_registration_log
  • wp_signups
  • wp_site
  • wp_sitemeta

If you have these DB tables or added them manually but wp_site and/or wp_blogs is empty, you may have to run some SQL queries to insert rows for your main site. Be sure to adjust the table prefixes, domains, dates, username, and other parts of the queries below to match your install.

   INSERT INTO wp_site VALUES(1,'domain.com','/'); 
   # change domain.com to the full domain of your original site and / to the path
   
   INSERT INTO wp_blogs VALUES(1, 1, 'domain.com', '/', '2015-01-01', '2015-01-01', 1, 0, 0, 0, 0, 0);
   # change domains.com and / to domain and path of your site. Change dates if you want.
   
   INSERT INTO wp_sitemeta VALUES(, 1, 'site_admins', 'a:1:{i:1;s:5:"admin";}');
   # Sets the admin user as a Super Admin. Change "admin" to your user_login. 
   # Change "s:5" to "s:#" where # is the number of characters in user_login.

Se a criação do novo sítio deixou de funcionar repentinamente

Please check your database as above. Double-check that the location of the databse server hasn't changed, or is so, that you've updated your wp-config.php file.

Outros problemas menos conhecidos

Check that the database user has ALL permissions on the database.

Also, on very few upgrades from WordPressMU to 3.0 and up, a small number of users experienced a problem with creating new sites and receiving errors. This turned out to be a database collation issue.

Check that the .htaccess instructions are not throwing up errors in the Apache logs.

Como este:

Options FollowSymLinks or SymLinksIfOwnerMatch is off which implies that RewriteRule directive is forbidden:

This will result in a Network install appearing to fail and may show WP errors like

One or more database tables are unavailable. The database may need to be repaired.

Artigos Relacionados

Hiperligações Externas