jkovis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Media Library won’t upload imagesI tried the mod_security thing. However, when I created the .htaccess text file in the wp-admin for some reason it wouldn't show up within the file?? Therefore, I couldn't add the code....Files with a dot in front of them are usually hidden files so make sure your FTP program is set to display them.
Also, WP might have created an .htaccess file automatically for you if you turned on fancy permalinks.
Forum: Fixing WordPress
In reply to: Moved Blog & Cannot Log In (cookies error) After 3 InstallsYes, renaming the plugin directory will work…
I don’t know how WP includes/processes the plugins directory so you might want to make sure that you have an empty plugins directory in /wp-content (or wherever your plugins location is defined in wp-config.php).
WHAT can that blank page be about!!Can you take a look at your server logs (or request them from your web host) to see what’s happening when you try to access /wp-admin?
Forum: Fixing WordPress
In reply to: 500 – Internal Server Error for comment boxGood to hear it’s now working for you; can you mark this thread as resolved?
Forum: Fixing WordPress
In reply to: Cannot remove widgetsI just installed this theme to see how it handles widgets.
If you don’t have any widgets installed the theme will automatically place the 5 hardcoded, “default” widgets between the two sidebars.
If you have at least one widget installed in one of the sidebars then it will only display that widget.
Do you not want to display any widgets? If so, just place a blank Text widget into each sidebar.
If not, drag whichever widgets that you want into the sidebar that you want. The refresh the widget page to make sure the widgets saved and then view your site again.
Forum: Fixing WordPress
In reply to: 500 – Internal Server Error for comment boxI was just successful in posting a comment to your site – http://ibdabo.com/blog/?p=185&cpage=1#comment-19
Are you still experiencing this issue?
Forum: Fixing WordPress
In reply to: Moved Blog & Cannot Log In (cookies error) After 3 InstallsI’d suggest disabling all the installed plugins and seeing if that allows you to login. If it does then reinstall/activate each plugin one at a time to see if one is causing the problem.
Forum: Themes and Templates
In reply to: Problem with sidebar and main contenttry this in your sidebar.php:
<div id="sidebar"> <div id="sidebar-top"></div> <h2>Latest News</h2> <?php $count=0; // number of posts to show $posts_to_show=2; $sidebar_query = new WP_Query('cat=3&showposts='. $posts_to_show); while($sidebar_query->have_posts()) : $sidebar_query->the_post(); ?> <h3><?php the_title(); ?></h3> <p><?php the_content(); ?></p> <?php $count++; if ($count < $posts_to_show) : ?> <div class="hr"><hr /></div> <?php endif; ?> <?php endwhile; ?> <?php // ids of the posts to show $ids_to_show=array(25,29); $single_query = new WP_Query(array('post__in' =>$ids_to_show)); while($single_query->have_posts()) : $single_query->the_post(); ?> <h2><?php the_title(); ?></h2> <?php the_content(); ?> <?php endwhile; ?> <div id="sidebar-bottom"></div> </div> <!-- sidebar -->Forum: Fixing WordPress
In reply to: A way to have latest post display full post and others an excerpt?Can you tell me which file to put that in? And does it need to go is a certain place within that file?It should go in either your home.php (if it’s in your theme) or index.php.
Can you post the code from that page here so I can see where it should go?
Forum: Fixing WordPress
In reply to: *Static Wallpaper and…*Looks like this php and javascript code could do the trick (though it won’t work if the user has disabled javascript).
Forum: Fixing WordPress
In reply to: Images Will Not UploadYou’ve also gone through this checklist?
Forum: Fixing WordPress
In reply to: 500 – Internal Server Error for comment boxCan you post a link to your site? Are all of your other links working correctly?
Forum: Fixing WordPress
In reply to: Moved Blog & Cannot Log In (cookies error) After 3 InstallsI have cleared browsers and caches repeatedly, both IE and FF.By this I assume you’ve deleted all the cookies from that domain as well. Would it be possible to try logging in with a browser (like Safari) that you haven’t logged in with before?
Forum: Fixing WordPress
In reply to: Cannot remove widgetsIs this the theme?
Forum: Fixing WordPress
In reply to: search and calendar not centered in my wordpressadd this to the theme’s style.css file:
#wp-calendar { margin: 0pt auto; text-align: center; }Forum: Fixing WordPress
In reply to: *Static Wallpaper and…*the wallpaper appears the same whether you're looking at it on a 15 inch computer or looking at it on a 20+ inch monitor, there's no cutting off or any of that.I’ve been changing with my screen resolutions and it appears that the same background image is served after each change.
It’s a 1500×100 image that cuts off at about 22″ wide.