Next bug Found...
Next bug Found...
Hello, I found some bug and need some help. I'm adding to my WebPage, the tax act's. And they are Quite long. But after saving the text I found, that on website is shown not all text! Like during the saving the text is cutt in some part. And how long are the text's ?? Here is example: http://www.gofin.pl/nowe_okno.php?id_te ... mo=613&i=0
Re: Next bug Found...
Yeah! The whole world on one single page! This seems to be the wrong way....
It's mostly all about maintaining two or three customer's sites Still supporter for the band Mykket Morton. Visit Mykket Morton on FB. Listen Mykket Morton and live videos on youtube.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Now building a venue for young artists to get wet on stage, rehearsal rooms, a studio, a guitar shop - yes I'm going to build some guitars.
Re: Next bug Found...
Why ?? Usualy on websites the act's are on one page, If you are reading / looking thru the text You want to find all You want and all act numbers. So is there some way to repair this bug ??
Re: Next bug Found...
I have tested a wysiwyg CP with your text.
It is running well. But there is a long time to save the text into the db.
If you have small php resources on your server it do´t run (max. execution time and ram).
Knut
It is running well. But there is a long time to save the text into the db.
If you have small php resources on your server it do´t run (max. execution time and ram).
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Re: Next bug Found...
Did You saved the article in WysWig and whole article saved ok ??
Re: Next bug Found...
Yes it is.
I can see the last line in frontend:
1) Niniejsza ustawa dokonuje w zakresie .....
I can see the last line in frontend:
1) Niniejsza ustawa dokonuje w zakresie .....
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Re: Next bug Found...
A sorry, I have stored the text into a db where the column "acontent_html" in table "phpwcms_articlecontent" has the Datetype "MEDIUMTEXT".
Default the columns "acontent_html" and "acontent_text" have the Datetype "TEXT".
TEXT: max. 65.535 characters
MEDIUMTEXT: max. 16.777.215 characters
Your text has a lenght around 470.000 characters
Two solutions:
1. Cut the text and put it down in several CPs.
2. Change your Datetype of the columns in db:
For wysiwyg text:
For plain text:
I think it slows down your db performance a little bit.
Knut
Default the columns "acontent_html" and "acontent_text" have the Datetype "TEXT".
TEXT: max. 65.535 characters
MEDIUMTEXT: max. 16.777.215 characters
Your text has a lenght around 470.000 characters
Two solutions:
1. Cut the text and put it down in several CPs.
2. Change your Datetype of the columns in db:
For wysiwyg text:
Code: Select all
ALTER TABLE `phpwcms_articlecontent` CHANGE COLUMN `acontent_html` `acontent_html` MEDIUMTEXT NOT NULL AFTER `acontent_redirect`;
Code: Select all
ALTER TABLE `phpwcms_articlecontent` CHANGE COLUMN `acontent_text` `acontent_text` MEDIUMTEXT NOT NULL AFTER `acontent_title`;
Knut
>> HowTo | DOCU | FAQ | TEMPLATES/DOCS << ( SITE )
Re: Next bug Found...
So I will I'm going to cut the article in to fiew pices thanx