New day new challenge :) If you have a site on GoDaddy's shared hosting you get cPanel and phpMyAdmin but no ssh which is sad but that's shared hosting. Resetting the password on Drupal 8 is possible but not easy.
Use the php script on this page that you need to upload to your root of the site. I copied the script here as well.
Create a file name with hard to guess name like "mypassword.php" :)
<?php
use Drupal\Core\DrupalKernel;
use Symfony\Component\HttpFoundation\Request;
if (pathinfo(__FILE__, PATHINFO_FILENAME) == 'admin-pass-reset') {
die('Please change your file name to a random string to continue');
}
// Boot Drupal.
$autoloader = require __DIR__ . '/autoload.php';
$request = Request::createFromGlobals();
$kernel =…
Good thing about #Arch Linux is that in a process of customising it and making it work the way you want you end up making your own custom distro. Today let us learn how to create hotkeys to run shell scripts and quickly open any application with custom parameters. ?
https://youtu.be/sTVTm9D4rYQ
Did you get a chance to try Jira expressions yet? Let us learn how to add a workflow condition using them along with #scriptrunner for Jira on Cloud. https://youtu.be/DeVNDOUbGzE
Today let us learn how to use Scripted condition on Jira Cloud.
Check whether the issue has an attachment of type pdf.
issue.attachments.filter(attachment => attachment.mimeType == 'application/pdf').length > 0
Check whether the issue has comments.
issue.comments
.length > 0
Learn about Jira expressions hereand take a look at some example conditions here.
Do you know that you can host a static website for free on #Gitlab? It super easy and fun. You can also create a #pipeline to deploy your site automatically from new commits. Want to learn how to do it? https://youtu.be/3O3fMVNqOJ0
P.S - I use #Emacs #OrgMode to quickly publish my notes to my blog with CI/CD pipelines. Fun stuff.