General support topic for Aeva Media (Latest release: July 28, 2010)

Started by Nao 尚, October 14, 2007, 04:28:15 PM

Previous topic - Next topic

T3CHN0

there is 18 lines in that quote index.template.php you posted
what line is line 648
I use the same theme but on 2.0 and the installs are not the same
but i will look at both yours & mine to see if I can give any help

toothmkr57

auto embed seems not to working in aeva media 1.4b.  anyone else experiencing this? and where can I look to troubleshoot?

Swayforth

Quote from: techno489 on November 02, 2010, 10:34:24 PM
there is 18 lines in that quote index.template.php you posted
what line is line 648
I use the same theme but on 2.0 and the installs are not the same
but i will look at both yours & mine to see if I can give any help

Thanks techno. The index file is attached


T3CHN0

OK I found the best way I could help was to install a test 1.1.12 forum with the same theme as you
after installing the mod I see there is no button

I plaid around and found the span was missing

try this with your forum

        // Aeva Media

    // Recalculate number of unseen items
    global $user_info;

    if (!empty($user_info['aeva_unseen']) && $user_info['aeva_unseen'] == -1)
    {
        global $sourcedir;
        require_once($sourcedir . '/Aeva-Subs.php');
        aeva_loadSettings();
    }

    $aeva_unseen = !allowedTo('aeva_access_unseen') || empty($user_info['aeva_unseen']) || $user_info['aeva_unseen'] == -1 ? 0 : $user_info['aeva_unseen'];

    if (allowedTo('aeva_access'))
        echo ($current_action == 'media' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '', '
                <td valign="top" class="maintab_', $current_action == 'media' ? 'active_back' : 'back', '">
                    <a href="', $scripturl, '?action=media"><span>', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</span></a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>
                </td>', $current_action == 'media' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


this was the line that needed correcting

                    <a href="', $scripturl, '?action=media"><span>', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</span></a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>



I will keep the test theme as i might use it to help someone else later
see how you go with that


Kindred

if you have the 2.x version of avea, then you have access to the paid subscriber forum over on aeva.noisen.com where the author is providing support for that version
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

hartiberlin

I did look there and did not find any postings about SMF2.0 RC4.
That is why I asked here.

Regards, Stefan.

Spoogs

Quote from: hartiberlin on November 03, 2010, 07:29:44 PM
I did look there and did not find any postings about SMF2.0 RC4.
That is why I asked here.

Regards, Stefan.
It is... at least it works for me with no issues

Swayforth

Quote from: techno489 on November 03, 2010, 02:28:52 AM
OK I found the best way I could help was to install a test 1.1.12 forum with the same theme as you
after installing the mod I see there is no button

I plaid around and found the span was missing

try this with your forum

        // Aeva Media

    // Recalculate number of unseen items
    global $user_info;

    if (!empty($user_info['aeva_unseen']) && $user_info['aeva_unseen'] == -1)
    {
        global $sourcedir;
        require_once($sourcedir . '/Aeva-Subs.php');
        aeva_loadSettings();
    }

    $aeva_unseen = !allowedTo('aeva_access_unseen') || empty($user_info['aeva_unseen']) || $user_info['aeva_unseen'] == -1 ? 0 : $user_info['aeva_unseen'];

    if (allowedTo('aeva_access'))
        echo ($current_action == 'media' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '">&nbsp;</td>' : '', '
                <td valign="top" class="maintab_', $current_action == 'media' ? 'active_back' : 'back', '">
                    <a href="', $scripturl, '?action=media"><span>', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</span></a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>
                </td>', $current_action == 'media' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


this was the line that needed correcting

                    <a href="', $scripturl, '?action=media"><span>', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</span></a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>



I will keep the test theme as i might use it to help someone else later
see how you go with that

Techno, thank you i do see where i went wrong. That did work but just for the Media button and not the last seen (see attachment).

However i did use this code to fix the unseen tab.
<a href="', $scripturl, '?action=media"><span>', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</span></a> <a href="' . $scripturl . '?action=media;sa=unseen"><span>[<b>' . $aeva_unseen . '</b>]' : '', '</span></a>

Thanks again for your help! I just need to figure out how to get it to look like the chat button and not have 2 separate menu tabs



T3CHN0

I think your trying to do this
I made a code fix for BlackRainV2 theme 1.1.12
might work for other themes as well but only tested with BlackRainV2

    // Aeva Media
    // Recalculate number of unseen items
    global $user_info;

    if (!empty($user_info['aeva_unseen']) && $user_info['aeva_unseen'] == -1)
    {
        global $sourcedir;
        require_once($sourcedir . '/Aeva-Subs.php');
        aeva_loadSettings();
    }

    $aeva_unseen = !allowedTo('aeva_access_unseen') || empty($user_info['aeva_unseen']) || $user_info['aeva_unseen'] == -1 ? 0 : $user_info['aeva_unseen'];

    if (allowedTo('aeva_access'))
        echo '<li', $current_action == 'media' ? ' id="active"' : '', '>
                    <a href="', $scripturl, '?action=media"><span>', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '&nbsp;<strong><b><font color="#00ff00">' . $aeva_unseen . '</font></b></strong>' : '', '</span></a></li>';




hartiberlin

Quote from: Spoogs on November 03, 2010, 07:31:31 PM
Quote from: hartiberlin on November 03, 2010, 07:29:44 PM
I did look there and did not find any postings about SMF2.0 RC4.
That is why I asked here.

Regards, Stefan.
It is... at least it works for me with no issues

Hmm,
there seems to be still some problems with the latest RC4 and AEVA 2.04

See:
http://aeva.noisen.com/support/6178/problem-blank-pages/msg248093/#new

I have not had time yet to install it myself and test it, but I will do in the next few days.

Regards, Stefan.

petesky

Hi @all - i found out the problem with blank pages on AEVA 2.04 (commercial) if you need to fix.
Now it's up to Nao to investigate further.

http://aeva.noisen.com/support/6178/problem-blank-pages/msg248096/#msg248096

YogiBear

Quote from: toothmkr57 on November 02, 2010, 10:35:27 PM
auto embed seems not to working in aeva media 1.4b.  anyone else experiencing this? and where can I look to troubleshoot?


Make sure autoembedding is enabled in Aeva > Admin

If it is it may be the site from which you're trying to post either isn't ticked in the Sitelist boxes or isn't supported.

Which site is it you're trying to embed?

SMF v2.1.3  Mods : Snow & Garland v1.4,  PHP  v.7.4.33

EL GATO

Para el lite
Aeva (Auto-Insertar vídeo y audio)
En Español


<?php

$txt
['aeva'] = 'Aeva';
$txt['aeva_title'] = 'Aeva (Auto-Insertar vídeo y audio)';
$txt['aeva_enable'] = 'Habilitar mod Aeva(Master Setting)';
$txt['aeva_lookups'] = 'Habilitar búsquedas';
$txt['aeva_lookup_success'] = 'Esta característica funcionará en el servidor';
$txt['aeva_lookup_fail'] = 'Esta característica no funcionará en el servidor';
$txt['aeva_max_per_post'] = 'Máximo de incrustación Por Post';
$txt['aeva_max_per_page'] = 'Máximo de incrustación Por Pagina';
$txt['aeva_max_warning'] = 'Demasiado Flash es malo para su navegador';
$txt['aeva_quotes'] = 'Habilitar incrustación en Quotes';
$txt['aeva_mov'] = 'Ver Archivos (via Quicktime)';
$txt['aeva_real'] = 'RAM/RM Archivos (via Real Media)';
$txt['aeva_wmp'] = 'WMV/WMA Archivos (via Windows Media)';
$txt['aeva_swf'] = 'SWF Flash animaciones';
$txt['aeva_flv'] = 'FLV Flash videos';
$txt['aeva_divx'] = 'DivX Archivos (.divx)';
$txt['aeva_avi'] = 'AVI Archivos (via DivX player)';
$txt['aeva_mp3'] = 'MP3 Archivos (via Flash player)';
$txt['aeva_mp4'] = 'MP4 Archivos (via Flash player)';
$txt['aeva_fix_html'] = 'Corregir usos de la embed HTML con un embeddable link';
$txt['aeva_noexternalembedding'] = '(EL propietario de video\'s previene incrustación externa)';
$txt['aeva_includeurl'] = 'Incluye el Original Link';
$txt['aeva_includeurl_desc'] = '(para los sitios que no lo tiene en el reproductor)';
$txt['aeva_debug'] = 'Aeva modo de depuración (Administrador solamente)';
$txt['aeva_debug_took'] = 'Aeva depuración:';
$txt['aeva_debug_seconds'] = ' segundos.';
$txt['aeva_debug_desc'] = 'Tiempo necesario para auto-integrar es adjunta a cada mensaje.';
$txt['aeva_local'] = 'Insertar archivos locales [No incluye archivos adjuntos]';
$txt['aeva_local_desc'] = 'Medios locales en el mismo servidor. Pero ello no significa que CUALQUIER archivo de este tipo sean incorporados desde cualquier lugar.';
$txt['aeva_denotes'] = '(sitios marcados con * requieren búsquedas)';
$txt['aeva_fish'] = '(sitios marcados con * requieren búsquedas, Sin embargo, las búsquedas no funcionará en el servidor.<br /> Por lo tanto a menos que manualmente pescar una integrable misma url, la incrustación no funciona para estos sitios.)';
$txt['aeva_pop'] = 'Sitios Populares';
$txt['aeva_video'] = 'Sitios de videos';
$txt['aeva_audio'] = 'Sitios de audios';
$txt['aeva_other'] = 'Otros Sitios';
$txt['aeva_adult'] = 'Sitios de Adultos';
$txt['aeva_custom'] = 'Sitios Personalizados';
$txt['aeva_select'] = 'Seleccionar todos';
$txt['aeva_reset'] = 'Restablecer los valores predeterminados';
$txt['aeva_disable'] = 'Desactivar la inserción';
$txt['aeva_desc'] = 'Bienvenidos al panel de administración del mod Aevea. Aquí puede cambiar la configuración';
$txt['aeva_admin_aeva'] = 'Aeva Administracion - Configuración';
$txt['aeva_admin_aevasites'] = 'Aeva Administración - Lista de sitios';
$txt['aeva_sites'] = 'Sitios de Aeva';
$txt['aeva_new_version'] = 'Una nueva versión (<a href="%s">%s</a>) es disponible!';
$txt['aeva_current_version'] = 'Versión actual: %s';
$txt['aeva_sitelist_updated'] = 'La lista de sitios se ha actualizado a la última versión!';
$txt['aeva_titles'] = 'Store &amp; Mostrar titulo del video';
$txt['aeva_titles_desc'] = '(si el sitio es soportado por Aeva)';
$txt['aeva_titles_yes'] = 'SI, Buscar y Mostrar';
$txt['aeva_titles_yes2'] = 'SI, pero no se guarde nada nuevo';
$txt['aeva_titles_no'] = 'No, pero seguir mirando hacia arriba para más adelante';
$txt['aeva_titles_no2'] = 'No, no guardar y no mostrar';
$txt['aeva_inlinetitles'] = 'Mostrar título dentro de miniaturas de vídeo';
$txt['aeva_inlinetitles_desc'] = '(para los sitios de soporte, tales como YouTube y Vimeo)';
$txt['aeva_inlinetitles_yes'] = 'SI';
$txt['aeva_inlinetitles_maybe'] = 'Sólo si el título no está guardado';
$txt['aeva_inlinetitles_no'] = 'No';
$txt['aeva_noscript'] = 'Usar antes, con Javascript menos, sistema de incrustación';
$txt['aeva_noscript_desc'] = 'Sólo usar si usted tiene problemas de compatibilidad';
$txt['aeva_expins'] = 'Mostrar instalador express de Flash';
$txt['aeva_expins_desc'] = 'Si el usuario \' s versión de Flash no está actualizado, las películas se ofrecen para actualizarlo';
$txt['aeva_lookups_desc'] = 'La mayoría de las características Aeva requieren una búsqueda';
$txt['aeva_center'] = 'vídeos Centro horizontal';
$txt['aeva_center_desc'] = 'O agregar "-center" a video sin configuración de ancho(e.g. #ws-center)';
$txt['aeva_sitelist_added'] = 'El siguiente sitio (s) se agregó:';
$txt['aeva_sitelist_removed'] = 'El siguiente sitio (s) se borró:';
$txt['aeva_sitelist_modified'] = 'El siguiente sitio (s) se Modifico:';
$txt['aeva_lookup_titles'] = 'Trate de encontrar los títulos en todos los sitios';
$txt['aeva_lookup_titles_desc'] = '(incluso cuando no están soportados - nunca se sabe)';
$txt['aeva_incontext'] = 'Habilitar incrustación en las sentencias ';
$txt['aeva_too_many_embeds'] = '(Incrustación Desactivado, ha alcanzado el límite)';
$txt['aeva_checkadmin'] = 'Limitar a los administradores de actualizaciones manuales';
$txt['aeva_checkadmin_desc'] = 'Sólo se podrá actualizar la lista de sitios, Si está activado, (véase el archivo readme.txt)';
$txt['aeva_nonlocal'] = 'Además de reproductores locales, Aceptar sitios web externos';
$txt['aeva_nonlocal_desc'] = 'En caso de que no está claro: sin conocimientos de seguridad, esto no es una opción recomendada.';
$txt['aeva_max_width'] = 'Anchura máxima de los vídeos incrustados';
$txt['aeva_max_width_desc'] = 'Dejar en blanco para desactivar. Introduzca 600 para un ancho máximo de 600 píxeles. Los Vídeos más grande se cambiaran de tamaño, Mienstras se crea n link para que pueda ver tamaños de videos a la anchura máxima.';
$txt['aeva_yq'] = 'La calidad de YouTube Por defecto ';
$txt['aeva_yq_default'] = 'Defecto';
$txt['aeva_yq_hd'] = 'HD esté disponible';
$txt['aeva_small'] = 'Pequeño';
$txt['aeva_large'] = 'Grande';

?>


Saludos

EL GATO.


teveo.net

Özgür

So Long

YogiBear

Quote from: Daydreamer on November 08, 2010, 02:38:05 PM
Is the unseen area doesn't work in 1,4b?


It should work fine. Check it is enabled in the Aeva > Admin section though.
SMF v2.1.3  Mods : Snow & Garland v1.4,  PHP  v.7.4.33

T3CHN0

Quote from: Daydreamer on November 08, 2010, 02:38:05 PM
Is the unseen area doesn't work in 1,4b?

Look at what YogiBear said first. if still not working
what theme & forum are you using 1.1.12 or 2.0

madman71

hey guys,

I want to know if anyone else has seen this problem.

The search function (Aeva search function) NEVER displays  more than 15 results regardless of how many results there are.  With one query, i know for a fact that there are up to 40+ possible results, but only 15 appear, and the problem is, there is no "NEXT" button to show beyond 15 first hits.

Anyone know of this missing "Next" button?  Is this a bug? Missing "feature"? lol
I should add there's no "NEXT" button or number of pages displayed i.e. 1,2,4,5... where each number is a link and it will take you to the remaining search results.


my specs:
SMF Version: SMF 1.1.11    PHP Version: 5.2.14

Installed version: 1.3a

tfs

Quote from: madman71 on November 08, 2010, 11:16:27 PM
The search function (Aeva search function) NEVER displays  more than 15 results regardless of how many results there are.

I'm not sure about the 1.x branch, but that was definitely a bug in the early 2.x branch.  It's fixed in the latest 2.x versions.
A good tree cannot bring forth evil fruit, neither can an evil tree bring forth good fruit.

Mihac™

SMF 2.0 RC4 does not work with Aeva Media 1.4B with PortaMx v0.990.
No PortaMx v0.990 work to normal

"kad budala postavi neko glupo pitanje ni deset mudraca ne može na njega odgovoriti "

Advertisement: