Skip to content
Snippets Groups Projects
Select Git revision
  • 6b724c8fce31d5e70eae4eacc1a7d32b3e73b6a7
  • noblogs default
  • noblogs-5.7.1
  • upstream
  • noblogs-5.7
  • noblogs-5.6new
  • upstream5.5.1
  • noblogs28dic
  • upstream28dic
  • noblogs-5.5.1
  • noblogs-5.4.2
  • noblogs-5.4_seconda
  • noblogs-5.4
  • noblogs-7c
  • wp5.2.3p3
  • mergedbconf
  • noblogs-5.7.1
  • noblogs.5.7.0p1
  • noblogs-5.7.0
  • noblogs-5.6p3
  • noblogs5.6p2
  • noblogs-5.6p1
  • noblogs-5.6
  • noblogs-5.4.2p1
  • noblogs-5.4.2
  • noblogs-5.4.1
  • noblogs-5.4
  • noblogs-p5.4
  • noblogs-5.3.2p2
  • noblogs-5.3.2p1
  • noblogs-5.3.2
  • noblogs-5.3
  • noblogs-5.2.3p4
  • noblogs-5.2.3p3
  • noblogs-5.2.3p2
  • noblogs-5.2.3p1
36 results

custom-background.min.js

Blame
  • db-config.php 619 B
    <?php
    
    // Common settings
    $wpdb->persistent = true;
    $wpdb->max_connections = 30;
    
    define("NOBLOGS_BACKEND_CONFIG", "/etc/noblogs/backends");
    
    include_once('r2db/db-hash.php');
    include_once('r2db/db-backends.php');
    
    // Add the global database (configured in wp-config.php), stores the global
    // blogs and users tables.
    $wpdb->add_database(array(
        "host" => DB_HOST,
        "user" => DB_USER,
        "password" => DB_PASSWORD,
        "name" => DB_NAME,
        "dataset" => "global",
        "write" => 1, "read" => 1, "timeout" => 2
        ));
    
    $wpdb_reverse_backend_map = noblogs_load_backends(NOBLOGS_BACKEND_CONFIG, $wpdb->hash_map);