Questions tagged [dokan]

Microsoft Windows library to program file system drivers in user space Also Dokan is the front end multi-vendor marketplace on WordPress, powered by WC. It helps you to build your own marketplace similar to Amazon.

192 questions
12
votes
2 answers

Convert errno.h error values to Win32 GetLastError() equivalents

I'm writing a layer between a POSIX filesystem, and Windows using Dokan, and need to convert error values of the errno kind (EINVAL, ENOENT, etc.), to the Win32 equivalents you'd receive when calling GetLastError() (such as…
Matt Joiner
  • 112,946
  • 110
  • 377
  • 526
9
votes
1 answer

Does Dokan/Dokan.NET (not) support synchronous I/O?

I created a virtual drive in C# using the Dokan(.NET) library, and it's working quite well. However, when I try to read a file from the drive in another application I get an exception whenever using operations that read synchronously, like…
Andreas Baus
  • 2,556
  • 3
  • 16
  • 21
6
votes
2 answers

Display dokan vendor name on Woocommerce single product pages

With woocommerce I am using Dokan plugin and I am trying to display the vendor name, rating and vendor location on single product pages. I tried this code to display vendor name but no luck: //show store name add_action(…
Raskolt
  • 63
  • 1
  • 1
  • 4
5
votes
1 answer

How stable is dokan sshfs?

People have reported BSOD on windows 7 (64bit) http://dokan-dev.net/en/2009/04/06/the-next-release-of-dokan-library/. For some reason unknown to me, my explorer on winxp sp3 (32bit) gets shaky and at time freezes if I do lots of browsing via doken…
volatilevoid
  • 12,605
  • 4
  • 21
  • 16
5
votes
4 answers

dokan sshfs for windows

I read an article here about dokan sshfs for windows. I want to ask if you know similar software (free or not) in order to access windows partitions from windows. Samba is a always an answer, however I am seeking for something more secure.
cateof
  • 59
  • 1
  • 1
  • 2
4
votes
2 answers

How to fix Dokan to implement a Virtual Drive?

Dokan currently does not create a virtual hard disk for its filesystem (i.e. in Device manager, you dont see another disk drive). Anyone have any idea on how to start to correct that?
chacham15
  • 13,719
  • 26
  • 104
  • 207
4
votes
1 answer

How to implement a file type based filesystem?

I want to essentially make it so that you never need to unzip/unrar any files. Currently, I have a Dokan filesystem which can do it given a specific zip file but I wanted to know how I can make it apply to all files. Meaning, I want to be able to…
chacham15
  • 13,719
  • 26
  • 104
  • 207
3
votes
1 answer

Avoid order completed notification for parent orders in WooCommerce Dokan

I have a question about my code below. We use the code from here: Dokan plugin sends multiple email for customer for single order to make sure the system will not send order processing mails to customer for suborder and therefor only for the…
Nik7
  • 346
  • 2
  • 16
3
votes
1 answer

Python ctypes: WindowsError when using function pointer

I'm trying to use Python's ctypes to work with a DLL, but I occasionally run into a problem when I try to call a function that's passed as a pointer to another function. A little background...I'm trying to build a userspace filesystem using Dokan…
Ryan
  • 4,517
  • 7
  • 30
  • 34
3
votes
1 answer

Set a minimum order amount per vendor in Dokan

I want to have a minimum order amount in my Dokan store. The following code is doing the work but individual vendors can't select their own minimum value. //minimum order value add_action( 'woocommerce_check_cart_items',…
3
votes
0 answers

WooCommerce dokan: get all category from store id or seller id

I just work in a large e-commerce unit and my client wants to display a category-wise seller count and a list of category-wise sellers in Woocommerce. For each I get an answer for a specific seller but for a large amount of sellers it became complex…
Sanket Thakkar
  • 411
  • 3
  • 8
3
votes
1 answer

How To Show Store Name On The Product Thumbnail In Dokan Multivendor Plugin by weDevs

I'm using Dokan Multivendor Plugin by weDevs and have an issue with some custom code.. Here is the code which helps you to display Vendor Name On The Product Thumbnail In Dokan: //woocommerce /* Show Seller name on the product thumbnail For…
chigher
  • 31
  • 1
  • 5
3
votes
0 answers

What is the best way to implement a read/write byte buffer for a remote file system wrapper

I am playing around with the idea of using Dokan, the user-mode file system helper library, to create a file system around the new OneDrive API that has recently come out. I realise that there are existing tools to do this but I want to try and…
Jim
  • 31
  • 1
2
votes
0 answers

WooCommerce Product Addons on auction product

I bought a theme using Dokan. We installed addons product with Dokan but the field is not displayed on the auction products that use the WooCommerce simple auctions module how can I activate the add-ons field of the products on the page of an…
2
votes
1 answer

How to add custom badge to store-listing after vender name

How to add the custom badge to store-listing after the vendor name with a specific vendor id? the below code works but show for all vendors, indeed I need to run this code only for a particular vendor. function…
Behzad
  • 75
  • 1
  • 7
1
2 3
12 13