Welcome, Guest. Please Login or Register.
June 17, 2025, 09:21:01 PM
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  |  Error en Miarroba « previous next »
Pages: [1] 2 Reply Ignore Print
Author Topic: Error en Miarroba  (Read 682 times)
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Error en Miarroba
« on: December 27, 2002, 01:56:44 AM »
Reply with quote

Holas!
Por fin consigo instalar el foro sin el problema de irse a ninguna sitio al postear.
Ahora el problema lo tengo yo. Que cuando me registro, o Me pongo en Administrador, al intentar poner un emnsaje o al ir a las opciones de administrar me sale este error:

An Error Has Occurred!

You are not allowed to access this section

 

Y este al ir al postear.


An Error Has Occurred!

To post you must be logged in if you don't have an account yet register.


Es decir, que es como si me saliera de resgitrado.

Por que pasa esto? que eh echo mal?

Saludos ;)
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


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

WWW
Re:Error en Miarroba
« Reply #1 on: December 27, 2002, 03:22:35 PM »
Reply with quote

que version?

que browser?

cambia los nombres de las cookies, e intenta nuevamente...

avisanos como te lo va :)

ja ne!
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...
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #2 on: December 27, 2002, 04:12:58 PM »
Reply with quote

La version es 1.4.1 ya que la 1.5.1 va mal todabia jeje.
El browser es Miarroba
Pero le pasa a todos los que visitan el foro ::)

saludos
« Last Edit: December 27, 2002, 04:17:35 PM by UrBiOnVmG » Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


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

WWW
Re:Error en Miarroba
« Reply #3 on: December 27, 2002, 04:57:32 PM »
Reply with quote

Quote from: UrBiOnVmG on December 27, 2002, 04:12:58 PMLa version es 1.4.1 ya que la 1.5.1 va mal todabia jeje.
El browser es Miarroba
Pero le pasa a todos los que visitan el foro ::)

saludos

Version 1.4.1
Browser es IE, Mozilla, Netscape, Opera....
Cual es el URL?

ja ne!
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...
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #4 on: December 27, 2002, 10:21:00 PM »
Reply with quote

Nop, ya ta arreglado, ahora tengo otro, los ematicones no salen, es decir las imagenes salen, pero cuando posteas alguno no salen.

Internet Explorer 6.0
1.4.1
Miarroba
http://www.webcindario.com/foroelrinconvia/yabbse/index.php
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


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

WWW
Re:Error en Miarroba
« Reply #5 on: December 27, 2002, 11:03:36 PM »
Reply with quote

chin....

eso es por la libreria GD2 que parece que no funciona bien....

si te fijas en el codigo fuente, tanto el width como el height los deja a "" ...

Alguien lo ha arreglado que este hospedado en miarroba??

ja ne!
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...
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #6 on: December 27, 2002, 11:34:04 PM »
Reply with quote

Y que hay que hacer para modificarlo?
Logged
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #7 on: December 28, 2002, 01:28:00 AM »
Reply with quote

Porfa ayudarmeeeee, no me van los smilies!! :'(
Logged
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #8 on: December 28, 2002, 02:00:54 PM »
Reply with quote

No hay solucion?? ???

saludos :'(
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


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

WWW
Re:Error en Miarroba
« Reply #9 on: December 29, 2002, 06:03:45 AM »
Reply with quote

En Subs.php busca:

$imgnew[$i] = "<img src=\"{$imgmatches[1][$i]}\" width=\"$width\" height=\"$height\" alt=\"\" border=\"0\" />";

reemplazalo por:
$imgnew[$i] = "<img src=\"{$imgmatches[1][$i]}\"  alt=\"\" border=\"0\" />";

En Display.php busca:
if (!($maxwidth == '0' && $maxheight == '0') && ($width > $maxwidth || $height > $maxheight))
            {
               if ($width > $maxwidth && $maxwidth != '0')
               {
                  $height = floor($maxwidth / $width * $height);
                  $width = $maxwidth;
                  if ($height > $maxheight && $maxheight != '0')
                  {
                     $width = floor($maxheight / $height * $width);
                     $height = $maxheight;
                  }
               }
               elseif ($height > $maxheight && $maxheight != '0')
               {
                  $width = floor($maxheight / $height * $width);
                  $height = $maxheight;
               }
               $attachImage = '<hr color=gray size="1" /><img src="' . $modSettings['attachmentUrl'] . '/' . $message['attachmentFilename'] . '" width="' . $width . '" height="' . $height . '" />';
            }
            else

y reemplazalo por:

/*if (!($maxwidth == '0' && $maxheight == '0') && ($width > $maxwidth || $height > $maxheight))
            {
               if ($width > $maxwidth && $maxwidth != '0')
               {
                  $height = floor($maxwidth / $width * $height);
                  $width = $maxwidth;
                  if ($height > $maxheight && $maxheight != '0')
                  {
                     $width = floor($maxheight / $height * $width);
                     $height = $maxheight;
                  }
               }
               elseif ($height > $maxheight && $maxheight != '0')
               {
                  $width = floor($maxheight / $height * $width);
                  $height = $maxheight;
               }
               $attachImage = '<hr color=gray size="1" /><img src="' . $modSettings['attachmentUrl'] . '/' . $message['attachmentFilename'] . '" width="' . $width . '" height="' . $height . '" />';
            }
            else*/

ja ne!
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...
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #10 on: December 29, 2002, 12:57:37 PM »
Reply with quote

Muchisimas gracias amigo! encuanto tengo un pelin de tiempo lo hago a ver si va.

Saludos! :D
Logged
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #11 on: December 29, 2002, 04:31:39 PM »
Reply with quote

Vale cojonudo, va perfectamente.

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


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

WWW
Re:Error en Miarroba
« Reply #12 on: December 29, 2002, 05:35:57 PM »
Reply with quote

Quote from: UrBiOnVmG on December 29, 2002, 04:31:39 PMVale cojonudo, va perfectamente.

saludos :D

cojonudo???

que es eso... jeje :P
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...
UrBiOnVmG
Jr. Member
**
Posts: 60


Yuhuuuu

WWW
Re:Error en Miarroba
« Reply #13 on: December 29, 2002, 07:44:59 PM »
Reply with quote

Cojonudo? no eres de españa? :o
 Cojonudo es una expresion que se usa en españa y quiere decir Muy bien.

saludos ;D
Logged
Omar Bazavilvazo
YaBB SE Developer
YaBB God
*****
Posts: 2153


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

WWW
Re:Error en Miarroba
« Reply #14 on: December 30, 2002, 04:26:16 PM »
Reply with quote

No.. soy de México (AJUAAAAAA)

:)
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...
Pages: [1] 2 Reply Ignore Print 
YaBB SE Community  |  Language Specific User Help  |  Español  |  Error en Miarroba « 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.751 seconds with 20 queries.