Problem installing Tall Stack Preset in laravel 9 - preset

I have been trying to install laravel Tall Preset and I run these issues that I can't find my out of it. Please who can help with this? The Problem is bellow
enter image description here
I have been trying to install laravel Tall Preset and I run these issues that I can't find my out of it. Please who can help with this? The Problem is bellow

I was installing this package with laravel 9 and it seems it has not been updated. So it is not compatible with laravel 9 but works perfectly with laravel 8

Related

Ho Do I Restart Sitecore Server From Code?

We have a requirement to install Sitecore packages programmatically from a custom admin page. The package installation is working but once the package is installed I wanted to restart the Sitecore server from code.
Sitecore.Install.Installer installer = new Sitecore.Install.Installer();
I tried with installer.ExecutePostStep but not sure what action I need to provide to this function.
If anyone has done it before Please help .
Basically I wanted to execute the functionality from code what the two below check boxes are doing when we do manual installation.
The easiest thing will be to restart the Sitecore's application pool by a Restart-Application PowerShell command.
Find more details here.

Issue while configuration oracle apex + ords + tomcat 9

I already configured Ords 20.0 with tomcat 9 , it works fine but some icons not come properly and got error message .
There is a script that you're missing to load the images.
Double check the installation guide. And if it's an upgrade you also need to run the script.
That combo of versions work fine for me.
After paste the images in route /i/. Run this command
java -jar ords.war validate

sitecore 9 installation failed on task 11 webdeploy Method not found WebDeployEventWriter EventWriteVerbose

I am getting below error while installing sitecore 9.0 update 2 on task 11 .
After troubleshooting I came to know that I had install web deploy 4 which is not supported to SIF 1.2.1
I uninstall and reinstall version 3 problem got resolved.
Installed Web Deploy in
Visual Studio before to run installtion script.
Use the search box to search following tools and add as depicted in below screenshot.

Generating CentOS image for Openstack Ironic Boot Failure

I am trying to create a custom CentOS image to be used as an image for Openstack Ironic. I am following the guide here: https://docs.openstack.org/image-guide/centos-image.html. I created the image, and deploy it on my baremetal server. On the ironic side it seems that it has successfully 'dd' the image into the server. But when the server boots up, it can't find any of the partitions with the error /dev/disk/by-uuid/XXXX does not exist. I am able to boot it to rescue mode, but I am clueless on what to do to debug it.
I also used the same procedure to deploy custom Ubuntu Image, and it seems to work perfectly fine. Does anyone have any suggestions to solve this?
Okay, after much tinkering, I have found the problem. This is more of a CentOS7 problem than an openstack problem.
I have found the kickstart script that generates the CentOS cloud build (https://github.com/CentOS/sig-cloud-instance-build/blob/master/cloudimg/CentOS-7-x86_64-GenericCloud-201606-r1.ks). Turns out that they included the dracut-config-generic package which my custom CentOS image did not include. After some google searching work, I found this link (https://www.systutorials.com/docs/linux/man/8-dracut/) stated that:
On RHEL-7 the hostonly mode is the default mode. Generic "non-hostonly" images are created, if the dracut-config-generic rpm is installed. The rescue kernel entry in the bootloader menu is also a generic image.
Without dracut-config-generic, the images can only run in the virtualised environment I set up. So after adding this package, I can successfully deploy it through openstack ironic successfully.
Hope this helps anyone that was trying on this.

Creating a ruby-2.2 on Openshift

Was anyone able to create a Diy cartridge in OpenShift with Ruby 2.2?
If so can you share with us how? Or if there is any plans on having Ruby 2.2 as a default cartridge?
Thanks
Openshift3 changed the way they build cartages, they build cartages from docker images now.
Here is how you can build ruby-2.2 deployment environment:
https://blog.openshift.com/deploying-ruby-applications-on-openshift-3/
Pretty old question provided OpenShift v2 is close to EOL. But I thought to share how I made RAILS 5 app work on v2.
The key points is to:
use the DIY cart
create start/stop/deploy hooks that install ruby 2.3 by rvm, etc.
possibly use alternative gems
But too long to paste all scripts here. It involves a hack or two to make RVM happy. I'd suggest looking at last commit of this branch to see my action-hooks from that commit and possibly borrow from there.
+1 to suggestion to plan on deploying on v3 if possible.