Hi,
I would like to say thank you so much for the great plugin. However, I am having an issue when hosting the updated plugin and self hosted plugins on the same domain.
Plugin update does not work in the above situation. However, if I install the plugin on a different site, it updates fine.
So, looks like that the managed plugin and self hosted plugins should not be on the same domain. Is that correct or it is just me?
Thanks,
Ahmed
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>I just discovered the permissions page and was wondering if or how I can be more robust with the permissions. I want to allow a user to upload his or her own plugin, but not allow the person to delete someone else’s plugin. Thanks.
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>Hi, i have hosted my plugin in my site. And have uploaded next version as well. But users we got my plugin previous version is not getting any update msg.
Do you know why?
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>I am writing a plugin that incorporates this functionality and then some. I am working on making it so that a dev can write his own plugin, host it on their site, and within their plugin have a form that would run through a paypal checkout to get the pro or paid version. As it looks like i am reinventing the wheel as you have something working already, i figured i would drop you a line and see what you think.
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>Hi,
Thank you for your great job !
I think I’ve found a bug : the folder name of a hosted plugin can’t contain any “-” (minus) character. I was searching for a long time why the detail plugin page was always 404 before figuring out that it was the folder name !!!
The original name which doesn’t run was “abs-xav-functions”, and with “abs_xav_functions” or “absxavfunctions” it’s OK.
Is it really a bug and could you correct it ?
I’ve a lot of little hand-made plugins whose folder names contains “-“, and with code refering to this folder name…
Best regards,
Xavier Giorgi.
PS: I’ve the versions “self hosted plugin” 1.0.9 and “Top Quark” 2.1.0, WP 3.3.1 hosted by Infomaniak.
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>I had this installed on my site and could not get it to display any plugin pages all i got was 404s.
I have new created a brand new 3.3.1 install with the 2011 theme and no other plugins.
I still just get 404 messages?
any ideas?
thanks
Tom
https://plugins.accent-adc.co.uk/extend/plugins/
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>when i try to add a new plugin it just says plugin must include a valid readme.txt even though i have a valid readme.txt
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>Just wanted to drop a quick note in here to let you know it is up an running fine on WP 3.3.1.
That said, somewhat better instructions might solve a number of issues/questions along the way. Otherwise, all great!
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>Escribe texto o la dirección de un sitio web, o bien, traduce un documento.
Cancelar
espa?ol
inglés
francés
When activating the plugin I get an error “The plugin does not have a valid header.”
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>Just installed your Self Hosted Plugins and everytime I try to upload a zipped plugin, I get the message: Error: You must have a valid WordPress readme.txt file within the plugin zip.
I am using Windows 7 and the latest version of WinZip. My readme.txt file passes the validator with flying colors and I have tried different compression settings, etc. to get this to work, and still no love. Any ideas??
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>I love this plugin, and just wanted to show a little love! Thanks for the hard work.
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>I came across this one on my own site and thought I’d share the fix.
I’m hosting plugins on my site using Self Hosted Plugins. That same site has a couple of those plugins activated (for demos etc.). When Self Hosted Plugins rendered the plugin description page, it filtered the content through do_shortcode
. It tried to expand all of my example shortcodes.
To fix this, I added the following to my theme’s functions.php file. The code simply removes the do_shortcode
filter on the_content
:
add_action( 'pre_get_posts', 'topquark_massage_spoof',99 );
function topquark_massage_spoof(){
// I don't want shortcodes to get expanded on this page (so I can put shortcodes in the readme on a site)
// that has the plugins activated
if (defined('SHP_SPOOFED_PLUGIN_PAGE')){
remove_filter('the_content','do_shortcode',11);
}
}
Cheers
[sig moderated as per the Forum Rules]
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>I just installed this plugin and I have two issues I am hoping someone can help me resolve. One is how do I get it to show the plugin name on the plugins page instead of just the default name “Plugin Name”? Also, when you click on the plugin, it takes you to where you should go, but there is a 404 error. My plugins page is located here: https://www.joshparker.us/plugins
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>Hi everyone,
I made an SVN newbie error uploading version 1.0.5. This version won’t work. Please don’t use it. I’ve uploaded version 1.0.6 and am just waiting for it to show up here in the repository.
Sorry for any inconvenience. If you upgraded to version 1.0.5, you can fix it by moving all files from self-hosted-plugins/trunk to self-hosted-plugins/
Cheers
topquarky
https://www.ads-software.com/extend/plugins/self-hosted-plugins/
]]>Hi,
Nice Plugin you’ve written.
What I wanted to know is whether there is a capability to authenticate a user before getting an update. When the user tries to update the plugin, he is required to supply some kind of username/password and when the user inserts those, from our site based on the username we can check if the user has the ability to update. If not we can send a message saying that they don’t have the capability to do so and a message is shown to them on their site.
Thanks