wordpress – Nastavení proxy

Soubor wp-config.php, přidat tyto řádky: define (‚WP_PROXY_HOST‘, ‚adresa_proxy_serveru‚);define (‚WP_PROXY_PORT‘, ‚port_proxy_serveru‚);define (‚WP_PROXY_USERNAME‘, “);define (‚WP_PROXY_PASSWORD‘, “);define (‚WP_PROXY_BYPASS_HOSTS‘, ‚localhost‚);  

wordpress – Změna vnitřní e-mailové adresy systému

Soubor: \wp-includes\pluggable.php   // From email and name // If we don’t have a name from the input headers $from_name = ‚MUJ_WORDPRESS‘;  if (! isset( $from_name ) )    $from_name = ‚WordPress‘;  /* If we don’t have an email from the input headers default to wordpress@$sitename   * Some hosts will block outgoing mail from this…