Hi @MajidAli
Just follow the same referencing and configure actions for new project. Your reusable module will work without any issue.
I'm happy that you solved it :)
About the DatePicker;
It's totally a UTC problem, for now we don't support fully auto configured time.
You can check here: https://docs.abp.io/en/abp/latest/Timing
You need to handle UTC time by yourself in your code.
Thanks
Hi @ilitzy,
I've created a new section for File Management Download issue. Waiting your reply, thanks.
https://support.abp.io/QA/Questions/1261/File-Management-download-issue
Original: https://support.abp.io/QA/Questions/1126#answer-289958ec-f23d-03dd-fb1a-39fc2ae130a4
Hi @ilitzy,
I tried to reproduce but could not. It works. To improve communication, I've created a new question for this case.
Can you please send me the HttpApi.Host
project logs when you try to download file.
Hi @serdar.genc
CmsKit images are stored via ABP Blob Storing infrastructure, so you can easily change your blob storing provider.
All CmsKit related BLOBs are using MediaContainer
(namespace: Volo.CmsKit.MediaDescriptors
).
Firstly you should add Blob Storing Azure Provider module to your application, here is the documentation.
Then configure MediaContainer
to use Azure Provider.
Configure<AbpBlobStoringOptions>(options =>
{
options.Containers.Configure<MediaContainer>(container =>
{
container.UseAzure(azure =>
{
azure.ConnectionString = "your azure connection string";
azure.ContainerName = "your azure container name";
azure.CreateContainerIfNotExists = true;
});
});
});
Hi @dicky.tech
The entites of File Management module are not extensible for now.
Hi @ilitzy
I've tested 2 cases (File Management & DatePicker) with 4.3
(not rc) version.
About the File Management, it worked, I could not reproduced. Can you please test it with 4.3
version and if you have problem, please send me a reproducable minimal example.
About the DatePicker, yes there is a problem, we will investigate it. Thanks so much.
Hi @ilitzy
Can you please provide the type of your application. Db, UI, Tiered etc?
Hi,
For now, we don't support to add "Public Website" directly to an existing project via CLI & Abp Suite.
I assume that you want to upgrade your project
4.3.0-xxx
version also.
Here are steps to achive this;
4.3.0.xxx
version with the same options with your existing application.public website
project from the newly created solution to your existing solution.With the 4 step, you can add public website project to your existing solution.
For the Cms-Kit;
Yes you can easily add the Cms-Kit module like all other modules. We are preparing documentation about the Cms-Kit module for now. In a short time, we will publish it.
Hi @kaustubh.kale@ness.com
If you are using directly the Abp Blob storage, you should create a table that you will store the blob name & type. Then you can use the database entity that related with blob.