Hola una pregunta yo instale el cbi por fin ahora me anda!!!!!!
si! y tengo el theme AnimatedArena
mi foro es www.wareztweet.com.ar
y tengo 2 preguntas!
1º
LainaaYo tenia instalado el simpleportal desp lo desinstale, instale el cbi y ahora instale el simpleportal pero se me ve con errores osea no se ve las imagenes con mi theme Animated arena... Que puedo hacer?
2º
LainaaMiren yo tengo el dominio .com.ar al cual para ponerlo en mi pagina entre en cpanel de zobyhost y puse parked domains para ponerlo y quedo pero solo cuando entro por qe los otros links dicen umbrellaargentina.zobyhost.com/ etc qe es el link original .Por qe?
Gracias !
1) No veo ningún portal.
2) Tenes que cambiar la URL del archivo Settings.php (hace un backup de todo antes de hacerlo, por si acaso) y ejecuta el repair_settings.php (link (http://download.simplemachines.org/index.php?thanks;filename=repair_settings.php)).
yo lo hice manualmente en el animate arena de esta manera que posteo zutzu y me funciona de 10
BoardIndex.template.php
Buscar:
// If the board or children is new, show an indicator.
if ($board['new'] || $board['children_new'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'on', $board['new'] ? '' : '2', '.png" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" />';
// Is it a redirection board?
elseif ($board['is_redirect'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'redirect.png" alt="*" title="*" />';
// No new posts at all! The agony!!
else
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'off.png" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';
echo '
</a>
Reemplazar por:
// If the board is new, show a strong indicator.
if ($board['new'] || $board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on.png'))
$board_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on.png';
else
$board_new_img=$settings['images_url']. '/on.png';
echo '<img src="', $board_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} elseif ($board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on2.png'))
$childboard_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on2.png';
else
$childboard_new_img=$settings['images_url']. '/on2.png';
echo '<img src="', $childboard_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} else {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/off.png'))
$board_nonew_img=$settings['theme_url']. '/icons/' . $board['id'] . '/off.png';
else
$board_nonew_img=$settings['images_url']. '/off.png';
echo '<img src="', $board_nonew_img,'" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
}
echo '</a>
MessageInddex.template.php
Buscar:
// If the board or children is new, show an indicator.
if ($board['new'] || $board['children_new'])
echo '
<img src="', $settings['images_url'], '/' .$context['theme_variant_url'], 'on', $board['new'] ? '' : '2', '.png" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" />';
// Is it a redirection board?
elseif ($board['is_redirect'])
echo '
<img src="', $settings['images_url'], '/' .$context['theme_variant_url'], 'redirect.png" alt="*" title="*" />';
// No new posts at all! The agony!!
else
echo '
<img src="', $settings['images_url'], '/' .$context['theme_variant_url'], 'off.png" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';
echo '
</a>
Reemplazar por:
// If the board is new, show a strong indicator.
if ($board['new'] || $board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on.png'))
$board_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on.png';
else
$board_new_img=$settings['images_url']. '/on.png';
echo '<img src="', $board_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} elseif ($board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on2.png'))
$childboard_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on2.png';
else
$childboard_new_img=$settings['images_url']. '/on2.png';
echo '<img src="', $childboard_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} else {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/off.png'))
$board_nonew_img=$settings['theme_url']. '/icons/' . $board['id'] . '/off.png';
else
$board_nonew_img=$settings['images_url']. '/off.png';
echo '<img src="', $board_nonew_img,'" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
}
echo '</a>
luego haces lo que dijo JTX3 (http://www.simplemachines.org/community/index.php?action=profile;u=152397) en otro post para colocar los iconos
- Para poner la imagen debes crear una ruta en Themes/tu themes/ creas una carpeta/ruta llamada icons, osea quedaría así Themes/tu themes/icons.
- Para poner una imagen por foro, luego de crear la carpeta te metes dentro un ejemplo de foro es el español que su url es:
http://www.simplemachines.org/community/index.php?board=16.0 (http://www.simplemachines.org/community/index.php?board=16.0)
Nos fijamos en los ultimos números que es 16.0, entonces vamos a Themes/tu themes/icons y creamos una carpeta llamada 16, dentro ponemos el on.gif,off.gif y on2.gif
¿Por qué es 16?.
Porque claro, el .0 no cuenta, entonces verás casos así:
http://www.simplemachines.org/community/index.php?board=40.0 (http://www.simplemachines.org/community/index.php?board=40.0)
Fácil, haces una carpeta llamada 40 y listo ;D !.
Saludos!.
Lainaus käyttäjältä: DoctorMalboro - huhtikuu 23, 2011, 04:16:42 IP
1) No veo ningún portal.
2) Tenes que cambiar la URL del archivo Settings.php (hace un backup de todo antes de hacerlo, por si acaso) y ejecuta el repair_settings.php (link (http://download.simplemachines.org/index.php?thanks;filename=repair_settings.php)).
1 no ves ningun portal por qe lo desinstale por qe no se veia nada
no se veia la theme
Lainaus käyttäjältä: kenet - huhtikuu 23, 2011, 04:24:53 IP
yo lo hice manualmente en el animate arena de esta manera que posteo zutzu y me funciona de 10
BoardIndex.template.php
Buscar:
// If the board or children is new, show an indicator.
if ($board['new'] || $board['children_new'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'on', $board['new'] ? '' : '2', '.png" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" />';
// Is it a redirection board?
elseif ($board['is_redirect'])
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'redirect.png" alt="*" title="*" />';
// No new posts at all! The agony!!
else
echo '
<img src="', $settings['images_url'], '/', $context['theme_variant_url'], 'off.png" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';
echo '
</a>
Reemplazar por:
// If the board is new, show a strong indicator.
if ($board['new'] || $board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on.png'))
$board_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on.png';
else
$board_new_img=$settings['images_url']. '/on.png';
echo '<img src="', $board_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} elseif ($board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on2.png'))
$childboard_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on2.png';
else
$childboard_new_img=$settings['images_url']. '/on2.png';
echo '<img src="', $childboard_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} else {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/off.png'))
$board_nonew_img=$settings['theme_url']. '/icons/' . $board['id'] . '/off.png';
else
$board_nonew_img=$settings['images_url']. '/off.png';
echo '<img src="', $board_nonew_img,'" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
}
echo '</a>
MessageInddex.template.php
Buscar:
// If the board or children is new, show an indicator.
if ($board['new'] || $board['children_new'])
echo '
<img src="', $settings['images_url'], '/' .$context['theme_variant_url'], 'on', $board['new'] ? '' : '2', '.png" alt="', $txt['new_posts'], '" title="', $txt['new_posts'], '" />';
// Is it a redirection board?
elseif ($board['is_redirect'])
echo '
<img src="', $settings['images_url'], '/' .$context['theme_variant_url'], 'redirect.png" alt="*" title="*" />';
// No new posts at all! The agony!!
else
echo '
<img src="', $settings['images_url'], '/' .$context['theme_variant_url'], 'off.png" alt="', $txt['old_posts'], '" title="', $txt['old_posts'], '" />';
echo '
</a>
Reemplazar por:
// If the board is new, show a strong indicator.
if ($board['new'] || $board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on.png'))
$board_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on.png';
else
$board_new_img=$settings['images_url']. '/on.png';
echo '<img src="', $board_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} elseif ($board['children_new']) {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/on2.png'))
$childboard_new_img=$settings['theme_url']. '/icons/' . $board['id'] . '/on2.png';
else
$childboard_new_img=$settings['images_url']. '/on2.png';
echo '<img src="', $childboard_new_img,'" alt="', $txt[333], '" title="', $txt[333], '" border="0" />';
} else {
if (file_exists($settings['theme_dir'] . '/icons/' . $board['id'] . '/off.png'))
$board_nonew_img=$settings['theme_url']. '/icons/' . $board['id'] . '/off.png';
else
$board_nonew_img=$settings['images_url']. '/off.png';
echo '<img src="', $board_nonew_img,'" alt="', $txt[334], '" title="', $txt[334], '" border="0" />';
}
echo '</a>
luego haces lo que dijo JTX3 (http://www.simplemachines.org/community/index.php?action=profile;u=152397) en otro post para colocar los iconos
- Para poner la imagen debes crear una ruta en Themes/tu themes/ creas una carpeta/ruta llamada icons, osea quedaría así Themes/tu themes/icons.
- Para poner una imagen por foro, luego de crear la carpeta te metes dentro un ejemplo de foro es el español que su url es:
http://www.simplemachines.org/community/index.php?board=16.0 (http://www.simplemachines.org/community/index.php?board=16.0)
Nos fijamos en los ultimos números que es 16.0, entonces vamos a Themes/tu themes/icons y creamos una carpeta llamada 16, dentro ponemos el on.gif,off.gif y on2.gif
¿Por qué es 16?.
Porque claro, el .0 no cuenta, entonces verás casos así:
http://www.simplemachines.org/community/index.php?board=40.0 (http://www.simplemachines.org/community/index.php?board=40.0)
Fácil, haces una carpeta llamada 40 y listo ;D !.
Saludos!.
gracias los iconos ya los tengo ahora :)
Entonces vos queres que adivinemos cómo se ve mal, cuál es el problema y lo solucionemos? Los poderes telepáticos son algo sólo para clientes... ;) (a modo de sarcasmo, obviamente).
no te enojes no entiendo mucho...
ahora lo instalo
echale un vistaso a mi sitio y figate si saves por qe es :(
intente poniendo el portal.css addenrto de la carpeta del theme
pero no :(
has hecho lo que te dije arriba?
el portal.css va en la carpeta css del theme que uses.
si lo hize y siguio igual
ahora hize lo qe me dijo doctor pero el foro no se ven las imagenes puse el repair pero igual..
por qe la direccion de las imagenes van a umbrellaargentina.zobyhost.com/images etc
como puedo cambiar eso :S