0

I am having a bit of an issue with a particular page on my wordpress site. Because of the design, the page is quite large in size as it has multiple internal tabs etc etc. The trouble is that all of a sudden I stopped being able to add content. Litterally as soon as you saved the page it just cuts off the content.

The problem is not content related as I have tried it with just plain ol' text and the same thing happens. I have searched like mad for similar issues to no avail.

So far I have re-installed wordpress, checked all plugins, checked that it isn't a theme based issue. Interestingly under a wordpress.com hosted blog, I am able to add over the 64kb limit no problem so I immediately went to my hosting provide. They have been absolutely useless and simply said that there are no errors showing up server side.

Through research I have heard people talking about BLOBS and MEDIUMBLOBS but im not really too sure how to manipulate MySQL settings.

Anyone that could point me in the right direction would be greatly appreciated.

4

2 に答える 2

1

助けてくれてありがとう。

suhosin phpスクリプトまで追跡することができました。suhosin.post.max_value_length を確認するように勧められました。変数。値を設定した 64k の 3 倍に上げても、違いはありませんでした。とはいえ、ホストにスクリプトをオフにするように依頼したところ、ビジネスに戻りました!

于 2012-08-15T16:09:34.623 に答える
0

テーブル wp_posts (MySQL の場合 - PhpyMyAdmin で確認するのが最も簡単です) で、「post_content」と「post_content_filtered」のフィールド タイプを確認します。どちらも、4GB の投稿を許可する「ロングテキスト」である必要があります。

それらが「ロングテキスト」でない場合は、タイプを「ロングテキスト」に変更するだけで正しいはずです。(また、WordPress の最新バージョンを使用していることも確認してください。かなり前に更新されており、非常に古いバージョンを使用している可能性があります!)

それらが「ロングテキスト」の場合、おそらく独自のバージョンのデータを別のテーブルに保存するプラグイン、または途中で強いものを切り捨てるプラグインが必要です。問題が解決するまでプラグインを 1 つずつ無効にしてから、プラグインの開発者に確認してください。

于 2012-08-15T01:20:51.327 に答える