I have installed the tb_sirate_starter theme and I can not change any of the display settings through the UI. For example, I have tried changing the layout and the skin color but the changes do not take effect after you save. How do I fix this issue so I can use the UI settings?

Comments

pattyw’s picture

Title: Thedisplay settings for the Tb Sirate theme are not working » The display settings for the Tb Sirate theme are not working
pattyw’s picture

I figured this one out, it was the PHP Suhosin settings. I ended up adding the following to my .htaccess file and it allowed to change my theme's settings

suhosin.post.max_array_index_length = 256
suhosin.post.max_totalname_length = 65535
suhosin.post.max_vars = 1024
suhosin.request.max_array_index_length = 256
suhosin.request.max_totalname_length = 65535
suhosin.request.max_vars = 1024

I used this link to determine what Suhosin setting to set.
https://drupal.org/node/2203345#comment-8511621