I can't access the admin area

User avatar
Jay
Master Bludit
Posts: 133
Joined: Mon Feb 11, 2019 8:41 pm

erMarketingDigital wrote: Thu Oct 03, 2019 11:09 pm Edi, enabling bl-kernel / boot / init.php page errors I get this warning

can you tell me how to fix this problem
Are you on a shared webhosting?
The easiest method is to contact helpdesk and ask them to fix your access to session directory, as I doubt you have full access to php settins as a user where you can set the path to session store directory in.user.ini

But if you can at least set the ini variables in php, you can try this approach.
1. create a directory named for example 'sessions' outside of public_html directory
for example
/home/storage/2/fa/69/citadel-brasil1/sessions
2. give this directory full rw permissions (777)
3. set the session path to this dir in bludit before session starts. I'd hit the /kernel/boot/admin.php file and change the
// Session
Session::start();

to
// Session
session_save_path('/home/storage/2/fa/69/citadel-brasil1/sessions');
ini_set('session.gc_probability', 1);
Session::start();


I can't guarantee that it will work. Even if, consider this as a temporary solution, as It is risky to use in security means.
erMarketingDigital
Jr. Bludit
Posts: 9
Joined: Wed Oct 02, 2019 7:21 pm

Hi Jay, I already contacted support of the hosting service yesterday.

Looking elsewhere other software also had the same session problem.

Let's see if they solve it.

But thanks so much for the help!
erMarketingDigital
Jr. Bludit
Posts: 9
Joined: Wed Oct 02, 2019 7:21 pm

Hello, I want to thank you all for your help.

I solved the problem with the hosting service!

I changed php.ini and it worked!

thank you very much!
Post Reply