How do I change the phpmyadmin link?

Maybe..

I need this too. I think the evolution skins use js files and seems like all templates are packed in js files

#Before you proceed, please look at my second post below, I forgot to put the information. Then you can follow this one:

You need to change this code:

[̶C̶O̶D̶E̶]̶ ̶a̶s̶s̶e̶t̶s̶/̶p̶a̶g̶e̶s̶/̶7̶5̶.̶j̶s̶ ̶[̶/̶C̶O̶D̶E̶]̶

=== update ===

The new path for directadmin 1.53 is
Code:
assets/pages/76.js

First copy all the un-indented codes (minified) and format it using js script online like https://beautifier.io/

Then look at the code line 717, we need to change the attribute here:

719.JPG

Then put a new attribute: target:"_blank"

The code should look like this:

Code:
}), e._v(" "), a("ui-tokenized-link", {
      attrs: {
               slot: "bottom:links",
               bullet: "",
               href: "|WEBAPPS_SSL|://|HOSTNAME|/phpmyadmin",
	       target:"_blank"
 },

It will work. Tested.
 
Last edited:
BTW, make sure that you make the copy of the theme to enable future update, example cp evolution evolution_custom (any name u want). then edit the evolution_custom instead of evolution. Then the following also need to be changed for menu:

in
1) assets/app.js

Find strings "Customize Evolution Skin" and change the strings with other name like "Customize Evolution Custom Skin". Do this so, you won't be confused with the original skin.

in
2) lang/dictionary.pot

at line 2658, change the following string

Code:
#: ./src/js/pages/reseller/customize-skin/index.vue:1
#: src/js/modules/navigation/reseller.js:95
msgid "Customize Evolution Skin"
msgstr ""

to

Code:
#: ./src/js/pages/reseller/customize-skin/index.vue:1
#: src/js/modules/navigation/reseller.js:95
msgid "Customize Evolution Custom Skin"
msgstr ""
 
Back
Top