The HTML block in page builder is all messed up (again)
In IE8 I get a TinyMCE editor. When I try to add an iframe into the plain HTML area, it strips it and nothing shows.
In Chrome, I don't get a TinyMCE editor at all. Just a plain HTML box with some basic options. I add the iframe code and nothing shows.
In Firefox, I don't get a TinyMCE editor either, but when I add the iframe code into the HTML box, it works and the iframe (a Facebook "Like" button") appears as it should.
------------------------------
ALSO
_________________
I reported some time back that I was seeing the TinyMCE editor change on user profiles. I am still seeing that. I will visit a profile and see a TinyMCE editor with smiley's one moment, and the next time I visit the same profile it will change to the most simple editor. It is entirely inconsistent and I have never been able to figure out what is causing the switch - nor can I force it to happen. It just does it randomly.
I have a fresh installation of 7.05 - unmodified. It is all core code so far.
|
you might want to turn off all your cache settings, clear the cache and start your tests again... ManOfTeal.COM a Proud UNA site, six years running strong! |
Hi,
in this forum http://www.boonex.com/unity/forums/#topic/Page-Builder-Big-Bug.htm
they talk about replacing the TinyMCE editor....
it works fine :
Edit inc\classes\BxDolPageViewAdmin.php
Look for this at about line 473
if( $aItem['Func'] == 'Echo' ) { $aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => false, 'attrs' => array ('id' => 'form_input_html'.$iBlockID), 'name' => 'Content', 'value' => $sBlockContent, 'caption' => $sHtmlContentC, 'required' => true, 'colspan' => true, );
Change to this.
if( $aItem['Func'] == 'Echo' ) { $aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => false, //'attrs' => array ('id' => 'form_input_html'.$iBlockID), 'name' => 'Content', 'value' => $sBlockContent, 'caption' => $sHtmlContentC, 'required' => true, 'colspan' => false, );
|
Thanks john - I may just try that. This is going to be the cause of a thousand posts though, if the past is any indication. Boonex needs to fix this (again)
@newton27 - I just went through and deleted the cache (both site and browser) with the exact same results. I manually deleted the site cache to make sure it got done because (as you well know), there have been a number of issues in the past with the admin cache clearing functions not working properly.
This bug should be able to be recreated for anyone who wants to try it. In fact, it would be good to get it verified so the devs can have a look and see what the trouble is (or isn't)
Thanks guys! :)
|
Has anyone else confirmed the page builder problem, or is it just something with my own installation? Thanks |
i have been experiencing the same issue with iframes as i try to add html blocks to my site. it has been driving me nuts! i even tried adding some additional html around it and that gets stripped too. i will try the suggestion listed herein. |
i just tried the solution from the other forum and am getting this error message: Warning: Cannot modify header information - headers already sent by (output started at /home/delmar/public_html/KO/inc/classes/BxDolPageViewAdmin.php:1833) in/home/delmar/public_html/KO/inc/admin_design.inc.php on line 56 |
i just tried the solution from the other forum and am getting this error message: Warning: Cannot modify header information - headers already sent by (output started at /home/delmar/public_html/KO/inc/classes/BxDolPageViewAdmin.php:1833) in/home/delmar/public_html/KO/inc/admin_design.inc.php on line 56
you have space on these files make sure to not have space
if you can't fix this please I will help you
Post Reply - if you going to help - No for - bla bla bla bla |
where is a space? all i did was copy and paste what was written over the existing the code. |
where is a space? all i did was copy and paste what was written over the existing the code.
This error is commonly caused by having extra spaces before and after the <?php and ?> tags. It can also be caused by other things. I'd check to make sure you applied any custom changes to those files correctly.
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
@delmarcash - use Firefox and it will successfully add your iframe. It's the only way I've found. |
ok. so does someone have a solution to the original question posed? we are unable to post iframes in new html blocks. |
@delmarcash - use Firefox and it will successfully add your iframe. It's the only way I've found.
See above
|
finallygot it to work. theguypc make sure you are using a licensed copy. there is a code difference. i had to use a file from the update patch to fix the problem. |
finallygot it to work. theguypc make sure you are using a licensed copy. there is a code difference. i had to use a file from the update patch to fix the problem.
I am, I have a permanent ad-free licence and it is inserted.
You got this to work in IE8? What update patch are you speaking of? What version of Dolphin are you using?
I'm using a fresh (licensed) install of 7.05
Thanks
|
Hi,
in this forum http://www.boonex.com/unity/forums/#topic/Page-Builder-Big-Bug.htm
they talk about replacing the TinyMCE editor....
it works fine :
Edit inc\classes\BxDolPageViewAdmin.php
Look for this at about line 473
if( $aItem['Func'] == 'Echo' ) { $aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => false, 'attrs' => array ('id' => 'form_input_html'.$iBlockID), 'name' => 'Content', 'value' => $sBlockContent, 'caption' => $sHtmlContentC, 'required' => true, 'colspan' => true, );
Change to this.
if( $aItem['Func'] == 'Echo' ) { $aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => false, //'attrs' => array ('id' => 'form_input_html'.$iBlockID), 'name' => 'Content', 'value' => $sBlockContent, 'caption' => $sHtmlContentC, 'required' => true, 'colspan' => false, );
This still works in 7.05 for those of you who want to insert HTML in pagebuilder easily. TinyMCE goes bye-bye with this fix however.
I prefer it that way so...............
|
It would be nice if this bug got added to TRAC |