When I move an html block onto any page, it will not save what ever content. not even a simple <b>test</b>
The code I'd like to put in is valid:
<HTML>
<HEAD> </HEAD>
<BODY>
<script type="text/javascript"><!-- google_ad_client = "pub-8145719856216687"; /* sox 160 vert sky */ google_ad_slot = "6334660642"; google_ad_width = 160; google_ad_height = 600; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script>
</BODY> </HTML>
Any suggestions?
|
Are you using FireFox? If not, try it. That's been a common problem. |
wont work in firefox or IE.
Is there supposed to be a tiny_mce menu in the html block? I have no toolbar at all. Just white space, the three properties at the top, and three buttons at the bottom.
|
Yes, you shoudl see a HTML button along with other tinymce. |
I don't. It seems that the files in the upgrade pack i used were wrong. I diff some of them against ones in the full download pack and some are different. admin.inc.php had a lot of bad stuff in it.
Any idea what files I want to check for this little bug? I saw someone else having the same problem on expertzzz but say no answer.
|
I don't. It seems that the files in the upgrade pack i used were wrong. I diff some of them against ones in the full download pack and some are different. admin.inc.php had a lot of bad stuff in it.
Any idea what files I want to check for this little bug? I saw someone else having the same problem on expertzzz but say no answer.
What bad stuff?
|
had references to a db table that no longer existed and had a couple of columns wrongly named. so deleting a profile would break. I fixed it by using the admin.inc.php from the full download. It was odd because the two files had the same date time stamp, but were slightly different in size and had clear differences.
any idea what file controls tiny mce menu showing on the html block? thats the only issue i'm having right now
|
the inc/classes/BxDolPageViewAdmin.php file in my upgrade pack is a diferent size than that in the full download. I'll start with that one....
|
let me know if you'd like to know the code in that file that i am using |
I uploaded the file from the 6.1.1 full pack, and still same behavior...could be cached though. I'll try again in a bit. Then, i may just move all the upgrade pack file from my full download pack...and see what that does. |
That didn't seem to work. I'll have to dig into BxDolPageViewAdmin and see what it calls....if anybody knows what conrols tiny_mce showing up on the html block page that would be cool |
There will be a tiny_mce toolbar. To add HTML code click the html in the toolbar and paste in in the new block that opens. ---- |
Hi, and thanks for the reply.
I'm good with using tiny_mce, the problem I am having is that there is no tinymce tool bar on html block for me. Just a text area.
I can provide you with access to my site if you'd like to see for yourself.
--pk
|
I am having this same problem with the tiny_mce toolbar not showing up. Someone please help with this. |
You can send the login access. ---- |
Same problem here. We need to get this resolved or at least a work around. Any ideas? |
I have the same exact problem |
Any answer?
It appears to save but when you re-open it's empty.
|
what version is this happening in guys? i see you are posted in 6.1, but now with this new release last week, there seems to be more problems popping up in here regarding the tinymce.
later,
DosDawg
When a GIG is not enough --> Terabyte Dolphin Technical Support - Server Management and Support |
I'm using 6.1 and having the same problem. I enter html into the text area click save and nothing happend.
IE and with FF. Hopefully we can find a solution.
|
Sqt wrote: "the inc/classes/BxDolPageViewAdmin.php file in my upgrade pack is a diferent size than that in the full download. I'll start with that one"
By any chance could this be related to my issue?:
http://www.boonex.com/unity/forums/#topic/Template-error-on-6-0-to-6-1-2-upgrade.htm
Same file name, but different directories. Different file sizes between upgrade and full install? Is the 6.0 to 6.1.2. upgrade pack still screwed up? If any of the smart people out there could give me some ideas I'd appreciate it. Looks like another Dolphin detective work project.
Rob
|
|
Not sure if this will help you... I'm running the 6.1.2 version of Dolphin...but I was having the same problem... "Unable to save any content in the HTML Block".
I read a reference to the Firefox browser, I'm using IE7, so I installed Firefox, and it worked right off... sort of... I was missing the full Tool Bar and had to go back and manually install the correct Adobe Flash for Firefox. Then i got the full toolbar, all my saves worked...
Guess what else, so did all the Page Builder functions. I'd previously been adding the pages in SQL... so out of curiosity..
1) I created a new page
2) Adjusted the width
3) Added a Column
4) Drug a block from the Samples Area (BUT Had to hold it in the lower left corner of the Active Blocks section) and it added it, just as advertised.
I know the page builder thing wasn't fixed just because of the 6.1.2 upgrade because it still wasn't working for me in IE7.
|
I had almost the same problem:
HTML Block changes are not saved (I had to do it through the database). this happens with IE7 but work fine on FireFox
I did some research, tried a few stuff and here is what I cameup with
open BxDolPaveViewAdmin file (you can find it in inc/classes)
find the line:
<
input type="submit" value="Save">
and modify it to
<
input type="submit" value="Save" onclick="tinyMCE.triggerSave(true,true)"; />
this worked with me for both IE7 and FireFox.
the TriggerSave function enforces the tinyMCE control to save its data to the textareacontrol when it is called from inside Ajax.
hope it works for you too
|
I had almost the same problem:
HTML Block changes are not saved (I had to do it through the database). this happens with IE7 but work fine on FireFox
I did some research, tried a few stuff and here is what I cameup with
open BxDolPaveViewAdmin file (you can find it in inc/classes)
find the line:
input type="submit" value="Save">
and modify it to
<
input type="submit" value="Save" onclick="tinyMCE.triggerSave(true,true)"; />
this worked with me for both IE7 and FireFox.
the TriggerSave function enforces the tinyMCE control to save its data to the textareacontrol when it is called from inside Ajax.
hope it works for you too
<
I just want to say THANK YOU SO MUCH!!!! I was so excited to find this. It worked with my site - I'm somewhat of a php/scripting novice, but I can change variables... I'm just not good at knowing something is a secure and good fix. I hope this one is because it worked!! AND, morever, it also allowed me to put in some javascript to serve ads, which I desperately needed. THANKS!!!
|
Dude that’s awesome it totally worked. props to you my friend. Now how do you remove the header bar?
Thanks,
|
I had almost the same problem:
HTML Block changes are not saved (I had to do it through the database). this happens with IE7 but work fine on FireFox
I did some research, tried a few stuff and here is what I cameup with
open BxDolPaveViewAdmin file (you can find it in inc/classes)
find the line:
input type="submit" value="Save">
and modify it to
<
input type="submit" value="Save" onclick="tinyMCE.triggerSave(true,true)"; />
this worked with me for both IE7 and FireFox.
the TriggerSave function enforces the tinyMCE control to save its data to the textareacontrol when it is called from inside Ajax.
hope it works for you too
<
I'm using IE 7.0 and this fixed my problem too. This was my first edit after installing and I must admit it made me nervous about using Dolphin; but finding the solution in this form has given me the confidence to continue.
|
I am having the same problem as far as my html blocks save but when i reopen them it's empty. i have tried mrpowless' method and still didn't work. i use firefox and that has made no difference. also i have noticed that i don't have the tnymce toolbar. any ideas on how i can install it? |
I am having the same problem as far as my html blocks save but when i reopen them it's empty. i have tried mrpowless' method and still didn't work. i use firefox and that has made no difference. also i have noticed that i don't have the tnymce toolbar. any ideas on how i can install it?
Someone mentioned that it saves consistently in Google Chrome.
I don't have a clue why you aren't seeing the tinymce toolbar though. I would imagine that this is root of your problems with the html block - but you can try Google Chrome and see if it works for you.
EDIT:
The tinymce editor files are located in the plugins folder. Check your permissions - that could be the problem.
|
It could also a server problem, check this:
set magic_quotes_runtime to OFF in php.ini
and restart your server. This is a solution for 6.1.6 To me it was working. Kids first |
I am having the same problem as far as my html blocks save but when i reopen them it's empty. i have tried mrpowless' method and still didn't work. i use firefox and that has made no difference. also i have noticed that i don't have the tnymce toolbar. any ideas on how i can install it?
Someone mentioned that it saves consistently in Google Chrome.
I don't have a clue why you aren't seeing the tinymce toolbar though. I would imagine that this is root of your problems with the html block - but you can try Google Chrome and see if it works for you.
EDIT:
The tinymce editor files are located in the plugins folder. Check your permissions - that could be the problem.
What should the permissions be and for which files? I also tried Google Chrome and it also didn't work.
|
It could also a server problem, check this:
set magic_quotes_runtime to OFF in php.ini
and restart your server. This is a solution for 6.1.6 To me it was working.
they were already set to off
|
Also I don't know if this helps any but when i open the html block i can't delete or cancel the block all i can do is save. |
yes thats look to the same problem I had. Some servers have troubles with Tiny MCE if magic_quotes is on. Maby into your case this have by to ON... You can try it out. Kids first |
rename and uplaod new plugins/tinymce folder and try I have video tutorials to help you mrpowless.com |
rename and uplaod new plugins/tinymce folder and try
thanks for the reply. i uploaded the new folder and still have same problem.
|
yes thats look to the same problem I had. Some servers have troubles with Tiny MCE if magic_quotes is on. Maby into your case this have by to ON... You can try it out.
how do i change it?
|
Into your php.ini file. If you have root access. I f not ask your provider if they will do for you, but if you are on a shared hosting it can be give some problems. Kids first |
Fadikamal you are the KING! I have been going round and round with this problem for hours! Your post was MUCH appreciated...works like a charm now!!!
Thanks again...PJ
|