17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 661 Views |
-
Pages not creating

1 October 2008 at 12:34am
Hi, I have a strange bug on a 2.2 silverstripe install
the bug occurs on one server and cannot be replicated when I recreated the database...
it is the following : pages are not creating when I click OK on the admin
the interface just ignores my click... How can I sort that out ?
-
Re: Pages not creating

2 October 2008 at 8:13am
Hi, I find that removing some code I had added to my Page.php Page_Controller init function fixes the page creation error
I was trying to get the page to display the "fr" meta language in headers, using session :
class Page_Controller extends ContentController {
function init() {
parent::init();
Requirements::themedCSS("layout");
Requirements::themedCSS("typography");
Requirements::themedCSS("form");
Session::set('currentLang', 'fr');
}
}I have two questions for core developers
1. How can I safely set up my meta language for display ?
2. why does the session currentLang value affect page creation action while not affecting page duplication ?tough!!!
| 661 Views | ||
|
Page:
1
|
Go to Top |

