News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

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

psixanwmalos

maybe the php files are linking to somewhat... else? i dont know

Arantor

You can have a table collation and a per column collation. The fields for every table must be set the same and the fact you're getting that error means they can't be.
Holder of controversial views, all of which my own.


psixanwmalos

Quote from: IncognitoMuse on December 24, 2010, 06:44:05 PM
You can have a table collation and a per column collation. The fields for every table must be set the same and the fact you're getting that error means they can't be.

i am using inferno theme. maybe this is the prob???
i changed every single table and column to the same collution. Checked about 5 times each :/

Arantor

Nothing to do with the theme.

OK, go into phpMyAdmin, and to the smf_members table and press Structure. Then take a screenshot and post it here please.

(And you changed a few hundred columns, spread out across about 75 tables, individually?)
Holder of controversial views, all of which my own.


psixanwmalos

Quote from: IncognitoMuse on December 24, 2010, 09:53:07 PM
Nothing to do with the theme.

OK, go into phpMyAdmin, and to the smf_members table and press Structure. Then take a screenshot and post it here please.

(And you changed a few hundred columns, spread out across about 75 tables, individually?)

only the ones that needed a change.

But please take a look at the picture i may do something wrong.

b4pjoe

So when you click this link and the tables are shown on the right side...all of the tables are also listed as "utf8_unicode_ci"?

lazym4n2010

Hi , I installed aeva and have had no problems with it unitll now, when someone tried to post a video from youtube the video shows in preview but doesn't show when posted.
I tried to uninstall the mod and got an error message: test failed for modsettings.php
Can someone help me?
I have attached modsettings.php if you would like to see the file

thanks!

Spuds

If you want to uninstall then try uninstalling project snow first and then Aeva ... also check if Aeva runs correctly after you remove project snow.

lazym4n2010

Hi, I want to keep aeva i was going to reinstall it, but won't the problem be with the modsetting.php file? or should i try uninstalling other mods? I'm not getting any error logs for aeva but getting it for sharethistopic mod , i will try uninstalling that particular mod

Spuds

Quote from: lazym4n2010 on December 26, 2010, 02:08:03 PM
Hi, I want to keep aeva i was going to reinstall it, but won't the problem be with the modsetting.php file? or should i try uninstalling other mods? I'm not getting any error logs for aeva but getting it for sharethistopic mod , i will try uninstalling that particular mod
Did you actually read my response ???

The only edits I see in the modsetting.php file that you provided that would appear to have any affect Aeva uninstalling were those created by Project Snow ... so as I already said that is what I would uninstall first and then see if Aeva wants to uninstall cleanly.

Did Aeva used to run but stopped or is this the first time you tried to embed a youtube vid?  If it used to run what other mods did you install after Aeva?



lazym4n2010

Hi, sorry I meant to say I will try that mod before projectsnow mod, but i get an error message when i try to uninstall projectsnow the same one modsettings.php: says test failed,
It was working but stopped showing videos recently , only mods i installed after were projectsnow, however I made changes to other mods that were installed , I'll need to retrace my steps
thanks for the response

PLAYBOY

I have 2 of the same "Markread.gif" buttons right next to each other on "Unseen" page. One of them makes the items on the current page be read. The other one makes the entire unseen folder be read. They are good and useful. But the buttons are exactly the same and people donno which one is which.

I cannot customize the buttons because the sources are the same customtheme/images/ plus forum uses that button to make the titles read also.

What can i do about it? Any ideas would be appreciated

1.1.12

psixanwmalos

Quote from: joec88 on December 25, 2010, 09:43:18 AM
So when you click this link and the tables are shown on the right side...all of the tables are also listed as "utf8_unicode_ci"?

hello mate. Yes every single one of them :)

RustyBarnacle

I appologize if this has been mentioned before, I did search but did not see what I was looking for.  I have code similar to this:


function show_aeva_media_block()
{
   global $sourcedir;

   // Load the language file
   loadLanguage('Aeva');

   // Grab the file.
   if (file_exists($sourcedir . '/Aeva-Subs.php'))
      require_once($sourcedir . '/Aeva-Subs.php');
   // If it doesn't exist, tell them this and stop running.
   else
   {
      echo '<b>You don\'t have Aeva installed! Unable to continue!</b>';
      return;
   }

   // Use aeva functions to show the media.
   echo aeva_listItems(aeva_getMediaItems(0, 6, 'RAND()'), false, '', 1);
}

// Run the function.;
show_aeva_media_block();


Does anyone know how to limit the results to one specific album?

Thanks

b4pjoe

Quote from: RustyBarnacle on December 27, 2010, 01:49:24 PM
I appologize if this has been mentioned before, I did search but did not see what I was looking for.  I have code similar to this:


function show_aeva_media_block()
{
   global $sourcedir;

   // Load the language file
   loadLanguage('Aeva');

   // Grab the file.
   if (file_exists($sourcedir . '/Aeva-Subs.php'))
      require_once($sourcedir . '/Aeva-Subs.php');
   // If it doesn't exist, tell them this and stop running.
   else
   {
      echo '<b>You don\'t have Aeva installed! Unable to continue!</b>';
      return;
   }

   // Use aeva functions to show the media.
   echo aeva_listItems(aeva_getMediaItems(0, 6, 'RAND()'), false, '', 1);
}

// Run the function.;
show_aeva_media_block();


Does anyone know how to limit the results to one specific album?

Thanks

change:

echo aeva_listItems(aeva_getMediaItems(0, 6, 'RAND()'), false, '', 1);

to:

echo aeva_listItems(aeva_getMediaItems(0, 6, 'RAND()', true, array(10)), true, 'center', 0);

array(10) is album 10. Change it to the album number you want to use.


RustyBarnacle

Hmmm. thats not working so well.  At first I get a parse error so I took out a bracket after the array(10)) but it still doesn't work well.  I get pictures not just in that album.

b4pjoe

I'm not sure then. I use it in a portal block like this and it works.

global $sourcedir;
     loadLanguage('Aeva');
     require_once($sourcedir . '/Aeva-Subs.php');
     echo aeva_listItems(aeva_getMediaItems(0, 16, 'RAND()', true, array(10)), true, 'center', 0);

lazym4n2010

Videos on my forum would load up fine but now have stopped showing in the threads just the link shows, But when I'm posting I can see the video in the preview and play it as well?? can anyone help me?
I'm not sure what's been changed in the files from other mods
I'm using smf 1.1.12

PLAYBOY

Quote from: PLAYBOY on December 26, 2010, 05:30:15 PM
I have 2 of the same "Markread.gif" buttons right next to each other on "Unseen" page. One of them makes the items on the current page be read. The other one makes the entire unseen folder be read. They are good and useful. But the buttons are exactly the same and people donno which one is which.

I cannot customize the buttons because the sources are the same customtheme/images/ plus forum uses that button to make the titles read also.

What can i do about it? Any ideas would be appreciated

1.1.12

Guys is there anybody can help me out about this problem?




Update: Nevermind. I got it.

Advertisement: