? Error

User tests: Successful: Unsuccessful:

avatar fxdm92
fxdm92
9 Sep 2013
  • Make media manager has similar template to other components.
  • Add filter like category/access filter, search box and ordering filter.
  • Add categories to manage ACL at category level.
  • Add check in/ check out function to avoid conflicts.
  • Add sync database button to sync database information with real folders.
  • Treat media as asset to manage ACL at item level.
  • Copy ucm_content structure for easy adaptation of ucm later.
  • Add auto thumbnail generation with configuration on global configuration: choose width of thumbnail or ratio between thumbnail and image.
  • Add information view which is similar to article view of com_content in which administrators can change media information, publishing information and media permissions.
  • Add editor view in which users can edit image(rotate, flip, resize, crop, duplicate)
  • Decrease the dependence on Mootools. All of new javascript are in Jquery. Traslate some old mootools to Jquery as well.
  • Totally new MVC and database-driven now.
avatar fxdm92 fxdm92 - open - 9 Sep 2013
avatar brunobatista
brunobatista - comment - 9 Sep 2013

Awesome +1

avatar TobsBobs
TobsBobs - comment - 15 Sep 2013

Is there a tracker on joomlacode.org?

Nice work! ;)

avatar betweenbrain
betweenbrain - comment - 16 Sep 2013

Great to see this work!

I just did a git clone -b pein2010 https://github.com/fxdm92/joomla-cms.git and when visiting Content => Media Manager, I see
new-media-manager-001. It appears as if the document head might be missing as the first few lines of the page source is <div class="row-fluid">
<!-- Begin Sidebar -->
<div class="span2">
<div id="sidebar">
<div class="sidebar-nav">

avatar piotr-cz
piotr-cz - comment - 16 Sep 2013

Adding myself to see progress of this great project.

avatar betweenbrain
betweenbrain - comment - 16 Sep 2013

If I visit administrator/index.php?option=com_media&view=editor or administrator/index.php?option=com_media&view=information I get:

1146 Table 'joomla_media-manager.lytxr_ucm_media' doesn't exist SQL=SELECT content_id,type_alias,title,alias,body,checked_out_time,params,metadata,created_user_id,created_by_alias,created_time,modified_time,language,publish_up,publish_down,content_item_id,asset_id,images,urls,metakey,metadesc,catid,xreference,type_id FROM lytxr_ucm_media WHERE urls = ''

avatar betweenbrain
betweenbrain - comment - 16 Sep 2013

administrator/index.php?option=com_media&view=medialist gives me 1146 Table 'joomla_media-manager.lytxr_ucm_media' doesn't exist SQL=SELECT urls,checked_out FROM lytxr_ucm_media WHERE urls regexp'^[^\\/:*?\"<>|]+.[a-zA-Z0-9]+$' AND alias like'%%' ORDER BYalias``

joomla_media-manager is the name of the database.

avatar fxdm92
fxdm92 - comment - 16 Sep 2013

hi betweenbrain, I forget to add the table initialization query in installation folder so the new table for media ucm_media is not there. You can create that table and click sync database button. I will add the query next commit
Thanks everyone for your interests

avatar elkuku
elkuku - comment - 16 Sep 2013

Looks very cool !
I just did a quick install..
Fatal error: Call to undefined method JHtml::tooltipText() in
.../administrator/components/com_media/view/media/tmpl/default.php on line 69

Trying the edit view i get:
Fatal error: Class 'JObserverUpdater' not found in
.../administrator/components/com_media/tables/media.php on line 55

After creating the table and clicking sync database, I got the thumbnails only for top level images, (e.g. sampledata/fruitshop was empty)...

But I can see where it's going - please make it testable :wink:

avatar piotr-cz
piotr-cz - comment - 23 Sep 2013

I'm getting the same error in view/media/tmpl/default.php as @betweenbrain. Your component is using JHtml::tooltipText, but this behavior is not yet available in the test branch (libraries/cms/html/html.php). I'd say you have to update it to latest state of master.

Also I'm unable to use editor operations that use ajax.
The reason is that raw.php is trying to save a log file on E drive and due to resulting error, JSON response is malformed.

avatar piotr-cz
piotr-cz - comment - 24 Sep 2013

I've noticed you are using JImage::flip method that is not (yet) part of the Image package.
If you're planning to extend that class, I recommend using constants for flip directions like with scale methods instead of text. For example:

/**
 * @const  integer
 * @since  3.2
 */
const FLIP_HORIZONTAL = 1;

/**
 * @const  integer
 * @since  3.2
 */
const FLIP_VERTICAL = 2;

/**
 * @const  integer
 * @since  3.2
 */
const FLIP_BOTH = 4;
avatar dongilbert
dongilbert - comment - 10 Oct 2013

What is the status of this? I was assuming this would be part of 3.2, since it was a GSOC project?

avatar beat
beat - comment - 10 Oct 2013

Nice, but is there a Feature Request on Joomlacode.org (which is the point of thruth for new features) for this ? if yes, what's the link ?

avatar coder4life
coder4life - comment - 11 Oct 2013

I know beta 1 is in the wild right now, but this is one last feature I like us to try and squeeze in, as it is definitely needed compared to our last extreme revisions to the media manager.

avatar mbabker
mbabker - comment - 11 Oct 2013

Unfortunately, it's not going to make the cut. As noted above, there are outstanding issues with the code that haven't been addressed and it doesn't appear the poster has had any activity on this basically since posting aside from a couple comments.

avatar coder4life
coder4life - comment - 12 Oct 2013

I am interested at looking into the remaining issues, I would really like this in. I do not have time until later next week. However I want to know if it is still likely to be accepted before I devote the time.

On Oct 11, 2013, at 4:35 PM, Michael Babker notifications@github.com wrote:

Unfortunately, it's not going to make the cut. As noted above, there are outstanding issues with the code that haven't been addressed and it doesn't appear the poster has had any activity on this basically since posting aside from a couple comments.


Reply to this email directly or view it on GitHub.

avatar mbabker
mbabker - comment - 12 Oct 2013

At this point, not for the 3.2.0 release. I can't speak for the others involved in the process, but I'd be willing to look at it for a later release myself.

avatar losedk
losedk - comment - 11 Mar 2014

Any news on this?

avatar brianteeman brianteeman - change - 21 Aug 2014
Status New Pending
Build .
avatar brianteeman brianteeman - change - 2 Sep 2014
Category Libraries
avatar Willroz
Willroz - comment - 15 Nov 2014

Has this been abandoned?

I just tested this on 3.4.0-dev and below is the result

media-manager-error

avatar Willroz Willroz - test_item - 15 Nov 2014 - Tested unsuccessfully
avatar losedk
losedk - comment - 15 Nov 2014

@Willroz You should properly focus on this one instead: #3839

avatar Willroz
Willroz - comment - 15 Nov 2014

Thank you for pointing me in the right direction.

avatar jissues-bot
jissues-bot - comment - 16 Nov 2014

Set to "closed" on behalf of @zero-24 by The JTracker Application at issues.joomla.org/joomla-cms/1945

avatar jissues-bot jissues-bot - close - 16 Nov 2014
avatar zero-24 zero-24 - change - 16 Nov 2014
Status Pending Closed
avatar zero-24
zero-24 - comment - 16 Nov 2014

Closing. See #3839 for an new proposal.

This comment was created with the J!Tracker Application at issues.joomla.org/joomla-cms/1945.

avatar jissues-bot jissues-bot - change - 16 Nov 2014
Closed_Date 0000-00-00 00:00:00 2014-11-16 00:48:21

Add a Comment

Login with GitHub to post a comment