Welcome, Guest. Please Login or Register.
April 30, 2025, 02:28:51 AM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Language Specific User Help  |  Español  |  Ayuda sobre error. ¿qué hago mal? « previous next »
Pages: [1] Reply Ignore Print
Author Topic: Ayuda sobre error. ¿qué hago mal?  (Read 1173 times)
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Ayuda sobre error. ¿qué hago mal?
« on: May 10, 2003, 03:06:25 PM »
Reply with quote

Hola a todos estoy intentado configurar mi foro y tras mucho darle vueltas me da un error y no sé a que puede deberse. Este es el error:

¡Un error ha ocurrido!

2: Unknown(): open(/tmp\sess_6c5216b3d07c9ef13afcf74247a91a8b, O_RDWR) failed: No such file or directory (2)
(Unknown ln 0)

¿Alguien puede ayudarme?
Gracias por adelantado.

Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


I never said I would stay to the end...

WWW
Re:Ayuda sobre error. ¿qué hago mal?
« Reply #1 on: May 10, 2003, 04:26:36 PM »
Reply with quote

estas en windows , parece ser. tu servidor temporal de sesiones esta mal configurado

abre c:\windows\php.ini
o
abre c:\winnt\php.ini o

y edita la parte esa de directorio temporal de sesiones..

Logged

Greetings from México!
http://omarbazavilvazo.com
Mi foro Español-Japonés
http://hablajapones.org
http://hablajapones.org/index.php/japones/tutoriales/b16.php

NO me manden IM para soporte o dudas
...Leo los foros como todos...
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #2 on: May 11, 2003, 01:45:49 PM »
Reply with quote

Gracias Omar por tu respuesta.  ;)
He estado mirando el archivo php.ini que mencionas pero la verdad es que no sé por donde cogerlo. Lo mas parecido a lo que mencionas es esto:

;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
;upload_tmp_dir =

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M

¿puedes decirme que es lo que he de modificar? ¿qué es una ruta?  ???

gracias
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


I never said I would stay to the end...

WWW
Re:Ayuda sobre error. ¿qué hago mal?
« Reply #3 on: May 14, 2003, 04:19:45 AM »
Reply with quote

Debes tener esto en php.ini


; Argument passed to save_handler.  In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
session.save_path = c:/winnt/temp


La sección completa es ésta (comparala con lo que tu tienes):

[Session]
; Handler used to store/retrieve data.
session.save_handler = files

; Argument passed to save_handler.  In the case of files, this is the path
; where data files are stored. Note: Windows users have to change this
; variable in order to use PHP's session functions.
session.save_path = c:/winnt/temp

; Whether to use cookies.
session.use_cookies = 1

; This option enables administrators to make their users invulnerable to
; attacks which involve passing session ids in URLs; defaults to 0.
; session.use_only_cookies = 1

; Name of the session (used as cookie name).
session.name = PHPSESSID

; Initialize session on request startup.
session.auto_start = 0

; Lifetime in seconds of cookie or, if 0, until browser is restarted.
session.cookie_lifetime = 0

; The path for which the cookie is valid.
session.cookie_path = /

; The domain for which the cookie is valid.
session.cookie_domain =

; Handler used to serialize data.  php is the standard serializer of PHP.
session.serialize_handler = php

; Define the probability that the 'garbage collection' process is started
; on every session initialization.
; The probability is calculated by using gc_probability/gc_dividend,
; e.g. 1/100 means 1%.

session.gc_probability = 1
session.gc_dividend    = 1000

; After this number of seconds, stored data will be seen as 'garbage' and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440

; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope, albeit register_globals
; is disabled.  PHP 4.3 and later will warn you, if this feature is used.
; You can disable the feature and the warning seperately. At this time,
; the warning is only displayed, if bug_compat_42 is enabled.

session.bug_compat_42 = 0
session.bug_compat_warn = 1

; Check HTTP Referer to invalidate externally stored URLs containing ids.
; HTTP_REFERER has to contain this substring for the session to be
; considered as valid.
session.referer_check =

; How many bytes to read from the file.
session.entropy_length = 0

; Specified here to create the session id.
session.entropy_file =

;session.entropy_length = 16

;session.entropy_file = /dev/urandom

; Set to {nocache,private,public,} to determine HTTP caching aspects.
; or leave this empty to avoid sending anti-caching headers.
session.cache_limiter = nocache

; Document expires after n minutes.
session.cache_expire = 180

