Catálogo en versión beta
Saltar al contenido
Logo Bibliotecas UNLP Logo  UNLP
Avanzado
  • Clínica psicoanalítica. La dep...
  • Citar
  • Enviar este por Correo electrónico
  • Imprimir
  • Exportar Registro
    • Exportar a RefWorks
    • Exportar a EndNoteWeb
    • Exportar a EndNote
    • Exportar a MARC
    • Exportar a MARCXML
  • Enlace Permanente

Clínica psicoanalítica. La depresión una enfermedad sin rostro : Actas.

Detalles Bibliográficos
Autor Corporativo: Congreso Internacional Grupo Cero Madrid
Otros autores o Colaboradores: Puchol Pérez, M. Rosa, Iglesias Nicolás, Pilar, Rojas Martínez, Pilar, Chévez Alvarez, María, Barrio, Inés, Blasco, José María, Méndez Herranz, Eva, Fernández del Ganso, Carlos, Icho Kozak, Jaime, Montserrat Rovira Blasco, Osorio Chichón, Concepción, Martínez Fondón, Miguel, Degli Esposti, Bibiana, Henríquez, Poy Piñeiro, Teresa, Nouvillas Larrad, Pilar, Barandiarán Piedra, Cristina, Pueyo, Karina, García Polo, María Jesús, Liberal Siso, Carmen, Barletta, Ana María, García Palancar, Francisco Manuel, Duchên, Paola, Lejarza, Fermín, Deloupy Marchand, Claire, Malugani, Paula, Cirulli, Norma, Díaz-Faes Fernández, Caridad, Andino Trione, Lidia, Luzón Cordero, Joaquín, González Martínez, Emilio A., García Peñalver, José, Bravo García, Raúl Alberto, Menassa de Lucia, Alejandra, Madormo, Alejandra, Cino Núñez, Stella, Villavella, Marcela, Díez Cuesta, Amelia, Salamanca Gallego, Carmen, Kozak Cino, Hernán, González, Cruz, Erroz, Sergio Aparicio, Amez Miña, Fernando, Menassa, Norma, García Muñoz, Pablo J.
Formato: Libro
Lengua:español
Datos de publicación: Madrid : Grupo Cero, 1998.
Temas:
Depresión
Psicoanálisis
Psicología de la mujer
Suicidio
Emociones
Drogadicción
Familia
Trastornos de la edad adulta
Descripción Física:396 p.
ISBN:8485498674
  • Existencias
  • Tabla de Contenidos
  • Vista Marc

Consultar en el catálogo de Biblioteca FaHCE

Ejemplares similares

  • El suicidio /
    por: Moron, Pierre
    Datos de publicación: (1980)
  • Un estudio sobre la depresión : Fundamentos de antropología dialéctica /
    por: Castilla del Pino, Carlos
    Datos de publicación: (1970)
  • La depresión : Un estudio psicoanalítico /
    por: Bleichmar, Hugo B.
    Datos de publicación: (2002)
  • La depresión : Psicología de la melancolía /
    por: Ostow, Mortimer
    Datos de publicación: (1985)
  • Adolescentes en riesgo : Identificación y orientación psicológica /
    por: Casullo, María Martina
    Datos de publicación: (2003)

Opciones de búsqueda

  • Historial de Búsqueda
  • Búsqueda Avanzada

Buscar Más

  • Explorar el catálogo
  • Lista alfabética
  • Explorar canales
  • Reservas de Curso
  • Nuevos ejemplares

