<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: plugin browser</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: plugin browser</description>
<language>en</language>
<pubDate>Thu, 20 Nov 2008 17:00:23 +0000</pubDate>

<item>
<title>baptiste on "Fix plugin browser for 0.9"</title>
<link>http://bbpress.org/forums/topic/fix-plugin-browser-for-09#post-15845</link>
<pubDate>Mon, 28 Apr 2008 19:02:25 +0000</pubDate>
<dc:creator>baptiste</dc:creator>
<guid isPermaLink="false">15845@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I tried to post this in the comments off the plugin homepage, but Extend won't recognize my login. Weird.&#60;/p&#62;
&#60;p&#62;Anyway - if you are running 0.9 and plugin browser, you probably see no version listed for all plugins in the 'Local' column. This is due to a change in how bbpress stores the plugin paths in the DB (_ck_ clued me into that) The fix is easy. In the main plugins-browser.php file, add 'user#' before pb-- or pb\-\- on lines 681 (in the preg_replace statement) and line 698 ($plugin['version_local']) Once I did that, the browser worked fine with correct version info, showed updates that existed, and installed them no problem.&#60;/p&#62;
&#60;p&#62;I'm sure the Wordpress plugin update stuff will make it into bbpress soon, negating the need for this plugin (to a point - the browse part is still great) but until then - this will get you going.
&#60;/p&#62;</description>
</item>
<item>
<title>Jolaedana on "Editing Plugin files for Plugin Browser Installed Plugins?"</title>
<link>http://bbpress.org/forums/topic/editing-plugin-files-for-plugin-browser-installed-plugins#post-11355</link>
<pubDate>Tue, 09 Oct 2007 17:09:58 +0000</pubDate>
<dc:creator>Jolaedana</dc:creator>
<guid isPermaLink="false">11355@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've reverted to the non plugin installed version (couldn't even delete the plugin via FTP program, I had to do it through the Plugin Manager interface.) and made my changes.&#60;/p&#62;
&#60;p&#62;For now, I'm just keeping the plugins I don't need to tweak installed through plugin manager- it cuts back on checking for updates at least, so thanks! I'm puzzled as to the cause, since it only seems to be the files created by your plugin effected. It may be something my host has done, I'm unsure. &#60;/p&#62;
&#60;p&#62;Thanks for the thoughts!
&#60;/p&#62;</description>
</item>
<item>
<title>Jolaedana on "Editing Plugin files for Plugin Browser Installed Plugins?"</title>
<link>http://bbpress.org/forums/topic/editing-plugin-files-for-plugin-browser-installed-plugins#post-11353</link>
<pubDate>Tue, 09 Oct 2007 16:02:05 +0000</pubDate>
<dc:creator>Jolaedana</dc:creator>
<guid isPermaLink="false">11353@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How odd... I don't have any problem editing ANY other files on my server- just the files your plugin installed. Really strange. &#60;/p&#62;
&#60;p&#62;I'm using an FTP program, not the command line- that may yield different results. I can't be root, that's for sure- on a shared host.&#60;/p&#62;
&#60;p&#62;I'll see what I can figure out- thanks Sam. that's what I needed to know.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Editing Plugin files for Plugin Browser Installed Plugins?"</title>
<link>http://bbpress.org/forums/topic/editing-plugin-files-for-plugin-browser-installed-plugins#post-11345</link>
<pubDate>Tue, 09 Oct 2007 05:53:40 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">11345@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Did the &#34;you do not have permission&#34; message occur on the command line? If the user you login as on the server doesn't own the files you will need to do the chmod-ing as root. If you don't have root access, then I have no idea how you edited the files in the first place.&#60;/p&#62;
&#60;p&#62;The plugin doesn't do any checking to determine whether the files are writable. It probably fails quite horribly if you have set PHP to write errors to the screen.
&#60;/p&#62;</description>
</item>
<item>
<title>Jolaedana on "Editing Plugin files for Plugin Browser Installed Plugins?"</title>
<link>http://bbpress.org/forums/topic/editing-plugin-files-for-plugin-browser-installed-plugins#post-11344</link>
<pubDate>Tue, 09 Oct 2007 05:16:48 +0000</pubDate>
<dc:creator>Jolaedana</dc:creator>
<guid isPermaLink="false">11344@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi Sam! Thanks for the reply.&#60;/p&#62;
&#60;p&#62;I've already tried to chmod the files- I get a &#34;you do not have permission to modify these files&#34; on all the files, no matter what permission level I tried. I've got pretty extensive web experience, so that was the first thing I tried. &#60;/p&#62;
&#60;p&#62;I guess for now I'll go back to the non plugin install- I was just curious if there was something written into the Plugin Manager that caused the file permission settings to be locked. Seems odd that I can't even overwrite a .gif file!&#60;/p&#62;
&#60;p&#62;Thanks for the overview and clarification. :)
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Editing Plugin files for Plugin Browser Installed Plugins?"</title>
<link>http://bbpress.org/forums/topic/editing-plugin-files-for-plugin-browser-installed-plugins#post-11343</link>
<pubDate>Tue, 09 Oct 2007 02:01:10 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">11343@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The files and folders need to be writable by the webserver user. You may have changed the permissions when you edited the files that exist there already.&#60;/p&#62;
&#60;p&#62;The easiest approach (but insecure on shared hosting services) is to chmod the files.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;chmod -R 777 bbpress-root/my-plugins&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;br /&#62;
Or you can change ownership on those files to the webserver user, usually &#34;www&#34; or &#34;apache&#34; depending on the setup.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;chown -R www:www bbpress-root/my-plugins&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;br /&#62;
Remember that the upgrade facility of the plugin browser won't maintain your manual changes to the plugins. You will need to re-edit the new versions.&#60;/p&#62;
&#60;p&#62;Plugins that are installed normally will happily co-exist with those installed by the plugin-browser. Just keep them outside of the pb--xxxx folder structure.
&#60;/p&#62;</description>
</item>
<item>
<title>Jolaedana on "Editing Plugin files for Plugin Browser Installed Plugins?"</title>
<link>http://bbpress.org/forums/topic/editing-plugin-files-for-plugin-browser-installed-plugins#post-11339</link>
<pubDate>Mon, 08 Oct 2007 22:18:07 +0000</pubDate>
<dc:creator>Jolaedana</dc:creator>
<guid isPermaLink="false">11339@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello all,&#60;/p&#62;
&#60;p&#62;I'm using the &#60;a href=&#34;http://bbpress.org/plugins/topic/57?replies=1&#34;&#62;Plugin Browser&#60;/a&#62; by SamBauers.&#60;/p&#62;
&#60;p&#62;I have a few plugins that I was using, and installed through this plugin (great stuff, btw) that I had modified the files on slightly. Main example here is the &#60;a href=&#34;http://bbpress.org/plugins/topic/43?replies=3&#34;&#62;Page Links&#60;/a&#62; plugin- I had changed the page icon graphic to be different colors. I would like to overwrite the file in the Plugin Browser installation of the file, however it tells me I don't have permissions to overwrite the file- or change permissions on the folder or files inside it.&#60;/p&#62;
&#60;p&#62;Is there an easy work around for this, or should I just go back to the non Plugin Browser version? :) Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>louisedade on "Plugins SVN Problem"</title>
<link>http://bbpress.org/forums/topic/plugins-svn-problem#post-9786</link>
<pubDate>Thu, 02 Aug 2007 10:13:38 +0000</pubDate>
<dc:creator>louisedade</dc:creator>
<guid isPermaLink="false">9786@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok, I'll see what happens with the next update to the plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Plugins SVN Problem"</title>
<link>http://bbpress.org/forums/topic/plugins-svn-problem#post-9690</link>
<pubDate>Tue, 31 Jul 2007 23:31:55 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">9690@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I really don't know. Maybe, especially if it happens again, you could send an email on the bbDev list just to get mdawaffe aware of it.
&#60;/p&#62;</description>
</item>
<item>
<title>louisedade on "Plugins SVN Problem"</title>
<link>http://bbpress.org/forums/topic/plugins-svn-problem#post-9419</link>
<pubDate>Fri, 27 Jul 2007 10:34:22 +0000</pubDate>
<dc:creator>louisedade</dc:creator>
<guid isPermaLink="false">9419@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There appears to be a problem with the SVN for plugins.&#60;/p&#62;
&#60;p&#62;I've had a user who downloaded the latest version of Avatar Upload, only to find the contents of sub-folders to be empty -- &#60;em&#62;even though the files &#60;strong&#62;are&#60;/strong&#62; present in the repository when I browsed source in Trac (in both the Trunk  AND latest Tag)&#60;/em&#62;.  Somehow they are missing in the automated ZIP download.&#60;/p&#62;
&#60;p&#62;The file structure is:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;trunk/ (and also &#38;#39;tags/0.7/&#38;#39;)
  additional-files/
    avatars/  (contents missing in the ZIP)
    my-templates/ (ditto)
.&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Is this a one-off blip or is it a bug?  Either way, can it be fixed?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