; trans sid support is disabled by default.
; Use of trans sid may risk your users security.
; Use this option with caution.
; - User may send URL contains active session ID
;   to other person via. email/irc/etc.
; - URL that contains active session ID may be stored
;   in publically accessible computer.
; - User may access your site with the same session ID
;   always using URL stored in browser's history or bookmarks.
session.use_trans_sid = 0

; The URL rewriter will look for URLs in a defined set of HTML tags.
; form/fieldset are special; if you include them here, the rewriter will
; add a hidden <input> field with the info which is otherwise appended
; to URLs.  If you want XHTML conformity, remove the form entry.
; Note that all valid entries require a "=", even if no value follows.
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
« Last Edit: May 14, 2003, 04:20:55 AM by Omar Bazavilvazo » Logged

Greetings from México!
http://omarbazavilvazo.com
Mi foro Español-Japonés
http://hablajapones.org
http://hablajapones.org/index.php/japones/tutoriales/b16.php

NO me manden IM para soporte o dudas
...Leo los foros como todos...
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #4 on: May 15, 2003, 12:51:44 PM »
Reply with quote

Ahora ya lo he entendido!!! Gracias Omar!! Eres un crack!!!

Ya os contaré...

Saludossss!!!
Logged
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #5 on: May 15, 2003, 02:08:24 PM »
Reply with quote

Pues sí señorrrrrrrr ya rula!!!!  ;) ;) ;) ;) ;)

Muchas gracias Omar!!!  ;D
Logged
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #6 on: May 16, 2003, 02:11:53 AM »
Reply with quote

vaya pues ahora hay otro error aunque este sólo afecta a las estadísticas.  :( Sale esto:

¡Un error ha ocurrido!

2: (null)() [ref.outcontrol]: output handler 'ob_gzhandler' cannot be used twice
(Unknown ln 0)


Alguna idea??
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


I never said I would stay to the end...

WWW
Re:Ayuda sobre error. ¿qué hago mal?
« Reply #7 on: May 16, 2003, 05:01:20 AM »
Reply with quote

en admin->preferencias y mods instalados, deshabilita la compresion de salida.
Logged

Greetings from México!
http://omarbazavilvazo.com
Mi foro Español-Japonés
http://hablajapones.org
http://hablajapones.org/index.php/japones/tutoriales/b16.php

NO me manden IM para soporte o dudas
...Leo los foros como todos...
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #8 on: May 16, 2003, 02:20:23 PM »
Reply with quote

Felicidades maestro, otra vez en el blanco.

Muy agradecido!  ;)

Saludos!!!
Logged
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #9 on: May 16, 2003, 10:53:00 PM »
Reply with quote

...vaya pues va de errores   ???

Cuando creía que todo estaba ya ok me sale esto al registrar un nuevo usuario:

¡Un error ha ocurrido!

2: fsockopen() [function.fsockopen]: php_network_getaddresses: gethostbyname failed
(c:\paginaweb\www\juanjogoku\Sources\Subs.php ln 907)

He mirado la ruta de configuración pero es correcta  ???
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


I never said I would stay to the end...

WWW
Re:Ayuda sobre error. ¿qué hago mal?
« Reply #10 on: May 17, 2003, 04:48:59 AM »
Reply with quote

estas usando el mail smtp?
Logged

Greetings from México!
http://omarbazavilvazo.com
Mi foro Español-Japonés
http://hablajapones.org
http://hablajapones.org/index.php/japones/tutoriales/b16.php

NO me manden IM para soporte o dudas
...Leo los foros como todos...
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #11 on: May 17, 2003, 10:56:45 AM »
Reply with quote

sí, de hotmail.

Voy a quitarlo a ver  :-[
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


I never said I would stay to the end...

WWW
Re:Ayuda sobre error. ¿qué hago mal?
« Reply #12 on: May 17, 2003, 02:55:05 PM »
Reply with quote

hotmail usa imap, no smtp
Logged

Greetings from México!
http://omarbazavilvazo.com
Mi foro Español-Japonés
http://hablajapones.org
http://hablajapones.org/index.php/japones/tutoriales/b16.php

NO me manden IM para soporte o dudas
...Leo los foros como todos...
juanjogoku
Noobie
*
Posts: 25


I'm a llama!

Re:Ayuda sobre error. ¿qué hago mal?
« Reply #13 on: May 18, 2003, 10:37:54 PM »
Reply with quote

Ok Omar todo correcto, gracias!!  ;)
Logged
Pages: [1] Reply Ignore Print 
YaBB SE Community  |  Language Specific User Help  |  Español  |  Ayuda sobre error. ¿qué hago mal? « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.155 seconds with 20 queries.