¿Necesita Ayuda?

  • Consejos de búsqueda
  • Consulte a un Bibliotecario
  • Preguntas Frecuentes
Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_WARNING)
fopen(/tmp/vufind_sessions/sess_tceu0bds5bsqkhkf1rfqk76ivd): Failed to open stream: No space left on device
Whoops\Exception\ErrorException thrown with message "fopen(/tmp/vufind_sessions/sess_tceu0bds5bsqkhkf1rfqk76ivd): Failed to open stream: No space left on device" Stacktrace: #5 Whoops\Exception\ErrorException in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:158 #4 fopen in /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php:158 #3 VuFind\Session\File:saveSession in /usr/local/vufind/module/VuFind/src/VuFind/Session/AbstractBase.php:193 #2 VuFind\Session\AbstractBase:write in [internal]:0 #1 session_write_close in /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php:242 #0 Laminas\Session\SessionManager:writeClose in [internal]:0
Application frames (0) All frames (6)
5
Whoops\Exception\ErrorException
…/module/VuFind/src/VuFind/Session/File.php158
4
fopen
…/module/VuFind/src/VuFind/Session/File.php158
3
VuFind\Session\File saveSession
…/module/VuFind/src/VuFind/Session/AbstractBase.php193
2
VuFind\Session\AbstractBase write
[internal]0
1
session_write_close
…/vendor/laminas/laminas-session/src/SessionManager.php242
0
Laminas\Session\SessionManager writeClose
[internal]0
Open: /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php
        foreach (glob($this->path . '/sess_*') as $filename) {
            if (filemtime($filename) + $maxlifetime < time()) {
                unlink($filename);
            }
        }
        return true;
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    protected function saveSession($sessId, $data): bool
    {
        $sessFile = $this->path . '/sess_' . $sessId;
        if ($handle = fopen($sessFile, 'w')) {
            $return = false;
            // Lock the file for exclusive access to avoid issues with multiple
            // processes writing session simultaneously:
            if (flock($handle, LOCK_EX)) {
                $return = fwrite($handle, $data);
                // Make sure that there's no trailing data by truncating the file to
                // the correct length:
                ftruncate($handle, strlen($data));
                fflush($handle);
                flock($handle, LOCK_UN);
            }
            fclose($handle);
            if ($return !== false) {
                return true;
            }
        }
        // If we got this far, something went wrong with the file output...
        // It is tempting to throw an exception here, but this code is called
        // outside of the context of exception handling, so all we can do is
        // echo a message.
Arguments
  1. "fopen(/tmp/vufind_sessions/sess_tceu0bds5bsqkhkf1rfqk76ivd): Failed to open stream: No space left on device"
    
Open: /usr/local/vufind/module/VuFind/src/VuFind/Session/File.php
        foreach (glob($this->path . '/sess_*') as $filename) {
            if (filemtime($filename) + $maxlifetime < time()) {
                unlink($filename);
            }
        }
        return true;
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    protected function saveSession($sessId, $data): bool
    {
        $sessFile = $this->path . '/sess_' . $sessId;
        if ($handle = fopen($sessFile, 'w')) {
            $return = false;
            // Lock the file for exclusive access to avoid issues with multiple
            // processes writing session simultaneously:
            if (flock($handle, LOCK_EX)) {
                $return = fwrite($handle, $data);
                // Make sure that there's no trailing data by truncating the file to
                // the correct length:
                ftruncate($handle, strlen($data));
                fflush($handle);
                flock($handle, LOCK_UN);
            }
            fclose($handle);
            if ($return !== false) {
                return true;
            }
        }
        // If we got this far, something went wrong with the file output...
        // It is tempting to throw an exception here, but this code is called
        // outside of the context of exception handling, so all we can do is
        // echo a message.
Open: /usr/local/vufind/module/VuFind/src/VuFind/Session/AbstractBase.php
        // Anecdotal testing Today and Yesterday seems to indicate destroy()
        //   is called by the garbage collector and everything is good.
        // Something to keep in mind though.
        return true;
    }
 
    /**
     * Write function that is called when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    public function write($sessId, $data): bool
    {
        if ($this->writesDisabled) {
            return true;
        }
        return $this->saveSession($sessId, $data);
    }
 
    /**
     * A function that is called internally when session data is to be saved.
     *
     * @param string $sessId The current session ID
     * @param string $data   The session data to write
     *
     * @return bool
     */
    abstract protected function saveSession($sessId, $data): bool;
}
 
