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

anidea

I'm a little afraid to ask, but I'm going to anyway...

I got Aeva going, sort of.  I got down to the error creating galleries, where it tells you you have to chmod to 777, only my gallery is already 777.  Ok, so I know the problem is Safe Mode, but I can't disable Safe Mode.  So I found MGallerySafeMode.php and filled it out.  But still no luck.  I've verified all the paths in the Aeva config and in the MGallerySafeMode.php FTP script...is there something else I'm missing?  Has anyone else successfully created a gallery with Safe Mode enabled?  Is there a trick to it?  Something in particular I should look at?

I'm pretty happy that we can embed video from YouTube, but creating galleries would be the icing on the cake.  Thanks in advance for any suggestions anyone can offer.

Cecilia  :)

NoFeaR / NFSMW

Yogibear. I use firefox. Thing is that i want all my users to have the same experience regardless of resolution or browser. When resolutions are set low the images are going off to the right of the screen.

Nao 尚

I will not make any deals with you. I've resigned. I will not be pushed, filed, stamped, indexed, briefed, debriefed or numbered.

Aeva Media rocks your life.

LHW

Quote from: NFSMW on July 23, 2010, 01:37:19 AM
Yogibear. I use firefox. Thing is that i want all my users to have the same experience regardless of resolution or browser. When resolutions are set low the images are going off to the right of the screen.

With FF v3.6.7 and a screen resolution of 1024x768, it looks fine.  If people are still using 800x600 (or, God forbid, 640x480!) then you'll need to make your thumbnail images smaller.  You can regenerate them via AeMe's Maintenance section.

OR, simply post a disclaimer that your site is designed for resolutions of 1024x768 and above.  Then it's up to THEM to modify their end.


NoFeaR / NFSMW


LHW



blazinchuck

"I'm not as Think, as you stoned I am"

blazinchuck

one more thought...when i click the media button and it takes me to the gallery, i notice all the buttons to the right of the media button drop down a bit...has anyone had this happen before? heres a shot to see
"I'm not as Think, as you stoned I am"

kat

As this isn't, really, a problem with AEVA, you might want to stick something in the v1.x support board, blazinchuck.

I'm replying to your other topic, so keep to that, rather than hassling Nao, yeah?


Ta!

blazinchuck

"I'm not as Think, as you stoned I am"

Nao 尚

guest perms => can't see your problem on your site. can't help.
I will not make any deals with you. I've resigned. I will not be pushed, filed, stamped, indexed, briefed, debriefed or numbered.

Aeva Media rocks your life.

blazinchuck

#4391
 i double checked to make sure guest can view the forum and gallery also thanks,Chuck

here the site... http://palmettoperformancediesels.com/index.php
"I'm not as Think, as you stoned I am"

SergeantAsh

I have just installed AEVA Media fresh on a v2.0 RC3 installation, I have then run converter.php to migrate my current Coppermine 1.4.9 into Aeva but almost as soon as the conversion starts, I get this error :(

Database Error
Duplicate entry '1' for key 'PRIMARY'
File: /home/.feller/a-hall/www.clubcalibra.com/Sources/Aeva-Subs-Vital.php
Line: 238
Back
Quote"Moderation has been called a virtue to limit the ambition of great men, and to console undistinguished people for their want of fortune and their lack of merit."

Nao 尚

Quote from: blazinchuck on July 23, 2010, 08:34:01 AM
i double checked to make sure guest can view the forum and gallery also thanks,Chuck

here the site... http://palmettoperformancediesels.com/index.php
You forgot to add <li></li> and the contained <span> tags as well... Obviously it's disrupted otherwise. When you adapt a menu entry to a different menu system, you need to keep its tag structure.
I will not make any deals with you. I've resigned. I will not be pushed, filed, stamped, indexed, briefed, debriefed or numbered.

Aeva Media rocks your life.

kat

I tried to do that, Nao, for him.

I used the same code as in the other buttons and the damned thing went vertical, instead of horizontal.

I did this:

// AEVA? ([media])
if (allowedTo('aeva_access'))
  echo '<li><a' , $current_action=='media' ? ' class="active"' : '' , ' href="', $scripturl, '?action=media"><span>' , $txt[4] , '</span></a></li>';


after defining txt[4] in index.english.php.

A little knowledge is a dangerous thing, I guess... ;)

blazinchuck

// 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">', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>
            </td>', $current_action == 'media' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';


actually...im note see the "<li></li> and the contained <span> tags"... this is copied from the index.template.php i attached earlier..ill check again and reattach the index file
"I'm not as Think, as you stoned I am"

blazinchuck

this is what was in the template right now..
// 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">', isset($txt['aeva_gallery']) ? $txt['aeva_gallery'] : 'Media', $aeva_unseen ? '</a> <a href="' . $scripturl . '?action=media;sa=unseen">[<b>' . $aeva_unseen . '</b>]' : '', '</a>
            </td>', $current_action == 'media' ? '<td class="maintab_active_' . $last . '">&nbsp;</td>' : '';






ok [email protected] uploaded yours earlier, then things went vertical...so i re-uploaded the backup index.template. which is were im at now. so im guessing Nao's thought are to add those tags and things should be good?thanks
"I'm not as Think, as you stoned I am"

blazinchuck

this is what i found in the index.template from K@...
// AEVA? ([media])
if (allowedTo('aeva_access'))
  echo '<li><a' , $current_action=='media' ? ' class="active"' : '' , ' href="', $scripturl, '?action=media"><span>' , $txt[4] , '</span></a></li>';

echo '
  </ul>
</div>';

}

// Generate a strip of buttons.
function template_button_strip($button_strip, $direction = 'top', $force_reset = false, $custom_td = '')
{
global $settings, $buttons, $context, $txt, $scripturl;

// Create the buttons...
foreach ($button_strip as $key => $value)
{
if (isset($value['test']) && empty($context[$value['test']]))
{
unset($button_strip[$key]);
continue;
}
elseif (!isset($buttons[$key]) || $force_reset)
$buttons[$key] = '<a href="' . $value['url'] . '" ' .( isset($value['custom']) ? $value['custom'] : '') . '>' . $txt[$value['text']] . '</a>';

$button_strip[$key] = $buttons[$key];
}

if (empty($button_strip))
return '<td>&nbsp;</td>';

echo '
<td class="', $direction == 'top' ? 'main' : 'mirror', 'tab_' , $context['right_to_left'] ? 'last' : 'first' , '">&nbsp;</td>
<td class="', $direction == 'top' ? 'main' : 'mirror', 'tab_back">', implode(' &nbsp;|&nbsp; ', $button_strip) , '</td>
<td class="', $direction == 'top' ? 'main' : 'mirror', 'tab_' , $context['right_to_left'] ? 'first' : 'last' , '">&nbsp;</td>';
}

?>
"I'm not as Think, as you stoned I am"

Nao 尚

That's a very technical question...
Are you seriously expecting an answer from someone other than me? ::)
I will not make any deals with you. I've resigned. I will not be pushed, filed, stamped, indexed, briefed, debriefed or numbered.

Aeva Media rocks your life.

Nao 尚

Quote from: K@ on July 23, 2010, 01:38:59 PM
I tried to do that, Nao, for him.

I used the same code as in the other buttons and the damned thing went vertical, instead of horizontal.
I used Dragonfly (dev tools in Opera) to edit the page on the fly, and the tab worked after I added the li and span... (Which is why I posted.)
I will not make any deals with you. I've resigned. I will not be pushed, filed, stamped, indexed, briefed, debriefed or numbered.

Aeva Media rocks your life.

Advertisement: