bobhaha
Forum Replies Created
-
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..">Forum: Fixing WordPress
In reply to: Permission Error During time of Installing any PluginThis 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=enforcingto
SELINUX=permissiveAfter 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.
Forum: Fixing WordPress
In reply to: WordPress, Nginx, CentOS 7, PHP-FPM – No autoupdate!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=enforcingto
SELINUX=permissiveAfter 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!