patrickbln
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Maps by Supsystic] Map does not show up (only markers and box do)Still no updates? Seems like your own page is not working currently 🙁
https://gyazo.com/abb5ac73e99d4636d9822e78c4f53791
Kind regards
PatrickForum: Plugins
In reply to: [Affiliates Manager] paypal_payout.csv is not downloadedHey mbrsolutions,
maybe i am mixing something up here, in this case i am sorry, but even here it states how the file is created: https://wpaffiliatemanager.com/paypal-payouts-setup/
1. Go to Affiliates > Manage Payouts from your WordPress admin dashboard and generate a PayPal Payout file (paypal_payout.csv).
This is the file i am speaking of :). One who is not logged in can download this file and get the mailadresses of the affiliates this way!
- This reply was modified 5 years, 7 months ago by patrickbln.
Forum: Plugins
In reply to: [Affiliates Manager] paypal_payout.csv is not downloadedHi,
i just figured out what happens: The payoutfile is generated and it shows a message at the top, but the message disapears for me in a second, so i did not notice it.
Anyways, i noticed that i can download the file without being logged in, which is a serious security flaw! There should be an option to delete the file after the download or it should invoke the download and then delete this file automatically. If not someone could just download the file and get the mailadresses.
Otherwhise thank you for this great plugin!
Kind regards
Patrick- This reply was modified 5 years, 7 months ago by patrickbln.
Forum: Plugins
In reply to: [Affiliates Manager] Creatives do not show up when size is to bigi wrote this little script with the help of jsfiddle to detect adblock, maybe it will be usefull for someone. it checks with php if the affiliate is in the creatives page and allerts the user if he has adblock plus.
<?php $postvalue1 = sanitize_text_field($_GET["sub"]); if ($postvalue1 == "creatives") { echo " <h3 id=\"status\"></h3> <script> var adBlockEnabled = ''; var testAd = document.createElement('div'); testAd.innerHTML = ' '; testAd.className = 'adsbox'; document.body.appendChild(testAd); window.setTimeout(function() { if (testAd.offsetHeight === 0) { // Adblock Active adBlockEnabled = 'Attentione: You are using Adblock! Some Banners might not show up!!'; } testAd.remove(); console.log('AdBlock Enabled? ', adBlockEnabled); document.getElementById(\"status\").innerHTML = adBlockEnabled; }, 100); </script> ";}Also there should be an extra function for HTML5 Adds & Videos, just a suggestion….
Kind regards
PatrickForum: Plugins
In reply to: [BigBlueButton] Number of current users in a roomas far as i remember there is no such api call integrated in the plugin. but as it gets meeting info already it might be possible to integreat this by alter the plugin.
Forum: Plugins
In reply to: [BigBlueButton] Welcome Messageif i remember correctly there is no parameter for the welcome message on default, you might have to program it within the plugin
Forum: Plugins
In reply to: [BigBlueButton] Is there a Create Rooms widget or shortcode?Hi esmelndn there are no shortcodes or widgets for what i know, but you could fiffle arround with custom functions as this is just a post type. so you could write a function whcih creates a post / room for this user for example on register.
just to give you an EXAMPLE what this COULD look like:
add_action( 'user_register', 'MYFUNCTIONNAME', 10, 1 ); function MYFUNCTIONNAME ( $user_id ) { // Get user info $user_info = get_userdata( $user_id ); // Create a new post type bbb-room//dont forget to create default meeting-id / moderatorcode / usercode and add this information in the corresponding custom meta values of the post
Forum: Plugins
In reply to: [BigBlueButton] Allow non-admins to create meeting roomsYou mean to create new rooms?
afaik this is only possible over the backend currently… you can install something as user role editor to give none admins the privileg to create rooms… If you want this working from frontend you need some custom codingForum: Plugins
In reply to: [BigBlueButton] Server Settings don’t workHey Folks,
i currently have the plugin installed on 3 pages and can assure you that it works with my own server, which is not from blindside networks! Also all those pages where setup in the last 2 month and the update is 3 month ago… Unfortunatelly i cant see what the issue is with your installation…
1) double check your credentials
2) make sure you use https as it wont work without with the html5 client
3) maybe install another testserver with bbb
4) use a clean dev WP install for testing…Maybe someone else has an idea?
I am sure the folks from blindside have 2 much 2 do these days the the community must help out here!Kind regards
PatrickForum: Plugins
In reply to: [BigBlueButton] install problemHi, i dont know anything about CentOS, but maybe here is the right place to ask: https://groups.google.com/forum/#!forum/bigbluebutton-dev
make sure to check the Documentation first: https://docs.bigbluebutton.org/dev/api.html
as far as i remember the minimum requirement states that you need an Ubuntu Server:Ubuntu 16.04 64-bit OS running Linux kernel 4.x as stated here: http://docs.bigbluebutton.org/2.2/install.html#minimum-server-requirements
Kind regards
PatrickForum: Plugins
In reply to: [BigBlueButton] Cannot save server settingsHmm i am very sorry, but i dont know how to help you… have you tryed another WordPress Installation or another BBB Server? what happens when you use the other plugin?
I am sorry, its kind of hard to understand what your exact question is…
So you want an unregistered user to be able to join the room? In this case he has to provide a token…Forum: Plugins
In reply to: [BigBlueButton] Cannot save server settingsHi ruig,
thats a tough one for me to answer… So either there is something wrong with the response the BBB Server gives or there is something wrong with your WP installation.
What you could try is to instalkl the API Demo ar greenlight on the BBB Server and see if this works. If there is also an error then there might be something wrong with your BBB Server. If not, i would check the WordPress installation by disabling all other plugins and using a standard theme…
maybe that helps a little…
Hi Alexxxxya, if i understand your question correctly this will help you: https://de.wordpress.org/plugins/user-role-editor/
you can remove the capabilitys to join rooms from registered users. They can only join then if they provide the token.
Kind regards
PatrickForum: Plugins
In reply to: [BigBlueButton] Old BBB role changerHi Filipe,
there seems to be antoher plugin who can do this:
https://de.wordpress.org/plugins/bbb-administration-panel/For the current one here, this options seems not to exists. but what you can do, you can install user roll manager and edit the capabilitys of each role 🙂