Jump to content

Tech Support

Administrators
  • Posts

    1,815
  • Joined

  • Days Won

    339

Posts posted by Tech Support

  1. These settings at located at your server level. KVS doesn't have yet any settings for emails. We can configure KVS to use 3rd-party email sending service (usually paid like sendgrid.com), in order to do that please create support ticket with your server FTP access and your connection details to 3rd-party emailing service that should be used in KVS. There are no yet setting in KVS admin panel for that.

  2. Messages that are starting with "validation.xxx" are not used in templates directly, they are used in block PHP code based on specific rules.

    On 2/16/2024 at 12:33 PM, snqke said:

    it show for me like this 

    Capturedcran2024-02-16133232.png.dac7dab6dc58f37f23630a3699f803b0.png

    Please create support ticket.

  3. For example this:

    Title;<iframe src="xxxxx"></iframe>;https://domain.com/screenshot.jpg;123

    The fields are as the following:

    1) Title

    2) Embed code

    3) Screenshot

    4) Duration

    These are 4 minimum fields required to create an embed code video in KVS. Other additional fields (such as categories, tags) can be also used in addition to these 4.

  4. 3 hours ago, viper said:

    How?

    Sorry, this is not something we can provide support for. This is standard HTML / CSS task and you can easily google for a how to guide.

    3 hours ago, viper said:

    Why png watermark not clear?

    Can't answer such abstract question. May need to see example what you mean by "not clear", so please create support ticket and we will take a look at your situation.

  5. 1) Yes, this is correct.

    2) Typically you can run many KVS sites on a single server, however in some rare cases your server may have a limit of the number of crons / background processes that can be started. Unlike Wordpress, KVS relies on background processes for doing different set of tasks, and there are common cases when 2-5 KVS processes are being executed at the same time. The more projects you have, the more processes will run. But this problem may only occur if you have some cheap virtual hosting, on dedicated server there are no issues with that.

    • Like 1
  6. First of all you can add an error message into Website UI -> Texts having the following external ID:

    validation.upgrade.not_enough_tokens

    To show a better error message on this.

    To put a link to purchase tokens, you can update Upgrade block template in Website UI -> Global blocks -> Upgrade Access and put your token purchase link as the following:

    {{if !isset($smarty.get.service_id)}}
    <a data-href="{{$lang.urls.upgrade}}?service_id=13" data-fancybox="ajax">Get more tokens</a>
    {{/if}}

    So basically it will open the same popup, but with additional parameter to trigger specific payment processor. The {{if}} condition is needed so that this link doesn't appear when you open another instance of this popup.

  7. This will happen automatically after you do this:

    On 1/18/2024 at 1:45 PM, Tech Support said:

    2) In KVS admin panel go to Settings -> Website settings and modify Video page URL pattern to "video" instead of "videos". Now all your video pages should be using the new URL pattern.

    Maybe with some delay (up to 24 hours) due to caching.

  8. KVS has a maximum daily content deletion limit of 1000 which is set by default in order to avoid accidental or malicious content loss. This limit is set at system level and works regardless on whether the content is deleted by superadmin, site users or other KVS subsystems.

    If you need to massively delete content, you will find the warning on start page after KVS processes 1000 content (videos and albums are both counted here) deletion. In order to increase this limit, you need to modify /admin/include/setup.php file via FTP or server File Manager. This option configures the limit:

    $config['max_delete_daily_total']="1000";

    If you can't find this option in your setup.php file, then you need to add it as a new line with the needed value.

    WARNING: please make sure you have a local backup copy of setup.php file. This is a system PHP file and breaking its syntax may result in KVS stopping working immediately.

  9. You need to select a video format that you want to expose to Google in sitemap. For indexing videos Google wants to be able to download video files, therefore sitemap should provide some downloadable link. This option allows you to choose which video format you want to expose. Typically the smallest possible (e.g. MP4 480p) is fine. If you keep it empty, Google won't index your videos.

    • Thanks 1
×
×
  • Create New...