Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bobhaha

    (@bobhaha)

    After staring at the screen for a few more minutes, I figured out the solution 😅

    I replaced the following code on line 205 of wp-content>plugins>dokan-lite>templates>products>edit-product-single.php

    <?php dokan_post_input_box(
    $post_id,
    'post_title',
    [
    'placeholder' => __( 'Product name..', 'dokan-lite' ),
    'value' => $post_title,
    ]
    );
    ?>

    With the following:

    <input type="text" name="post_title" id="post_title" value="<?php echo $post_title; ?>" maxlength='180' class="dokan-form-control" placeholder="Product name..">

    This is a reoccurring issue and the support community are hopeless in helping others to fix this.

    First thing to do is make sure your wordpress directory and all folders/files are owned by the webserver client example apache or nginx

    You do this by using this code…

    chown nginx.nginx -R .

    Next edit the /etc/sysconfig/selinux file by changing

    SELINUX=enforcing

    to

    SELINUX=permissive

    After you set this to permissive, remember to restart your server

    This will allow SELinux to print warnings instead of enforcing them.

    Your plugin and theme auto-updates should work now.

    Thread Starter bobhaha

    (@bobhaha)

    Well I worked it out on my own… Hope this helps someone else..

    The issue was Selinux… it was just making horrible issues for me.

    The way I fixed it is by editing the /etc/sysconfig/selinux file and changing

    SELINUX=enforcing

    to

    SELINUX=permissive

    After you set this to permissive, remember to restart your server

    This will allow SELinux to print warnings instead of enforcing them.

    Now I’m up and running!

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