Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter pseudovin

    (@pseudovin)

    Solved by creating these tables:

    CREATE TABLE wp_bwfan_automation_complete_contact (
    ID bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    cid bigint(20) unsigned NOT NULL,
    aid bigint(10) unsigned NOT NULL,
    event varchar(120) COLLATE utf8mb4_unicode_520_ci NOT NULL,
    s_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Start Date',
    c_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Completion Date',
    data longtext COLLATE utf8mb4_unicode_520_ci,
    trail varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'Trail ID',
    PRIMARY KEY (ID),
    KEY ID (ID),
    KEY cid (cid),
    KEY aid (aid),
    KEY c_date (c_date)
    );

    CREATE TABLE wp_bwfan_automation_contact (
    ID bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    cid bigint(20) unsigned NOT NULL,
    aid bigint(10) unsigned NOT NULL,
    event varchar(120) COLLATE utf8mb4_unicode_520_ci NOT NULL,
    c_date datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Start Date',
    e_time bigint(12) unsigned NOT NULL,
    status tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1 - Active | 2 - Failed | 3 - Paused | 4 - Waiting | 5 - Terminate | 6 - Retry',
    last bigint(10) unsigned NOT NULL DEFAULT '0',
    last_time bigint(12) unsigned NOT NULL,
    data longtext COLLATE utf8mb4_unicode_520_ci,
    claim_id bigint(20) unsigned NOT NULL DEFAULT '0',
    attempts tinyint(1) unsigned NOT NULL DEFAULT '0',
    trail varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL COMMENT 'Trail ID',
    PRIMARY KEY (ID),
    KEY ID (ID),
    KEY cid (cid),
    KEY aid (aid),
    KEY e_time (e_time),
    KEY status (status),
    KEY claim_id (claim_id)
    );

    CREATE TABLE wp_bwfan_automation_contact_claim (
    ID bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    created_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
    PRIMARY KEY (ID)
    );

    CREATE TABLE wp_bwfan_automation_contact_trail (
    ID bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    tid varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL COMMENT 'Trail ID',
    cid bigint(12) unsigned NOT NULL COMMENT 'Contact ID',
    aid bigint(10) unsigned NOT NULL COMMENT 'Automation ID',
    sid bigint(10) unsigned NOT NULL COMMENT 'Step ID',
    c_time bigint(12) unsigned NOT NULL,
    status tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1 - Success | 2 - Wait | 3 - Failed | 4 - Skipped',
    data varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
    PRIMARY KEY (ID),
    KEY ID (ID),
    KEY tid (tid),
    KEY cid (cid),
    KEY sid (sid),
    KEY status (status)
    );

    CREATE TABLE wp_bwfan_automation_step (
    ID bigint(10) unsigned NOT NULL AUTO_INCREMENT,
    aid bigint(10) unsigned NOT NULL,
    type tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '1 - Wait | 2 - Action | 3 - Goal | 4 - Conditional | 5 - Exit',
    action varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
    status tinyint(1) NOT NULL DEFAULT '0' COMMENT '1 - Active | 2 - Draft | 3 - Deleted',
    data longtext COLLATE utf8mb4_unicode_520_ci,
    created_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
    updated_at datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
    PRIMARY KEY (ID),
    KEY aid (aid),
    KEY type (type)
    );

    (change “wp_” to your WordPress table prefix)

    pseudovin

    (@pseudovin)

    Make sure your SMTP is working. If you use WP SMTP plugin, try the tools to send test email.

    Hi,
    In Woocommerce Product > edit your product > Inventory tab > check “Limit Purchase to 1 items per order”.

    Dashboard > Tutor LMS Settings > Design > turn off “Review” in Page Features.

    Dashboard > Tutor LMS Settings > Advanced > turn off “Enable Tutor Login”…. or (if remain ON) you can use CSS to edit the login/register popup or page.

    Another way, redirect the login/register page to your created page.

    If you create a popup for login/register by using Elementor, you can call the popup when user press the button.

    Dashboard > Tutor LMS Settings > Monetization > turn off “Enabled Guest Mode”

    It’s not a perfect CSV I think, we can’t easily modify the CSV since it have no header. You need to export a sample quiz (with question, answer, and settings) and then duplicate & modify the values.

    For example, the True/False question, has this structure of CSV: (total 3 lines except the first line [settings])
    settings,"Quiz Title","",0,minutes,,3,80,10,,question_pagination,sorting,,200
    question,"Quiz question","<p>Description</p>",true_false,,1.0,1,1,1,1,"Quiz Explanations"
    answer,"True",,1,0,true,0
    answer,"False",,0,0,false,0

    (The answer is True)

    Generally, the structure for one CSV is like this:
    settings,,,,
    question,,,,, >question 1
    answer,,,,
    answer,,,,
    question,,,,, >question 2
    answer,,,,
    answer,,,,
    question,,,,, >question 3
    answer,,,,
    answer,,,,
    ....and so on....

    And every question type have their own structure. Make sure you export all type of question you need.


    To edit, you can use Excel formula, like this:
    =”settings,””Quiz number “&A1&” – My Quiz Title””,””””,0,minutes,,3,80,10,,question_pagination,sorting,,200″

    • This reply was modified 2 years, 2 months ago by pseudovin.

    @mbrsolution Nevermind, I fixed the problem. I turn off “Prevent Hotlinking” option (in my WP setting) and it works now. I never check my audio since I turn this option On :/

    I have the same problem. When entered full URL (which is my local URL and it works on the previous version: e.g. https://mydomain.com/wp-content/uploads/music.mp3) it shows Error 403.

    When I change to “/wp-content/uploads/music.mp3” it shows an error of Invalid URL.

    This is my shortcode:
    [sc_embed_player fileurl=”/wp-content/uploads/2023/12/5.-mao1.mp3″]

    From my experience, you need to set up your SMTP, and make sure it’s working.

    or

    Go to: Admin > WooCommerce > Settings > Advanced > Features > select Posts storage (legacy) option.

    Thread Starter pseudovin

    (@pseudovin)

    Figure it out

    .tutor-dashboard:not(.is-sidebar-expanded) .tutor-dashboard-left-menu {display: block;}

    Thread Starter pseudovin

    (@pseudovin)

    UPDATE: I don’t know why, but the pages normal now

Viewing 12 replies - 1 through 12 (of 12 total)