When i want to post a blog message, and it's with a picture
It's not possible to add the post on http://www.busimatch.com
It's says...maximum 655360 characters.... But i can't see where i can disable this in the backhand.
I want that everybody can add full websites with pictures & video's, but like this it's not possible.
Can someone help me with this?
http://www.busimatch.club ( The most exclusive business club) |
655360 characters is a lot. I don't know the size of the field in the database; and that is important of course.
I don't think you mean websites; perhaps you meant web pages. You would not create a blog post that would be a website.
If you are exceeding the 655360 characters limit; and the field in the database can accept more, then you can increase the number in the blog module. I am interested to see what type of blog post you are trying to add.
Now, you could change the code to allow someone to insert an iframe to a website; however, that is a security risk. What are you trying to do?
Geeks, making the world a better place |
I don't know how you came by 655360 but the blogs module allows 65535 characters in the post.
In modules\boonex\blogs\classes\BxBlogsModule.php
Find :
'params' => array(3,65535),
Change the 65535 to whatever number you want.
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz |
The problem is that when i put images, he sees a image as characters i think. When the image is very big, then it shows this problem, ik gonna try what modzzz says. http://www.busimatch.club ( The most exclusive business club) |
I did the changes, but not possible...i change the number to 99999999999999
I want copy and paste this page: http://nl.wikipedia.org/wiki/Papierformaat
http://www.busimatch.club ( The most exclusive business club) |
i just created a blog and added a photo in the tinymce and everything went like it should go caredesign.net |
The images are just tags and don't use a lot of space; an image tag is a special type of link tag. Geeks, making the world a better place |
Yes, 1 picture is no a problem, but when a see a page that i want to paste in the blog, then it says this problem like you see. http://www.busimatch.club ( The most exclusive business club) |
just to make sure - i even added the image you were trying to add, and it also went without any problems - although it is cut off cause the block size is not large enough to show the whole image.
Another thing i noticed from your screenshot - it has a long slider on the right going up and down - what is beneath the image you added, cause something is taking up a lot of space
caredesign.net |
in the BxBlogModule.php
'PostText' => array( 'type' => 'textarea', 'html' => 2, 'name' => 'PostText', 'caption' => $sPostTextC, 'required' => true, 'checker' => array ( 'func' => 'length', 'params' => array(3,65535), 'error' => $sTextErrorC, ),
the 'params' => array(3,65535), that is the min value and max value for the blog post body text. As I said, I don't know what size is set in the database for the post text field; you would not want to exceed what the field is set to.
Geeks, making the world a better place |
Well, trying to put that particular page in screwed up the blog post view. I am still having issues so I will have to rebuild my test site now. If you want to continue, back up your site and back up your database so you can recover. Geeks, making the world a better place |
What you mean Geek_girl, my English is not 100%
But if i screw up your site, sorry.
My upload to server in php.ini is 999mb, so i don't think this is the problem.
http://www.busimatch.club ( The most exclusive business club) |
The problem is tinymce is not designed to be used in that manner. It cannot handle trying to clean up the code and convert it to something compatible with tinymce.
I would suggest you try pasting it into the design view of a html editor first, then copy and paste the html from the html editor to the html view of the tinymce editor.
In any case. I suspect you will have problems with any large copy of paste of webpages. Tinymce was not designed or intended to be used in that manner.
https://www.deanbassett.com |
http://www.busimatch.club ( The most exclusive business club) |
But if i screw up your site, sorry.
You did not screw up my site; so nothing for you to be sorry about, I did; however, it was a test site so nothing lost but my time to rebuild.
Geeks, making the world a better place |
What you mean Geek_girl
What I mean is that you could screw up something trying this; my caution is to do a full backup of your site and database so you can recover if it breaks things.
Geeks, making the world a better place |
The f*ck editor wouldn't be any better. What you could do if you must post this; and I would do this through the database, or you will need to tell TinyMCE to not remove an iframe and you don't want all members doing this, is to create a blog post and add the page through an iframe.
Geeks, making the world a better place |
Find :
'params' => array(3,65535),
Change the 65535 to whatever number you want.
Database type is TEXT. So this will only work if you raise it there to MEDIUMTEXT or LONGTEXT.
|
The f*ck editor wouldn't be any better. What you could do if you must post this; and I would do this through the database, or you will need to tell TinyMCE to not remove an iframe and you don't want all members doing this, is to create a blog post and add the page through an iframe.
What he is linking to is a commercial replacement for the FCKEditor which is actually now CKEditor. But based on your post, you seem to have a issue with my preferred/favourite editor.
https://www.deanbassett.com |
The f*ck editor wouldn't be any better. What you could do if you must post this; and I would do this through the database, or you will need to tell TinyMCE to not remove an iframe and you don't want all members doing this, is to create a blog post and add the page through an iframe.
What he is linking to is a commercial replacement for the FCKEditor which is actually now CKEditor. But based on your post, you seem to have a issue with my preferred/favourite editor.
LOL, actually no; and the CKEditor comes packaged with a file manager; or at least it use to. You have to admit FCK brings to mind a well known word, LOL No, what I was trying to say to him is it is not really the editor but trying to paste in that Wiki page.
As for TinyMCE, don't bother trying to get help from the developers over in the forum, the main guy use to be downright rude to people; may still be.
Geeks, making the world a better place |