lostgorilla
Forum Replies Created
-
Forum: Themes and Templates
In reply to: List of Private PostsThanks Esmi, you nailed it and it works perfectly. Appreciate the fix and the link to the codex article as well. Bookmarked.
Forum: Fixing WordPress
In reply to: Do I need an htaccess file in wp-admin folder?.htaccess files can sometimes be hidden in your FTP program. Mine are and I have to “show hidden files” in my FTP program. Of note… if you’re on a mac you’ll want to duplicate and rename the file before downloading it. Macs wont by default show a file that begins with a . I duplicate and rename mine to this.htaccess so i can work on it then rename it once its uploaded.
guvnrDOTcom nails it on his post. Create a new blank file in a text editor and paste this into it :
# BEGIN WordPress RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPressSave it as .htaccess and upload it to http://www.yourblog.com/wp-admin. Security scan now ok’s the change and the site continues to work as intended.
One final note i didnt see any one address. DO NOT mess with the .htaccess file in your root folder. Dont move it or try to reuse it. Its there for a reason. Create a blank new file in a text editor and follow the directions above.
Nods to guvnrDOTcom on the fix.
Forum: Fixing WordPress
In reply to: Media upload = NextGen Gallery?So next gen installs on its own and i figured out that the .93 is available from WordPress.org but on Alex’s site it says .92… confusion officially over. 😛
Forum: Fixing WordPress
In reply to: Media upload = NextGen Gallery?yeah. I’m bumping.
Forum: Fixing WordPress
In reply to: way to modify template offline – then view it offline?I highly recommend installing WAMP or if you’re lucky MAMP (for mac) so you can work locally. Its really helpful and efficient for rapid development stuff. Jeremy has the link above for them and its the only way to go. I dont know how I would develop themes and plugs without it.
Think of it this way… at least if you work locally you cant wreck your site when and i do mean WHEN you screw up. 😉
Forum: Fixing WordPress
In reply to: lost the link to my home pageI assume you mean a link in your site that always comes back to the home page correct?
If thats the case, try something like this:
<a href="<?php bloginfo ( 'siteurl' ); ?>">Home</a>That points to the main URL of your site as set in wordpress or:
<a href="<?php bloginfo ( 'home' ); ?>">Home</a>That points to the page you have set as home in options.
Forum: Fixing WordPress
In reply to: Show CategoriesAdd the template tag wp-list-categories to your sidebar or page as needed. Find instructions here: http://codex.wordpress.org/Template_Tags/wp_list_categories
Forum: Fixing WordPress
In reply to: Displaying a “Post of the Day” on index.phpSeems like this should be pretty simple.
Use a plugin like WP-Recent-Posts or similar (thats 2.3 compatible) and call it with a template tag. Template tags for the most part (in my experience) will work just dandy outside the loop. Set the plugin for the cat you want and to pull the most recent post.
Then its just a matter of setting up your div in the header. If you only say wanted it on the home page you could do that with a conditional IF ishome statement.
Hope this helps.
Forum: Plugins
In reply to: Podcasting 1.0 PluginCould you shed any light on what the issue was? I am having the exact same issue. I cannot get your plugin or Podpress to work on my site.
Forum: Fixing WordPress
In reply to: Change the header/background image per postI know you can do by category, using a different template for each category.
For post by post you might be able to use the built in image upload function, turn off the WYSIWYG editor and write the HTML into the post box that puts your image where you want. Dont know though, havent tried it.
Forum: Fixing WordPress
In reply to: complete post vs the first few linesSounds like you have excerpts displaying instead of full posts. This has more info and a link to a fix it appears:
Forum: Fixing WordPress
In reply to: Can’t Delete Categories I CreatedThis worked for me.
Forum: Everything else WordPress
In reply to: Educating host to workings of WordPressElectricKitten.com is fantastic for hosting. I would steer clear of Godaddy. Anything past very basic stuff and you have to use their support which is just brutally bad. At least in my experience at work it has been.
Forum: Fixing WordPress
In reply to: Auto-delete of multi-link spamtry the Akismet plugin, that should manage your spam quite effectively for you. You’ll need a wordpress API key which you can get by signing up for free over on wordpress.com.
Forum: Fixing WordPress
In reply to: Password-protecting post not working?Here’s my 2 cents and what worked for me.
The url you go to: i.e. http://www.lostgorilla.com/sample-login
must match the URL and URI settings in your main options page exactly. Password for the post is testitMy password protection wasnt working, but i was trying the URL above while my URL and URI in the options page was http://lostgorilla.com.
I added the www to both the URL and URI in the options and it works fine now.
Once i made the change http://lostgorilla.com/sample-login doesnt work anymore but http://www.lostgorilla.com/sample-login does.
Interesting that if you do enter the password at http://lostgorilla.com/sample-login it refreshes but by simply adding the www and hitting enter in the url, it loads the page.
Hope this is helpful to someone.