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.
Fixed in 1.0.0.
Thank you, @seonic,
bug is fixed in 1.0.5 version!
If patch doesn't applies, convert CRLF to LF line endings in the .info.yml file, this helps.
andrew answer → created an issue.
This patch rerolled for D10.2.10.
andrew answer → created an issue.
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.
Fixed in v1.0.4
@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.
Rajab Natshah → credited Andrew Answer → .
Andrew Answer → created an issue.
Added D11 compatibility.
Fixed in v1.0.3.
Fixed in v1.0.3.
Fixed in v1.0.3.
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?
Fixed in v1.0.4.
Added D11 compatibility.
Added D11 compatibility.
Added D11 compatibility.
Added D11 compatibility.
Fixed.
Added D11 compatibility.
Fixed in v1.0.1.
Added D11 compatibility in v1.0.1.
Added D11 compatibility in v1.0.3.
+1 to release this feature in the new module version.
I got all these errors already after installation when I filled site with a content.
Andrew Answer → created an issue.
Andrew Answer → created an issue.
Andrew Answer → created an issue.
Fixed in v1.0.6+
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.
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];
Andrew Answer → created an issue.
Andrew Answer → created an issue.
Can we have a list of entity links instead of list of strings? It would be very useful too.
This issue need the tests fixing.
Tested on D9.5.2 and patch works. RTBC for this 10+ years-old (!) issue.
Find another problem, missed @.
Mistyping fixed.
Andrew Answer → created an issue.
Andrew Answer → created an issue. See original summary → .