- Aug 26, 2019
- 142
- 278
- 63
Do not automatically jump after installation, Solution:
Modify install/do_install.php
line 41,
if ($verification || $verification == "verified") {
To
if (!$verification || $verification !== "verified") {
On line 147
function verify_rise_purchase_code($code) {
Enter below
return'verified';
Save and execute the installation wizard.
Modify install/do_install.php
line 41,
if ($verification || $verification == "verified") {
To
if (!$verification || $verification !== "verified") {
On line 147
function verify_rise_purchase_code($code) {
Enter below
return'verified';
Save and execute the installation wizard.