buskerdog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Yahoo Business Hosting doesn't allow .htaccess files?Forum: Fixing WordPress
In reply to: Yahoo Business Hosting doesn't allow .htaccess files?I tried creating a text file called “htaccess” which worked, then renaming it to .htaccess and that failed: Rename failed for htaccess
— Invalid filenameAnnoying!
Forum: Fixing WordPress
In reply to: Yahoo Business Hosting doesn't allow .htaccess files?If I try to create a file and name it .htaccess with their file manager it says that it doesn’t recognize that file name format and if I try to upload a file it says I don’t have permission to do that, even though I’m logged in with the site owner’s account. Weird. Any ways around it?
Well I’ve tried everything I can. COnfirmed with the host that php is allowing 64m (the max apparently), tried themes, tried removing plugins, tried upgrading, etc etc etc and it’s hit and miss. It’ll work fine then it’ll stop. It’s pretty slow either way. Could the size of the blog be the problem? Do I need a dedicated server? Ugh.
Forum: Plugins
In reply to: [Plugin: InlineFeed] Titles only from blog (where’s the rest?)In case anyone else has this problem, I tried making a new “test” post to the blog and now the whole thing works. So I guess something in the feed just needed to get knocked loose…
Forum: Plugins
In reply to: [Plugin: Shadowbox JS] default YouTuube vids to 480p?Thanks for the advice. unfortunately the video i’m trying to do this to is only up to 480p… Anyone else know any possible ways to do it?
Forum: Plugins
In reply to: [Plugin: wp-private] Can we put the code in theme files?Here’s my idea: I’m trying to create a stripped down version of the pluginn for functions.php. Here’s what I have right now:
function protected_content($content) { global $current_user, $user_ID; if (($current_user->id == 0) && ($user_ID == 0)){ $begin = strpos($content, '<!--protected-->'); $end = strpos($content, '<!--/protected-->'); if($begin != $end) { $prefix = substr($content,0,$begin); if ( !$user_ID ) { $message = get_option('wp_private_before_html').'<form action="'.get_bloginfo('url').'/wp/wp-login.php" method="post"> <table> <tr><td align="left"><label>User Name</label></td><td>:</td><td><input type="text" name="log" id="log" value="'.wp_specialchars(stripslashes($user_login), 1).'" size="22" /></td></tr> <tr><td align="left"><label>Password</label></td><td>:</td><td><input type="password" name="pwd" id="pwd" size="22" /></td></tr> <tr valign="bottom"><td align="right" colspan="3">'.$linkback.'<input type="submit" value="Login" name="submit" class="submit_bt" /><input type="hidden" name="redirect_to" value="'.$_SERVER['REQUEST_URI'].'"/></td></tr> </table></form>'.get_option('wp_private_after_html'); }; $suffix .= substr($content,$end,strlen($content)); return $prefix.$message.$suffix; } else { return $content; }; } else { return $content; }; }; function wp_private_install() { if(!get_option('wp_private_login_form_enable')) { add_option("wp_private_login_form_enable", '1', '', 'yes'); } if(!get_option('wp_private_linkback_enable')) { add_option("wp_private_linkback_enable", '1', '', 'yes'); } if(!get_option('wp_private_before_html')) { add_option("wp_private_before_html", '<br /><div id="wp-private-box"><b>This is protected content. ', '', 'yes'); } if(!get_option('wp_private_after_html')) { add_option("wp_private_after_html", '</b></div><br />', '', 'yes'); } };Then you wrap your content in
<!--protected-->and<!--/protected-->in your theme files. But the thing I’m not managing to get it to do is run the $content through this function. Anyone know how to do that?Forum: Plugins
In reply to: [Plugin: wp-private] Can we put the code in theme files?Ugh, it doesn’t work. It just sticks the code in but the plugin doesn’t process.
Anyone know of a way to use this plugin at the theme leve?
Forum: Plugins
In reply to: [Plugin: InlineFeed] Titles only from blog (where’s the rest?)ummmm now it’s not working any more? What the heck. Anyone know why a feed would only deliver titles sometimes and then full content other times?
Forum: Plugins
In reply to: [Plugin: InlineFeed] Titles only from blog (where’s the rest?)huh, it seems to be working now. weird…
Forum: Fixing WordPress
In reply to: Automatic Plugin Upgrade now asks for connection info?I have one site that’s just started doing this. How can I get it to stop?
Forum: Fixing WordPress
In reply to: taking site live: permalinks not workingNever mind! There was an html file in the root directory with the same name as one of my permalinks and that was messing it up!
Forum: Fixing WordPress
In reply to: taking site live: permalinks not workingTo clarify, let’s say I have the following structure for pages and subpages:
Main
-about
-contact
Productions
-film
-musicMain is designated as the homepage and it works, but the permalink is just the root URL. The only ones that do not work are “about” and “contact” which it’s trying to load as url.com/main/about etc…
Forum: Fixing WordPress
In reply to: How do I switch which user gets admin emails?duh, thanks.
Forum: Requests and Feedback
In reply to: Can we get 1 column in galleries?This seems like such a minor thing…