🔴 January 2024 Alert: Forum support inactive!
New forum registration are currently closed.
Use GitHub discussions
.

    UVdesk

    • Login
    • Search
    • Recent
    1. Home
    2. bansalvaish
    3. Topics
    • Profile
    • Following 0
    • Followers 3
    • Topics 13
    • Posts 31
    • Best 2
    • Controversial 0
    • Groups 1

    Topics created by bansalvaish

    • bansalvaish

      Solved Solution of Common Issue facing while uvdesk Installation
      Bug Report • • bansalvaish

      5
      0
      Votes
      5
      Posts
      1430
      Views

      peopleinside

      @bansalvaish Great, happy to hear that! ✌

    • bansalvaish

      Solved Upgrade existing project to the latest version of UVDesk
      General Discussion • • bansalvaish

      10
      0
      Votes
      10
      Posts
      1453
      Views

      peopleinside

      @slawn
      Not only public/assets but the full public folder need to be replaced as mentioned here

    • bansalvaish

      Solved getting memory limit issue while installing uvdesk
      Bug Report • • bansalvaish

      2
      0
      Votes
      2
      Posts
      637
      Views

      Sanjeev

      @bansalvaish

      By default, a PHP script can allocate up to 128 megabytes of memory.

      To change this limit, use a text editor to modify the memory_limit directive in your php.ini file. For example, to allow scripts to allocate a maximum amount of 256 megabytes of memory, use the following setting:

      memory_limit = 256M

    • bansalvaish

      Solved How to configure Mailbox with these mail service Outlook/Office 365, Gmail
      General Discussion • • bansalvaish

      4
      1
      Votes
      4
      Posts
      1412
      Views

      Sanjeev

      @gustavowoltmann

      You should connect us on forum and GitHub Repository.

      You will get the solutions for your problem or you can directly discuss here on our forum.

    • bansalvaish

      Solved Mention steps to debugging the IMAP is working or not?
      General Discussion • • bansalvaish

      4
      0
      Votes
      4
      Posts
      931
      Views

      peopleinside

      I hope in the future coding like that will be no more necessary as UVdesk will implement check directly in the UI.
      https://github.com/uvdesk/community-skeleton/issues/413

    • bansalvaish

      Solved How to add custom translation in UVDesk
      General Discussion • • bansalvaish

      4
      0
      Votes
      4
      Posts
      19908
      Views

      D

      🙂 Thanks to guide

    • bansalvaish

      Solved How to Setup Mailbox?
      General Discussion • • bansalvaish

      6
      0
      Votes
      6
      Posts
      1295
      Views

      E

      Re: How to Setup Mailbox?

      Setting up a mailbox or using Swift Mailer to send emails typically involves a series of steps. While I can provide you with a general guide, please keep in mind that specific steps and configurations might vary based on your email provider, server environment, and programming language. Below is a simplified guide to help you get started:

      Setting Up a Mailbox:

      Choose an Email Provider: Decide on an email provider that suits your needs. Popular choices include Gmail, Outlook, Yahoo Mail, and custom domain email providers. Create an Email Account: Sign up for an email account with your chosen provider. You'll need to provide a username, password, and other relevant information. Configure Email Client: Once your account is created, you can access your mailbox through a webmail interface or configure an email client such as Outlook, Thunderbird, or Apple Mail to access your mailbox. Incoming and Outgoing Server Settings: Your email provider will have specific incoming (IMAP or POP3) and outgoing (SMTP) server settings. These settings are crucial for receiving and sending emails. You'll need the server hostname, port numbers, and security settings. Security and Authentication: Configure SSL/TLS settings for secure communication. Ensure you have the correct authentication settings (username and password) for both incoming and outgoing servers.

      Using Swift Mailer:

      Install Swift Mailer: If you're using a programming language like PHP, you can download and install Swift Mailer using Composer (PHP package manager) or by including the required files manually. Include Swift Mailer in Your Project: In your code, include the necessary Swift Mailer classes and components. Swift Mailer simplifies the process of creating and sending emails using various transports, like SMTP or Sendmail. Configure Transport: Set up the transport mechanism you'll use to send emails. This could be an SMTP server provided by your email hosting or a local sendmail server. Create and Send Email: Use Swift Mailer's classes to create an email message. You can set the sender, recipient(s), subject, body, attachments, and other email details. Send the Email: Once the email is created, use Swift Mailer's methods to send the email using the configured transport.

      Here's a simplified example of Swift Mailer usage in PHP:

      php

      require_once 'vendor/autoload.php'; // Include Swift Mailer autoload file

      // Create the Transport
      $transport = new Swift_SmtpTransport('smtp.example.com', 587);
      $transport->setUsername('your_username');
      $transport->setPassword('your_password');

      // Create the Mailer using your created Transport
      $mailer = new Swift_Mailer($transport);

      // Create a message
      $message = new Swift_Message('Subject');
      $message->setFrom(['your_email@example.com' => 'Your Name']);
      $message->setTo(['recipient@example.com' => 'Recipient Name']);
      $message->setBody('Hello, this is the body of the email.');

      // Send the message
      $result = $mailer->send($message);

      Remember to replace placeholders with your actual credentials and settings.

      For more comprehensive and specific guidance, refer to Swift Mailer's official documentation and guides tailored to your programming language and use case. Additionally, consult your email provider's documentation for any specific settings required to use their SMTP server.

    • bansalvaish

      Solved How to Add a agent?
      Technical Help • • bansalvaish

      2
      0
      Votes
      2
      Posts
      1425
      Views

      Sanjeev

      @bansalvaish
      You can simply login to member panel.
      Now Search Agents in dashboard and click on Agents.
      You will see a option to add a New Agent here.

    • bansalvaish

      Solved Is the public folder required after uvdesk install ?
      Technical Help • • bansalvaish

      3
      0
      Votes
      3
      Posts
      1635
      Views

      bansalvaish

      It's worked ..
      Thankyou so much

    • bansalvaish

      Solved Request Feature: Pre Installation extension description on web installer
      Bug Report • • bansalvaish

      3
      0
      Votes
      3
      Posts
      1445
      Views

      bansalvaish

      Yeah, I got this newly added feature.

    • bansalvaish

      Solved File name not show when hover over the attached files in ticket at customer panel
      Bug Report • • bansalvaish

      4
      0
      Votes
      4
      Posts
      1247
      Views

      peopleinside

      @bansalvaish Great to know, thank you for the feedback! 👍

    • bansalvaish

      Solved Datepicker Layout not set in Broadcast app
      Bug Report • • bansalvaish

      4
      0
      Votes
      4
      Posts
      1315
      Views

      peopleinside

      @bansalvaish I'm happy to read the issue was resolved.
      Thanks for reporting it!

    • bansalvaish

      Solved Dashboard Search bar is hidden back to left menu bar
      Bug Report • • bansalvaish

      2
      0
      Votes
      2
      Posts
      1106
      Views

      admin

      Hi,

      The issue is resolved.

      Thanks