Novosibirsk
Account created on 10 February 2008, almost 17 years ago
#

Recent comments

🇷🇺Russia Andrew Answer Novosibirsk

My Varbase installation breaks at this step too. I patch this:
docroot/modules/contrib/varbase_editor/includes/updates/v10.inc:

function varbase_editor_update_100002() {
//AFTER
        $editor_data = $editor_config->get();
//ADD
        // Fix null uuid.
        if ($editor == 'editor.editor.full_html') {
          $editor_data['uuid'] = \Drupal::service('uuid')->generate();
        }

After this the 100003 doesn't fire error with NULL uuid.

🇷🇺Russia Andrew Answer Novosibirsk

Thank you, @seonic,

bug is fixed in 1.0.5 version!

🇷🇺Russia Andrew Answer Novosibirsk

If patch doesn't applies, convert CRLF to LF line endings in the .info.yml file, this helps.

🇷🇺Russia Andrew Answer Novosibirsk

Also, you need curl PHP extension to make this module work.
Anyway, there is no answer from you, i was decided to close the issue.

🇷🇺Russia Andrew Answer Novosibirsk

@MukhtarM please give me more info for your problem. What version of module/Drupal do you have? Looks like you don't configure module right.

The 6.x version of module is very old (from 2012 year, 12 years ago). I don't sure that this version worked well with Drupal/MediaWiki/PHP/other.

For 7.x version you need to enter API URL in the first field ("http://[your wiki domain]/w/api.php" for example), and "/w/$1" in the second field.

Also, read module's README.txt for additional information.

🇷🇺Russia Andrew Answer Novosibirsk

Fixed in v1.0.3.

🇷🇺Russia Andrew Answer Novosibirsk

See the v1.0.3 README:

"This module takes file URLs from your target DB, change the domain to domain from settings and use that URL as a file source, so source files for sync should be available to your site via HTTP(S) protocol."

Your files are not accessible, or already synced, what's why you don't see the button.
If this is not your case, can you provide additional information?

🇷🇺Russia Andrew Answer Novosibirsk

+1 to release this feature in the new module version.

🇷🇺Russia Andrew Answer Novosibirsk

I got all these errors already after installation when I filled site with a content.

🇷🇺Russia Andrew Answer Novosibirsk

Hello l1fesxff,

yes, this module does not allow to read route by anonymous users. You need to use Key Auth module to create API key and then use it in the query/header for route authentication. The reason of this is because of this module usually used on the "decoupled" Drupal sites i.e where frontend is an isolated application (written on Vue, React or some other frontend frameworks), and Drupal as the backend.

🇷🇺Russia Andrew Answer Novosibirsk

Problem is here (taxonomy_manager.admin.inc, line 1382):

[, , $bundle] = entity_extract_ids('taxonomy_term', $entity);

It is not supported in PHP 7.0.x.

You should rewrite it as

$ar = entity_extract_ids('taxonomy_term', $entity);
$bundle = $ar[2];
🇷🇺Russia Andrew Answer Novosibirsk

Can we have a list of entity links instead of list of strings? It would be very useful too.

🇷🇺Russia Andrew Answer Novosibirsk

Tested on D9.5.2 and patch works. RTBC for this 10+ years-old (!) issue.

🇷🇺Russia Andrew Answer Novosibirsk

Find another problem, missed @.

Production build 0.71.5 2024