bunterrichten
Forum Replies Created
-
Forum: Plugins
In reply to: [File Manager Pro - Filester] Have different users with different root pathHmm seems I can’t delete this myself… I figured it out. Actually had it before already, but for cache reasons it looked as if it didn’t work.
If anyone else is interested, here’s how easy it was:
In the file “FileManager.php” I’ve just added the last part to the filepath to work according to user->display_name:
//Creat root path for user if(!empty($this->options['njt_fs_file_manager_settings']['list_user_role_restrictions'][$this->userRole]['private_folder_access'])){ $opts['roots'][0]['path'] = $this->options['njt_fs_file_manager_settings']['list_user_role_restrictions'][$this->userRole]['private_folder_access'] .'/'.$user->data->display_name; }
Then each user of the user_role one wants (in my case, subscriber) has to have his own folder created when creating the user. So I hooked into the “user_register”-Action and added this one:
// now create showoff folder for new user $folderpath = $_SERVER['DOCUMENT_ROOT']."/wp-content/uploads/showoff/".wp_get_current_user()->data->display_name; if (!file_exists($folderpath)) { mkdir($folderpath, 0777, true); }
Worked like a charm ??
Sry to have bothered you in the first place, some strange cache problem had made this look more difficult than it actually was.
But if you want to include this addition to the plugin as an official feature, I guess a few people might be interested. Feel free to use the above stuff, and thx again for developing this wonderful plugin ??
Niklas
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Recurring payment test buggy(I wanted to edit my last post but I didn’t find that option, so I’ll update as another post instead:)
Mollie support told me to try out with credit card in testing mode, as you did, which worked fine. They also told me to simply create the checkout page with credit card first, and if that one works, I should contact Mollie support and they’ll enable SEPA quickly once they see it’s an actual payment page that makes sense to them.
So for anyone else that’s curious about how to have a go at this:
1) create a credit card auto-withdrawal to test the function
2) create an actual payment page for the real withdrawal with credit card auto-withdrawal
3) contact mollie support, show them the actual payment page and they’ll enable SEPA stuffAt least that’s what should work now.
Thx again for the quick reply!
NiklasForum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Recurring payment test buggySorry for taking so long to reply, I wanted to test out something first, but it got delayed somewhat.
I figured I’d just go to live mode and do a SEPA test payment of 2€ twice, but then Mollie said they don’t see an actual webshop so they won’t enable SEPA on live mode, and then things got a bit complicated.
I obviously want to test the system before I put it live somewhere for anyone to see, so I don’t really get why Mollie won’t let me do that.
Anyway, I’ll switch back to test mode now and see whether I’ll get it to work with credit card as a first step for the moment, then.
If that works out, I’ll probably develop a test-version of the actual payment site I was planning to develop after I tested everything and have Mollie check that, perhaps then they’ll allow me to have my test run as I wanted in the first place.
Thanks for your swift reply back then, and I’ll let you know whether I’ll get it to run the way I originally intended once I manage to ??
Niklas
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Recurring payment test buggyHi,
I’d like to chime in on this topic. At first I thought perhaps all I had to do is wait since in the Mollie dashboard it says something like (I’m translating to English from German here) “Payment will probably arrive around 14th of May”. So at first I thought perhaps that’s just 14 days after the first payment or something, but then I found out that every (!) subscription payment will just delay for one more day each day. So I think something might not be working as it should here.
Some context: I set up a Mollie test-mode-payment using a SOFORT-payment as first payment and then SEPA direct debit (the one that automatically draws money from one account to another, without the credit card). The first payment runs through fine, but then the ones after that stay in orange color and it says something like “pending” (in German language). The next bank withdrawals are created fine in the Mollie Dashboard, but they stay at “pending” and will never go through (I waited for well over 2 weeks now to be sure). In the Paytium wordpress dashboard the circle turns green but never blue.
I believe this could be caused by Mollie being in testing mode, but I’d like to ask whether this is probably the case or if there could be another issue I’m not thinking of here.
I’d rather not change to real mode before I can fully test what I could do with Paytium and what I can’t do, which is why I figured I’d rather ask before testing myself if the problem is connected to being in test mode or not.
I’d be thankful for any answer you can give me, and a nice day to you!
NiklasP.S.: If the subscription thing DOES work, quite a few people might be very thankful if there is an English version of the docs somewhere, or even a German one. This could be a very useful plugin to have, and it having English docs might increase its value by quite a lot, possibly increasing your sales of the pro version by quite a bit. Just saying after digging through Google-translated versions of your docs to find out what I might be doing wrong ??
Well, thank you both for your answers, that helps.
I shall aim to develop a solution around that, then.