You need to be logged in to post in the forum - Log In
An active JCE Pro Subscription is required to post in the forum - Buy a Subscription
- Support
- Forum
- JCE Editor
- Media fields problem
Support is currently Offline
Official support hours:
Monday To Friday
From 09:00 To 17:00 Europe/London (BST)
From 09:00 To 17:00 Europe/London (BST)
Please post your question in the Forum and we will get back to you as soon as we can.
Hi,
We have detect problem with Joomla media fields and JCE integrations.
Example:
This fire JCE File Manager with standard custom field but not working with new repeatable field (open default Joomla! media manager not JCE).
We have detect problem with Joomla media fields and JCE integrations.
Example:
<field
name="image"
type="media"
label="COM_CONTENT_FIELD_INTRO_LABEL"
description="COM_CONTENT_FIELD_INTRO_DESC"
/>
This fire JCE File Manager with standard custom field but not working with new repeatable field (open default Joomla! media manager not JCE).
@Seppy:
Our workaround for the moment is a simple cron-job. I store the modified browser.php file somewhere on the server (in the example below inside the html folder of the template) and send it back to the original place every minute.
Our workaround for the moment is a simple cron-job. I store the modified browser.php file somewhere on the server (in the example below inside the html folder of the template) and send it back to the original place every minute.
cp
/... your path... /public_html/templates/... your template .... /html/cronjob_components_com_jce_editor_tiny_mce_plugins_browser/browser.php
/.. your path... /public_html/components/com_jce/editor/tiny_mce/plugins/browser/browser.ph
Hi everybody
Any news about «update-proof» of the pdf-tweek in browser.php or th the «component option» approach?
While I do understand there might be issues with a higher priority, I can't imagine this setting would be a huge trick, is it?
Or did I miss this in a release note?
thanks a lot
Seppy
Any news about «update-proof» of the pdf-tweek in browser.php or th the «component option» approach?
While I do understand there might be issues with a higher priority, I can't imagine this setting would be a huge trick, is it?
Or did I miss this in a release note?
thanks a lot
Seppy
Referring to my previous post above, do you have an idea how we can make an update-proof override of browser.php where we've added "PDF" on line 54?
No, but I am looking into some alternatives for this, perhaps having the media field as a "Component" option in Editor Profiles, so that you can have a profile specifically for the Media Field File Browser.
Just because you're not paranoid doesn't mean everybody isn't out to get you.
Hi Ryan,
Referring to my previous post above, do you have an idea how we can make an update-proof override of browser.php where we've added "PDF" on line 54?
The second topic regarding the JCE media manager in repeatable fields seems to be solved with JCE Pro 2.9.3 Beta 5. Thank you for that!!
Best regards
Fabian
Referring to my previous post above, do you have an idea how we can make an update-proof override of browser.php where we've added "PDF" on line 54?
The second topic regarding the JCE media manager in repeatable fields seems to be solved with JCE Pro 2.9.3 Beta 5. Thank you for that!!
Best regards
Fabian
Hi there,
We're also very interested in this functionality in order to allow PDF uploads with repeatable fields. Therefore, we've added "PDF" on line 54 of /components/com_jce/editor/tiny_mce/plugins/browser/browser.php
secondly, we've changed the XML file as suggested by Karolrzepka. This works perfectly well beside the fact that those changes might be necessary after any update.
Does anybody have an idea how to make this "update proof"? Any help is highly appreciated.
Best regards
Fabian
We're also very interested in this functionality in order to allow PDF uploads with repeatable fields. Therefore, we've added "PDF" on line 54 of /components/com_jce/editor/tiny_mce/plugins/browser/browser.php
secondly, we've changed the XML file as suggested by Karolrzepka. This works perfectly well beside the fact that those changes might be necessary after any update.
Does anybody have an idea how to make this "update proof"? Any help is highly appreciated.
Best regards
Fabian
more than a month ago
·
#100761
A friend told me please go to plugins/fields/repeatable/params/repeatable.xml
and replace file:
<?xml version="1.0" encoding="utf-8"?>
<form>
<fields name="fieldparams">
<fieldset name="fieldparams">
<field
name="fields"
type="subform"
label="PLG_FIELDS_REPEATABLE_PARAMS_FIELDS_LABEL"
description="PLG_FIELDS_REPEATABLE_PARAMS_FIELDS_DESC"
multiple="true">
<form>
<fields>
<fieldset>
<field
name="fieldname"
type="text"
label="PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_NAME_LABEL"
description="PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_NAME_DESC"
required="true"
/>
<field
name="fieldtype"
type="list"
label="PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_TYPE_LABEL"
description="PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_TYPE_DESC"
>
<option value="editor">PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_TYPE_EDITOR</option>
<option value="mediajce">PLG_FIELDS_MEDIAJCE_LABEL</option>
<option value="media">PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_TYPE_MEDIA</option>
<option value="number">PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_TYPE_NUMBER</option>
<option value="text">PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_TYPE_TEXT</option>
<option value="textarea">PLG_FIELDS_REPEATABLE_PARAMS_FIELDNAME_TYPE_TEXTAREA</option>
</field>
<field
name="fieldfilter"
type="list"
label="PLG_FIELDS_TEXT_PARAMS_FILTER_LABEL"
description="PLG_FIELDS_TEXT_PARAMS_FILTER_DESC"
class="btn-group"
validate="options"
showon="fieldtype!:media,number"
>
<option value="0">JNO</option>
<option
showon="fieldtype:editor,text,textarea"
value="raw">JLIB_FILTER_PARAMS_RAW</option>
<option
showon="fieldtype:editor,text,textarea"
value="safehtml">JLIB_FILTER_PARAMS_SAFEHTML</option>
<option
showon="fieldtype:editor,text,textarea"
value="JComponentHelper::filterText">JLIB_FILTER_PARAMS_TEXT</option>
<option
showon="fieldtype:text,textarea"
value="alnum">JLIB_FILTER_PARAMS_ALNUM</option>
<option
showon="fieldtype:text,textarea"
value="integer">JLIB_FILTER_PARAMS_INTEGER</option>
<option
showon="fieldtype:text,textarea"
value="float">JLIB_FILTER_PARAMS_FLOAT</option>
<option
showon="fieldtype:text,textarea"
value="tel">JLIB_FILTER_PARAMS_TEL</option>
</field>
</fieldset>
</fields>
</form>
</field>
</fieldset>
</fields>
</form>
more than a month ago
·
#97613
Hi Ryan,
I just installed JCE Pro 2.6.34 RC1 but still the JCE File browser is not available in the repeatable media fields. See img.
ps. just want to select a single zip file here with each row.
btw. this is a repeatable field created with custom fields under Content
Regards,
Gosling
I just installed JCE Pro 2.6.34 RC1 but still the JCE File browser is not available in the repeatable media fields. See img.
ps. just want to select a single zip file here with each row.
btw. this is a repeatable field created with custom fields under Content
Regards,
Gosling
Please try JCE Pro 2.6.34 RC1 - https://www.joomlacontenteditor.net/downloads/editor/pro/development/item/jce-pro-dev
Just because you're not paranoid doesn't mean everybody isn't out to get you.
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!