Error "Class Locale Not found" in Yetiforce Installation - yeti

Good afternoon,
I tried to install the Yetiforce application through cPanel, but when I finished installing it and opened the URL, I got the error: "Class Locale not found"
I have modified the options in php as it says in the official documentation of Yetiforce, but the error continues.
Can someone tell me or explain how to fix it, please?
Thank you.

To resolve your problem you have to install / turn on PHP "intl" extension.
You can find this resolution on their github project page:
Class Locale not found
Overthere you have all server requirements:
List of mandatory libraries you can find below "THIRD PARTY LIBRARIES CONFIGURATION".
https://yetiforce.com/en/knowledge-base/documentation/implementer-documentation/item/web-server-requirements

Related

I cannot install Blazorise in my Blazor server side app. I get the Error that "Microsoft.AspNetCore.Blazor" package could not be find

I have a blazor server side app that is working without problem. (Net Core 3.1). I tried to install Blazorise according the quick start page in https://blazorise.com/docs/start. As my server has no internet access I have downloaded the packages "Blazorise.Bootstrap 0.7.2" and "Blazorise.Icons.FontAwesome 0.9.2.5".
I can install the "Blazorise.Icons.FontAwesome" without Error. But if I try to install "Blazorise.Bootstrap" I get the Error
"NU1101: Unable to find package Microsoft.AspNetCore.Blazor. No packages exist with this id in source(s): Microsoft Visual Studio Offline Packages, Package source"
I cannot find any package like "Microsoft.AspNetCore.Blazor". What should I do now?
Update1:
I have found a package like "Microsoft.AspNetCore.Blazor.Templates 3.1.0-preview4.19579.2" but if I try to install I get Error
"Package 'Microsoft.AspNetCore.Blazor.Templates 3.1.0-preview4.19579.2' has a package type 'Template' that is not supported by project 'WebApplication7'"
I had some problmes at the beginning with updateing NetCore3.1 to Net6.0 But at the end I fixed them. So I could install Blazorise's last version without problem.
Thanks for the comments, suggesting that.

Angular project is compiling successfully but has many errors in html file

I use Angular, and ABP, and I installed npm packages. The project was compiled successfully and the page was opened but there are so many errors occurred. Especially there are many irrelevant errors from each other in the HTML file. I don't know the reason why this is occurring. Could someone tell me, please?
I solve the problem by updating the Angular Language Services Extension (v14.0.1). You can press Ctrl+Shift+X and then find the Angular Language Services.

How to correct install and use plugin installed via composer

I installed a cakephp 3 app via composer from the root of my website c:wamp/www/my_app, and I developed untill i need to implement acl.
I installed the acl plugin for cakephp 3 via composer for the same path c:/wamp/www/myapp and i configured it, was everything well, but when i test the implementation of acl, i get the following error:
Missing Component, Create the class AclComponent below in file: src\Controller\Component\AclComponent.php
and seems to be true, theres no such file in the above location, instead the file is in vendor/cakephp/acl/src/controller/component.
Was investigating and i find that composer doesnt install plugins in a cake default path, theres many articles about, but how doi correct my installation? I already did all the stuff to implement the access control lists.
Thanks in advance error screenshot

Mysql-dev for mac os

I'm installing sphinx for my macbook pro but I failed when I ran "sudo make", it generate the following error.
error: mysql.h: No such file or directory.
I navigate throw the web searching for a solution & the solution was to setup mysql-devel.
The new problem is that I can't find it for mac?? what shall I do?
You can use the Fink package management system to install mysql-dev. There is some getting started information here for fink. It may seem like a roundabout way to get things installed but in the long term it will pay dividends.
Good luck,
Chris

What is the reason for the error message "Library not loaded: libmysqlclient.18.dylib"?

I have no experience working with Perl, and I'm trying to run the geo_to_mysql.pl program for a project I'm working on. I made no modifications to the program other than the database, username, password and file directory path in the first few lines.
When running the program, I keep getting this error:
install_driver(mysql) failed: Can't load '/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/DBD/mysql/mysql.bundle' for module DBD::mysql: dlopen(/Library/Perl/5.10.0/darwin-thread-multi-2level/auto/DBD/mysql/mysql.bundle, 1): Library not loaded: libmysqlclient.18.dylib
Referenced from: /Library/Perl/5.10.0/darwin-thread-multi-2level/auto/DBD/mysql/mysql.bundle
Reason: image not found at /System/Library/Perl/5.10.0/darwin-thread-multi-2level/DynaLoader.pm line 207.
at (eval 7) line 3
Compilation failed in require at (eval 7) line 3.
Perhaps a required shared library or dll isn't installed where expected
I've made sure that I installed the DBD required for MySQL from CPAN, so I don't think that's the issue. Can anyone shed some light on this issue?
It sure sounds like you might want to read this blog post:
http://probably.co.uk/problems-installing-dbdmysql-on-os-x-snow-leopard.html
The issue seems to be that the mysqlclient dynamic library doesn't have path information in it. You need to manaully fix this (as the post above notes).
One of the cheaper solutions is to symlink or copy the libmysqlclient library to /usr/lib.
Hope this helps anyone looking for this question in the future.
The DBD::mysql module needs access to the MySQL client libraries in order to work. I'm surprised that DBD::mysql even installed without them being on your system. How did you install the DBD::mysql module?