There you go! It means we need more help! hahaha
I think I found the error.. it's in the Theme setting, one of the keys it's trying to look for is invalid..
Based on the testing in is trying this "ThemeName.0".. i'm still trying to find where the "0" came from
There you go! It means we need more help! hahaha
I think I found the error.. it's in the Theme setting, one of the keys it's trying to look for is invalid..
Based on the testing in is trying this "ThemeName.0".. i'm still trying to find where the "0" came from
Found it.. it's in
/lib/Flux/SessionData.php:
161
162 if (!$this->theme) {
163: $this->setThemeData(Flux::config('ThemeName.0')); <<--- i don't think this is correct
164 }
165
But what should we do? haha no idea here.. Sorry
How did you install it? Did you download the zip file or via git? If via git, an older version can be pulled from the repository.
I'm also trying to do some fixes. I'll post it here if I can may it work.
I downloaded it via git. should I pull an old version to make it work?
HEY AcidSlide! I MAKE IT WORK! I JUST REMOVE
/lib/Flux/SessionData.php:
161
162 if (!$this->theme) {
163: $this->setThemeData(Flux::config('ThemeName.0')); <<--- I REMOVE THE (.0)
164 }
165
SO IT LOOKS LIKE THIS NOW
/lib/Flux/SessionData.php:
161
162 if (!$this->theme) {
163: $this->setThemeData(Flux::config('ThemeName')); <<--- i don't think this is correct
164 }
165
THANK YOU ACIDSLIDE!
BUT AFTER INSTALLATION NOTHING HAPPENS! hahaha FAIL
Hahaha.. after the installation just put back the '0';
$this->setThemeData(Flux::config('ThemeName.0')); <- FluxCP should work again
it's just weird that on installation it doesn't work. I haven't had time doing the patch and validating my fix yet. Might do it next week as I'm swamped with work right now.
I think None. Waiting on this my entire week..haha
Sorry about that, I think the maker is kinda busy (and I'm busy too).
Here is a temporary fix,
Do this on installation:
/lib/Flux/SessionData.php:
161
162 if (!$this->theme) {
163: $this->setThemeData(Flux::config('ThemeName.0')); <<--- I REMOVE THE (.0)
164 }
165
Should look like this:
/lib/Flux/SessionData.php:
161
162 if (!$this->theme) {
163: $this->setThemeData(Flux::config('ThemeName'));
164 }
165
After the installation, it seems nothing has happened, you need to put back the '0' on the theme name:
/lib/Flux/SessionData.php:
161
162 if (!$this->theme) {
163: $this->setThemeData(Flux::config('ThemeName.0'));
164 }
165
And the site should be up after this.