Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Franky
1
No Problem, i have embed the video :)

I could have done it before, But I did not do it sooner. Now it is fixed, and that counts :cool:
2
Bug reports / Re: Error id_file in Media Gallery
« on July 25th, 2017, 06:01 PM »
Many thanks for fix :cool:
4
Bug reports / Error id_file in Media Gallery
« on July 22nd, 2017, 12:23 PM »
https://wedge.org/pub/fixed/8416/aeme-the-database-value-you-re-trying-to-insert-does-not-exist-id_file/msg297278/#msg297278

Now the error is also on wedge.org. Click in the menu on Media Gallery, And the gallery displays the error "The database value you're trying to insert does not exist: id_file"


5
Bug reports / Re: YouTube Videos not Fullscreen
« on July 19th, 2017, 05:04 PM »
Great many Thanks. works fine :)
6
Bug reports / Re: YouTube Videos not Fullscreen
« on July 16th, 2017, 12:14 PM »
Many thanks  :cool:
7
Bug reports / Re: YouTube Videos not Fullscreen
« on July 16th, 2017, 11:28 AM »
This is in the file Aeva-Embed.php

Aeva-Embed.php
from line 291
Quote from php
// Depending on the plugin, use different parameters
   if (empty($arr['plugin']) || $arr['plugin'] == 'flash')
   {
      $plugin = array(
         'classid' => 'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
         'type' => 'application/x-shockwave-flash',
         'params' => array(
            'wmode' => 'transparent', 'quality' => 'high', 'allowFullScreen' => 'true', 'allowScriptAccess' => !empty($arr['allow-script']) ? 'always' : 'never',
            'pluginspage' => 'http://get.adobe.com/flashplayer', 'autoplay' => 'false', 'autostart' => 'false',
         ),
      );
   }
'allowFullScreen' => 'true',

But it does not work.

The whole Api has changed over the years.  https://developers.google.com/youtube/player_parameters?hl=en

Also the aspect ratios are no longer correct, in a 16: 9 screen.

Are you ready to upgrade for Media Gallery for Wedge?
8
Bug reports / YouTube Videos not Fullscreen
« on July 15th, 2017, 07:05 PM »
YouTube videos can no longer be displayed in full screen. Is there a solution for this?
9
Go to Media over the menu button

Database error
File: /xxxxxxxxxxxxxxxxxxxxxxxxxxx/wedge/gz/app/media_Subs-Media.php  (root =>gz => http://wedge.org/pub/bugs/8781/aeva-cache-of-aeva-sites/msg297060/#msg297060)
Line: 3605

Code: (php) [Select]
3594function aeva_resetTransparency($id_file, $path)
3595{
3596 $is_transparent = aeva_isTransparent($path);
3597 wesql::query('
3598 UPDATE {db_prefix}media_files
3599 SET transparency = {string:transparency}
3600 WHERE WHERE id_file = id_file',
3601 array(
3602 'id_file' => $id_file,
3603 'transparency' => $is_transparent ? 'transparent' : 'opaque',
3604 )
3605 );
3606 return $is_transparent;
3607}
Line 3605:    
Code: (php) [Select]
);
10
Thanks ^_^ , I will try.
The error comes only with version 2.10 with the introduction of the function transparency flag to pictures.
Quote
New with 2.10  Added transparency flag to pictures, and functions to determine transparency
11
Bug reports / [Aeva] Re: Cache of Aeva-Sites
« on April 13th, 2016, 07:44 AM »
This is the error message:
Quote
Warning (level 2): file_put_contents(/htdocs/development/wedge/gz/lang/german_ManageMaintenance.php): failed to open stream: No such file or directory
In gz folder paths to files and directories are not found.
12
Have now the source identified that causes the bug. It is the function of the aeva media gallery.:
Quote
Added transparency flag to pictures, and functions to determine transparency
This is the error message:
Quote
The database value you're trying to insert does not exist: id_file
Function: aeva_resetTransparency
The value id_file but is available, see attachment database_transparency.JPG
13
It does not address the cause, only the error message no longer appears. The cause of the error is the bug with outsource to the root gz.

http://wedge.org/pub/bugs/8781/aeva-cache-of-aeva-sites/msg297060/#msg297060
14
Bug reports / [Aeva] Re: Cache of Aeva-Sites
« on April 11th, 2016, 10:00 AM »
15
Although the issue is so old. The bug is still. I could solve it for SMF and for Wedge.

SMF
Aeva-Subs.php (Version 2.10) line 3721
Code: [Select]
WHERE id_file = {int:id_file}',
change to
Code: [Select]
WHERE id_file = id_file',

Wedge
Subs-Media.php line 3600
Code: [Select]
WHERE id_file = {int:id_file}',
change to
Code: [Select]
WHERE id_file = id_file',