---
url: 'https://metadrop.net/es/articulos/settingsphp-para-desarrolladores'
title: 'settings.php para Desarrolladores'
author: 'Agustin Gómez'
date: '2017-01-17T09:19:58+00:00'
updated: '2026-06-09T13:24:14+00:00'
type: article
summary: 'Configuraciones que añadir en las instalaciones de desarrollo.'
tags:
  - 'Drupal 7'
  - Config
  - settings.php
published: true
og:
  determiner: Automatic
  site_name: Metadrop
  'image:alt': 'settings.php para Desarrolladores'
  street_address: 'Calle Manuel Luna, 12, 3 Dcha'
  locality: Madrid
  region: Madrid
  postal_code: '28020'
  country_name: España
  email: hola@metadrop.net
  phone_number: '910053180'
schema:
  '@context': 'https://schema.org'
  '@graph':
    -
      '@type': Article
      '@id': 'https://metadrop.net/es/articulos/settingsphp-para-desarrolladores#article'
      name: 'settings.php para Desarrolladores'
      headline: 'settings.php para Desarrolladores'
      description: 'Configuraciones que añadir en las instalaciones de desarrollo.'
      about:
        - 'Drupal 7'
        - Configuración
        - settings.php
      datePublished: '2013-06-14T08:00:00+0200'
      dateModified: '2026-06-09T15:24:14+0200'
      author:
        '@type': Person
        name: 'Agustin Gómez'
      publisher:
        '@type': Organization
        '@id': 'https://metadrop.net/#organization'
      mainEntityOfPage: 'https://metadrop.net/es/articulos/settingsphp-para-desarrolladores'
    -
      '@type': Organization
      '@id': 'https://metadrop.net/#organization'
      url: 'https://metadrop.net/'
      name: Metadrop
      sameAs:
        - 'https://www.drupal.org/metadrop'
        - 'https://twitter.com/metadrop'
        - 'https://asociaciondrupal.es/partner/metadrop'
        - 'https://www.linkedin.com/company/metadrop'
      logo:
        '@type': ImageObject
        url: 'https://metadrop.net/themes/custom/mdrop_radix/logo-metadrop-500-500.jpg'
        width: '500'
        height: '500'
    -
      '@type': ItemPage
      '@id': 'https://metadrop.net/es/articulos/settingsphp-para-desarrolladores'
      breadcrumb:
        '@type': BreadcrumbList
        itemListElement:
          -
            '@type': ListItem
            position: 1
            name: Inicio
            item: 'https://metadrop.net/es'
          -
            '@type': ListItem
            position: 2
            name: 'Artículos expertos sobre Drupal y tecnología'
            item: 'https://metadrop.net/es/articulos'
      publisher:
        '@type': Organization
        '@id': 'https://metadrop.net/#organization'
---
 1. [Artículos](https://metadrop.net/es/articulos)
 
  

# settings.php para Desarrolladores

Viernes 14 de Junio de 2013

 

 



Configuraciones que añadir en las instalaciones de desarrollo.



   



Módulos base: stage\_file\_proxy, environment\_indicator y reroute\_email

```php
# Rendimiento en entorno DEV LOCAL
$conf['stage_file_proxy_origin'] = 'http://example.com';

# Errores en entorno DEV LOCAL
error_reporting(-1);
$conf['error_level'] = 2;
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);

# Configuración Enviroment Indicator 1.x para DEV LOCAL:
$conf['environment_indicator_text'] = 'LOCAL';
$conf['environment_indicator_color'] = 'green';
$conf['environment_indicator_enabled'] = TRUE;

# Configuración Enviroment Indicator 2.x para DEV LOCAL:
$conf['environment_indicator_overwritten_name'] = 'LOCAL';
$conf['environment_indicator_overwritten_color'] = '#008000';
$conf['environment_indicator_overwrite'] = TRUE;

# Speed Up Cache Clearing on Drupal 7
# http://a-fro.com/speed-up-cache-clearing-on-drupal7
$conf['features_rebuild_on_flush'] = FALSE;
$conf['entity_rebuild_on_flush']   = FALSE;

# Enrutamiento de correos: evitar que lleguen a usuarios finales.
$conf['reroute_email_address'] = 'correo@email.net';
$conf['reroute_email_enable'] = TRUE;

# Apache solr  (apachesolr drupal module)
$conf['apachesolr_environments']['my_env_id']['url'] = 'http://localhost:8983';

# Configuración Token
$conf['token_tree_recursion_limit'] = 1;

```



[Drupal 7](https://metadrop.net/es/articulos?text=Drupal%207)

[Configuración](https://metadrop.net/es/articulos?text=Configuraci%C3%B3n)

[settings.php](https://metadrop.net/es/articulos?text=settings.php)