Activities of "pvala"

Hello, my email is pvala@g1.health

  • ABP Framework version: v7.3.2
  • UI Type: Angular
  • Database System: EF Core (MySQL) / MongoDB
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:
  • We want to customize the login page of our application. We want that we can provide different UIs for different clients with branding. The backend would be same for all the clients, but the UI should be dynamic according to the client. How can we achieve that? I went through the following document to replace the login component https://docs.abp.io/en/abp/2.9/How-To/Customize-Login-Page-MVC and here ABP has provided the link to the source code. I tried to implement that code, but looks like this is the older version of the code. Can you provide me the latest code for the login component, where I can manipulate the fields, because in the current code I couldn't find the Tenant and Captcha fields to edit, or if there is another way to modify those fields, guide me how to do it.
  • ABP Framework version: v7.3.2
  • UI Type: Angular
  • Database System: EF Core (MySQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

When we create a Tenant, it creates an admin user by default with all the permissions being granted to that Tenant admin user. Is there a way through which I can assign a specific role to that admin user while the creation of the Tenant? Also, I want a way in which only few of the permissions should be visible to that tenant admin user to be modified. For example, I have a form wizard, which is used to setup the new organizations in the application. I want a way in which only the host user should be able to use that form and only the host user should be allowed to see the form permissions and that permission should not be visible to the admin user of any tenant.

Hi,

Yes, I am getting these errors while clicking on the File Management.

Hello, thanks for the response and the refunded credit. What would be the estimated time for the next version?

Check the docs before asking a question: https://docs.abp.io/en/commercial/latest/ Check the samples, to see the basic tasks: https://docs.abp.io/en/commercial/latest/samples/index The exact solution to your question may have been answered before, please use the search on the homepage.

If you're creating a bug/problem report, please include followings:

  • ABP Framework version: v7.2.2
  • UI type: Angular
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): yes Identity Server Separated (Angular)
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

I followed the steps mentioned in the below URL to add the File Management module in our project https://docs.abp.io/en/commercial/latest/modules/file-management

After following all these steps, I tried to Upload a file. But when clicking on the "Upload File" button, nothing happens. There should be a modal opening up to select the file to upload, but it's not opening.

Steps followed to add the File Management Module :

  1. Added File Management module in the Administration service using ABP Suite (Added as a package)

  2. Installed and configured the @volo/file-management npm package in Angular

  3. Added the following code to configure Blob Storage in the AdministrationServiceApplicationModule.cs file

     Configure<AbpBlobStoringOptions>(options =>
     {
         options.Containers.Configure<FileManagementContainer>(c =>
         {
             c.UseFileSystem(fileSystem =>
             {
                 fileSystem.BasePath = "<I have put the file path here>";
             }); // You can use FileSystem or Azure providers also.
         });
     });
    
  4. After that I seeded the data using DB Migrator and the following tables were created in administration database fmdirectorydescriptors fmfiledescriptors

  5. Then I configured the path for file management in angular project

  6. After following all these steps, I ran the project. Clicked on File Management, I was able to create folders, but when clicking on the Upload File button, nothing happens. Can you help me what I might be missing?

Showing 141 to 146 of 146 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11