OpenLitespeed does not apply changes in phpMyAdmin

Nodsert

New member
Joined
Aug 30, 2019
Messages
3
Hello!

I am having a curious problem, with litespeed the default method of accessing phpmyadmin is cookie, instead of http.

I have tried changing the following config.inc.php but it has not worked:

/var/www/html/phpMyAdmin-4.9.0.1-all-languages/vendor/phpmyadmin/config.inc.php

/usr/local/directadmin/custombuild/configure/phpmyadmin/config.inc.php

/var/www /html/phpMyAdmin


But even changing it and restarting the server later, the changes do not apply.

What may be happening?

Thanks.
 
Please give the following a try:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build phpmyadmin

Maybe you have 1 click pma login enabled?
 
That's!

After modifying:

/usr/local/directadmin/custombuild/configure/phpmyadmin/config.inc.php

and do:

Code:
cd /usr/local/directadmin/custombuild
./build update
./build phpmyadmin

Everything works correctly.

Thanks!
 
Please give the following a try:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build phpmyadmin

Maybe you have 1 click pma login enabled?

Hello,
I'm sorry to bother you again. I am trying to apply other settings but it does not apply. It's very strange.

I am modifying the file:

/usr/local/directadmin/custombuild/configure/phpmyadmin/config.inc.php

I launch the commands to build:

Code:
cd /usr/local/directadmin/custombuild
./build update
./build phpmyadmin

But in the file /var/www/html/phpMyAdmin-4.9.0.1-all-languages/config.inc.php it does not save the changes applied to /usr/local/directadmin/custombuild/configure/phpmyadmin/config.inc.php

I am doing something wrong?

Thanks!!
 
"./build update" overwrites that file every time :) custom/ instead of configure/ needs to be used in the path for permanent custom configuration.
 
Back
Top