Open: [internal]
Open: /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php
     *
     * @return void
     */
    public function writeClose()
    {
        // The assumption is that we're using PHP's ext/session.
        // session_write_close() will actually overwrite $_SESSION with an
        // empty array on completion -- which leads to a mismatch between what
        // is in the storage object and $_SESSION. To get around this, we
        // temporarily reset $_SESSION to an array, and then re-link it to
        // the storage object.
        //
        // Additionally, while you _can_ write to $_SESSION following a
        // session_write_close() operation, no changes made to it will be
        // flushed to the session handler. As such, we now mark the storage
        // object isImmutable.
        $storage = $this->getStorage();
        if (! $storage->isImmutable()) {
            $_SESSION = $storage->toArray(true);
            session_write_close();
            $storage->fromArray($_SESSION);
            $storage->markImmutable();
        }
    }
 
    /**
     * Attempt to set the session name
     *
     * If the session has already been started, or if the name provided fails
     * validation, an exception will be raised.
     *
     * @param  string $name
     * @return SessionManager
     * @throws Exception\InvalidArgumentException
     */
    public function setName($name)
    {
        if ($this->sessionExists()) {
            throw new Exception\InvalidArgumentException(
                'Cannot set session name after a session has already started'
Open: [internal]

Environment & details:

empty
empty
empty
Key Value
language
"es"
VUFIND_SESSION
"tceu0bds5bsqkhkf1rfqk76ivd"
ui
"standard"
Key Value
__Laminas
array:2 [
  "_REQUEST_ACCESS_TIME" => 1748594784.1418
  "_VALID" => array:1 [
    "Laminas\Session\Validator\Id" => "tceu0bds5bsqkhkf1rfqk76ivd"
  ]
]
SessionState
Laminas\Stdlib\ArrayObject {#906}
FlashMessenger
Laminas\Stdlib\ArrayObject {#1507}
SessionHelper
Laminas\Stdlib\ArrayObject {#1662}
Key Value
REDIRECT_SCRIPT_URL
"/Record/dhu.koha42757/Holdings"
REDIRECT_SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.koha42757/Holdings"
REDIRECT_VUFIND_ENV
"development"
REDIRECT_VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
REDIRECT_STATUS
"200"
SCRIPT_URL
"/Record/dhu.koha42757/Holdings"
SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.koha42757/Holdings"
VUFIND_ENV
"development"
VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_COOKIE
"language=es; VUFIND_SESSION=tceu0bds5bsqkhkf1rfqk76ivd; ui=standard"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
HTTP_VIA
"1.1 squid-proxy-75b5465b89-j4mbf (squid/6.10)"
HTTP_X_FORWARDED_FOR
"10.1.16.128"
HTTP_CACHE_CONTROL
"max-age=259200"
HTTP_CONNECTION
"keep-alive"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.52 (Ubuntu) Server at vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar Port 80</address>\n"
SERVER_SOFTWARE
"Apache/2.4.52 (Ubuntu)"
SERVER_NAME
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
SERVER_ADDR
"172.17.0.170"
SERVER_PORT
"80"
REMOTE_ADDR
"216.73.216.226"
DOCUMENT_ROOT
"/usr/local/vufind/public"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/usr/local/vufind/public"
SERVER_ADMIN
"webmaster@bibliotecas.unlp.edu.ar"
SCRIPT_FILENAME
"/usr/local/vufind/public/index.php"
REMOTE_PORT
"10447"
REDIRECT_URL
"/Record/dhu.koha42757/Holdings"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/Record/dhu.koha42757/Holdings"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1748594784.1315
REQUEST_TIME
1748594784
empty
0. Whoops\Handler\PrettyPageHandler
Cannot write session to /tmp/vufind_sessions/sess_tceu0bds5bsqkhkf1rfqk76ivd Whoops! There was an error.
Whoops \ Exception \ ErrorException (E_WARNING)
session_write_close(): Failed to write session data using user defined save handler. (session.save_path: /var/lib/php/sessions)
Whoops\Exception\ErrorException thrown with message "session_write_close(): Failed to write session data using user defined save handler. (session.save_path: /var/lib/php/sessions)" Stacktrace: #2 Whoops\Exception\ErrorException in /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php:242 #1 session_write_close in /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php:242 #0 Laminas\Session\SessionManager:writeClose in [internal]:0
Application frames (0) All frames (3)
2
Whoops\Exception\ErrorException
…/vendor/laminas/laminas-session/src/SessionManager.php242
1
session_write_close
…/vendor/laminas/laminas-session/src/SessionManager.php242
0
Laminas\Session\SessionManager writeClose
[internal]0
Open: /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php
     *
     * @return void
     */
    public function writeClose()
    {
        // The assumption is that we're using PHP's ext/session.
        // session_write_close() will actually overwrite $_SESSION with an
        // empty array on completion -- which leads to a mismatch between what
        // is in the storage object and $_SESSION. To get around this, we
        // temporarily reset $_SESSION to an array, and then re-link it to
        // the storage object.
        //
        // Additionally, while you _can_ write to $_SESSION following a
        // session_write_close() operation, no changes made to it will be
        // flushed to the session handler. As such, we now mark the storage
        // object isImmutable.
        $storage = $this->getStorage();
        if (! $storage->isImmutable()) {
            $_SESSION = $storage->toArray(true);
            session_write_close();
            $storage->fromArray($_SESSION);
            $storage->markImmutable();
        }
    }
 
    /**
     * Attempt to set the session name
     *
     * If the session has already been started, or if the name provided fails
     * validation, an exception will be raised.
     *
     * @param  string $name
     * @return SessionManager
     * @throws Exception\InvalidArgumentException
     */
    public function setName($name)
    {
        if ($this->sessionExists()) {
            throw new Exception\InvalidArgumentException(
                'Cannot set session name after a session has already started'
Arguments
  1. "session_write_close(): Failed to write session data using user defined save handler. (session.save_path: /var/lib/php/sessions)"
    
Open: /usr/local/vufind/vendor/laminas/laminas-session/src/SessionManager.php
     *
     * @return void
     */
    public function writeClose()
    {
        // The assumption is that we're using PHP's ext/session.
        // session_write_close() will actually overwrite $_SESSION with an
        // empty array on completion -- which leads to a mismatch between what
        // is in the storage object and $_SESSION. To get around this, we
        // temporarily reset $_SESSION to an array, and then re-link it to
        // the storage object.
        //
        // Additionally, while you _can_ write to $_SESSION following a
        // session_write_close() operation, no changes made to it will be
        // flushed to the session handler. As such, we now mark the storage
        // object isImmutable.
        $storage = $this->getStorage();
        if (! $storage->isImmutable()) {
            $_SESSION = $storage->toArray(true);
            session_write_close();
            $storage->fromArray($_SESSION);
            $storage->markImmutable();
        }
    }
 
    /**
     * Attempt to set the session name
     *
     * If the session has already been started, or if the name provided fails
     * validation, an exception will be raised.
     *
     * @param  string $name
     * @return SessionManager
     * @throws Exception\InvalidArgumentException
     */
    public function setName($name)
    {
        if ($this->sessionExists()) {
            throw new Exception\InvalidArgumentException(
                'Cannot set session name after a session has already started'
Open: [internal]

Environment & details:

empty
empty
empty
Key Value
language
"es"
VUFIND_SESSION
"tceu0bds5bsqkhkf1rfqk76ivd"
ui
"standard"
Key Value
__Laminas
array:2 [
  "_REQUEST_ACCESS_TIME" => 1748594784.1418
  "_VALID" => array:1 [
    "Laminas\Session\Validator\Id" => "tceu0bds5bsqkhkf1rfqk76ivd"
  ]
]
SessionState
Laminas\Stdlib\ArrayObject {#906}
FlashMessenger
Laminas\Stdlib\ArrayObject {#1507}
SessionHelper
Laminas\Stdlib\ArrayObject {#1662}
Key Value
REDIRECT_SCRIPT_URL
"/Record/dhu.koha42757/Holdings"
REDIRECT_SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.koha42757/Holdings"
REDIRECT_VUFIND_ENV
"development"
REDIRECT_VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
REDIRECT_STATUS
"200"
SCRIPT_URL
"/Record/dhu.koha42757/Holdings"
SCRIPT_URI
"http://vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar/Record/dhu.koha42757/Holdings"
VUFIND_ENV
"development"
VUFIND_LOCAL_DIR
"/usr/local/vufind/local"
HTTP_ACCEPT
"*/*"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_COOKIE
"language=es; VUFIND_SESSION=tceu0bds5bsqkhkf1rfqk76ivd; ui=standard"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_HOST
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
HTTP_VIA
"1.1 squid-proxy-75b5465b89-j4mbf (squid/6.10)"
HTTP_X_FORWARDED_FOR
"10.1.16.128"
HTTP_CACHE_CONTROL
"max-age=259200"
HTTP_CONNECTION
"keep-alive"
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
SERVER_SIGNATURE
"<address>Apache/2.4.52 (Ubuntu) Server at vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar Port 80</address>\n"
SERVER_SOFTWARE
"Apache/2.4.52 (Ubuntu)"
SERVER_NAME
"vufind10-pruebas.sigbunlp.bibliotecas.unlp.edu.ar"
SERVER_ADDR
"172.17.0.170"
SERVER_PORT
"80"
REMOTE_ADDR
"216.73.216.226"
DOCUMENT_ROOT
"/usr/local/vufind/public"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/usr/local/vufind/public"
SERVER_ADMIN
"webmaster@bibliotecas.unlp.edu.ar"
SCRIPT_FILENAME
"/usr/local/vufind/public/index.php"
REMOTE_PORT
"10447"
REDIRECT_URL
"/Record/dhu.koha42757/Holdings"
GATEWAY_INTERFACE
"CGI/1.1"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
REQUEST_URI
"/Record/dhu.koha42757/Holdings"
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1748594784.1315
REQUEST_TIME
1748594784
empty
0. Whoops\Handler\PrettyPageHandler