Just don’t upload the plugins folder on update.Hello, please tell me how to update to keep installed plugins? When I update, every time all plugins and PRO blocks are erased.
Just don’t upload the plugins folder on update.Hello, please tell me how to update to keep installed plugins? When I update, every time all plugins and PRO blocks are erased.
I fixed the language issue for myself but it was because of an error in my git setup. It looks like it may be caused by using an older version than required for MySQL
I had files that weren't overwritten with the new ones from the update.Comment did you make?
you mean the PHP version?
I tried to redo it but it still doesn't work .. which PHP version you used? Wouldn't that be the archive that has a concern?I had files that weren't overwritten with the new ones from the update.
But if you are using an incorrect MySQL version or something like MariaDB the /update queries can throw errors.
I'm on 7.4, but if it worked for you before the update the PHP version shouldn't be the issue.I tried to redo it but it still doesn't work .. which PHP version you used? Wouldn't that be the archive that has a concern?
@BlakenFist has explained this few times and it has been discussed over a hundred times.Hi thanks for the latest version but it does not work and needs a license, please if anyone can nullify this script thank you
<select name="type" id="type" class="form-control form-control-sm">
<option value=""><?= language()->global->filters->all ?></option>
<?php foreach(['mail'] as $value): ?>
<option value="<?= $value ?>" <?= isset($data->filters->filters['type']) && $data->filters->filters['type'] == $value ? 'selected="selected"' : null ?>><?= language()->link->biolink->blocks->{$value} ?></option>
<?php endforeach ?>
</select>
<select name="type" id="type" class="form-control form-control-sm">
<option value=""><?= language()->global->filters->all ?></option>
<option value="mail" <?= isset($data->filters->filters['type']) && $data->filters->filters['type'] == 'mail' ? 'selected="selected"' : null ?>><?= language()->link->biolink->blocks->mail ?></option>
<option value="phone_collector" <?= isset($data->filters->filters['type']) && $data->filters->filters['type'] == 'phone_collector' ? 'selected="selected"' : null ?>><?= language()->link->biolink->blocks->phone_collector ?></option>
</select>
Hii found 1 more bug on data collector page
they forget add Type phone collector. Can fix easy too
![]()
Before:
HTML:<select name="type" id="type" class="form-control form-control-sm"> <option value=""><?= language()->global->filters->all ?></option> <?php foreach(['mail'] as $value): ?> <option value="<?= $value ?>" <?= isset($data->filters->filters['type']) && $data->filters->filters['type'] == $value ? 'selected="selected"' : null ?>><?= language()->link->biolink->blocks->{$value} ?></option> <?php endforeach ?> </select>
After
HTML:<select name="type" id="type" class="form-control form-control-sm"> <option value=""><?= language()->global->filters->all ?></option> <option value="mail" <?= isset($data->filters->filters['type']) && $data->filters->filters['type'] == 'mail' ? 'selected="selected"' : null ?>><?= language()->link->biolink->blocks->mail ?></option> <option value="phone_collector" <?= isset($data->filters->filters['type']) && $data->filters->filters['type'] == 'phone_collector' ? 'selected="selected"' : null ?>><?= language()->link->biolink->blocks->phone_collector ?></option> </select>
have to pay attention to updatehave you figured out how to fix the update error? update from v14 to v15 do not work
thank you i hope everything is perfect nowthemes/altum/views/data/index.php
themes/altum/views/data/index.php