Any questions about Documents Sellers, post it here .

Embedding Youtube on DMS item

  • scripto
  • Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
12 years 1 week ago #22657 by scripto
Embedding Youtube on DMS item was created by scripto
Hi, I tried to embed youtube video in the description field of my DMS document, but the tag iframe is always stripped. I've tried to switch the WYSIWYG editor to CodeMirro even to NO WYSIWYG but the tag iframe is always stripped.
I also have checked the text filter permission in the Global Configuration and that's all fine, I have the permission to insert iframe inside the document.
I also tried to add the iframe to my joomla article and it works fine so I assume this is something related to dms. Can you check it please?

Please Log in or Create an account to join the conversation.

More
12 years 2 days ago #22838 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic Re: Embedding Youtube on DMS item
Hi

Please try the solution below :

1. Open the file administrator/components/com_dms/controller.php

2. Find the function save_document

3. Inside that function, find the code below :
Code:
$post = JRequest::get('post', JREQUEST_ALLOWHTML);

4. Change it to :

$post = JRequest::get('post', JREQUEST_ALLOWRAW);

After that, the issue should be solved .

Tuan

Please Log in or Create an account to join the conversation.