Scriptonite
Forum Replies Created
-
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Not workingI would recommend starting with your theme files. Go through every php file in your active theme and look for whitespace. The whitespace will be between closing and openings of the php tags.
example:
<?php echo 'php stuff'; ?> <h4>Some Html</h4> <?php echo 'more php';?>Is ok, however:
<?php echo 'php stuff'; ?> <?php echo 'more php';?> <h4>Some Html</h4>is not because the space between ?> and <?php can break your feed. Also make sure that all theme pages start at line 1, <?php halfway down the page with nothing above it can also break your feed.
I would try this first and see if this corrects your issue as in my experience it is the most common cause of this particular RSS feed error.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Not workingCorrect, there is no database interaction at all. The filter runs on the page content only. I have never heard of these issues in regards to the plugin. A couple suggestions, if you have any type of cache plugin I would try flushing all caches and/or disabling it and see if that clears up your issue. You can also try to set your theme back to the wordpress 2012 or other theme to make sure it is not a conflict with your theme. If you need troubleshooting assistance that is a service I offer should you find yourself unable to fix it on your own.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Not workingThere is no way this plugin can delete anything because it does not interact with the database in any way, it simply removes whitespace from the page when the page is loaded. Deactivating the plugin and re-installing wordpress from the upgrades will completely remove all traces and interactions the plugin had with your site. If the plugin did cause this issues everything will restore to normal after you do so, if nothing changes then this was not caused by this plugin. I hope this helps.
Forum: Plugins
In reply to: [user files] Change FTP Upload Folder NameNot in the current version, I have an update which will hopefully be released soon that will allow you to use usernames. If you go under FTP in the manage files menu you can see which user is associated with which folder. I know that’s a bit tedious, I do hope to have this update together by the end of next month.
Forum: Plugins
In reply to: [user files] Manage user files with editor roleThe best solution to this, to avoid losing your changes on updates, is to use a roles and capabilities plugin ( this is my favorite http://wordpress.org/extend/plugins/capability-manager-enhanced/) and add the manage_files capabilities to the desired roles.
This plugin does not currently do this however we have a commercial plugin called Group Files that does. More information can be found here:
http://www.whereyoursolutionis.com/hosting/cart.php?gid=9Forum: Plugins
In reply to: [user files] [Plugin: user files] Request folders multi-file uploadI add features if I get multiple requests for them. You are the only person that needs this or has requested this, I don’t add every feature just because someone suggests something. There were over 50 custom versions of this plugin developed in the past year, if I added every suggested feature for every individual that needed plugins altered I would work for free every day. If this becomes a feature more people are interested, in I will consider adding it. Until then, there are no plans to add this feature. You are more than welcome to alter the code yourself to make it what you need for your personal use.
Forum: Plugins
In reply to: [user files] Can you change order files are displayed?The dates are not saved in the database, however since the plugin is driven by file folders instead of the database, you can create an array of the files first, sort by date, then run the file array through the function to list them. Hope this helps.
Forum: Plugins
In reply to: [user files] Problem with Category Upload (in Chrome Browser)This is a known bug that will be fixed in an upcoming update. I am working on the new release and hope to have it available soon.
Forum: Plugins
In reply to: [Fix My Feed RSS Repair] Not workingThis plugin is made to specifically fix issues with whitespace before the start of the XML. If it is not working there are either invalid writing permission to core files of your issue is something different. Also at this time you need to apply the patch after each wordpress core upgrade.
Forum: Plugins
In reply to: [user files] ftp upload and file managementThis is currently not in any plans for any future updates. I could create a custom version to meet your specifications if this is something you need.
Forum: Fixing WordPress
In reply to: How to make a contact form have multiple submit options?A custom registration template with simple jQuery to display the form you want. Here’s a quick and dirty example:
<input type="radio" name="register" onclick="jQuery('#form1').show();jQuery('#form2').hide();"/> Form 1
<input type="radio" name="register" onclick="jQuery('#form2').show();jQuery('#form1').hide();" /> Form 2<div style="display:none;margin-top:45px;" id="form1">
I am the first form
</div>
<div style="display:none;margin-top:45px;" id="form2">
I am the second form
</div>Forum: Plugins
In reply to: [Simple User Profile] Customizing User ProfileThis will be added in an upcoming update. I have been swamped and have not had time to finish it.
Forum: Fixing WordPress
In reply to: Need Single Registration Using Mutiple WordPress SubdomainsYou can do this by using the same database for all installations with different prefixes. For example you can add this to your wp-config on all blogs:
define(‘CUSTOM_USER_TABLE’, ‘wp_my_users’);
define(‘CUSTOM_USER_META_TABLE’, wp_my_usermeta’);This plugin can help manage users so you don’t end up with orphans:
http://wordpress.org/extend/plugins/wp-orphanage/More info here:
http://codex.wordpress.org/Installing_Multiple_BlogsForum: Plugins
In reply to: [user files] [Plugin: user files] Request folders multi-file uploadAfter many emails with suggestions and ideas for the existing addons and plugin, many users have requested a premium version of the plugin. On the next release there will be many changes but some features will only be available in the premium version.
There is currently no plans to add an archiving system. You can manually do so via FTP by renaming the folders or contact me via email and I can quote you a price custom archive addon if you need one. If that is something you are interested in I will post my email. Thank you.