vkaryl
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sort post by hits?Haven’t run across anything like that myself…. have you looked here?
Forum: Fixing WordPress
In reply to: WP LIST in reverse order<?php wp_list_pages('sort_order=ASC&title_li=<h2>' . __(Pages') . '</h2>' ); ?>I *think*…. try it and post back, ‘kay?
Forum: Fixing WordPress
In reply to: Approve PostsOuch. I absolutely haven’t a clue about the subsequent edits thing. Other than to simply somehow disallow edits…. I know a forum plugin that can handle all of that, but not wp native.
If you think that might help:
http://www.yellowswordfish.com/my-wordpress-plugin-library/simple-forum-wordpress-plugin/
Forum: Installing WordPress
In reply to: Installation Error Msg – “Can’t select database”Most databases won’t have _com in them. Admittedly there are some oddball constructs out there among hosts though, so have you checked with your tech support to make sure you know what the database is?
And are you sure your host meets the minimum requirements for whichever version of wp you’re installing?
And don’t for anything in this WORLD install 2.1.1! See:
Forum: Installing WordPress
In reply to: Right sidebar has droppedForum search (as awful as it is) turned up these results:
http://wordpress.org/search/dropped+sidebar?forums=1
Believe me, your answer is probably within the first few.
Forum: Fixing WordPress
In reply to: Previous link not workingWhat version of wp? Are you using any custom loop structure? Did you try reuploading the wp files in case something got corrupted?
Forum: Fixing WordPress
In reply to: Reader Can’t CommentPlease post your solution so others may be able to find it…. thanks!
Forum: Fixing WordPress
In reply to: Approve PostsNot that I’m aware of (note please that I do NOT know every plugin available out there!)
If you’ve got the blog set up for moderation before posts go live though, why does it matter what table the posts go to?
Forum: Fixing WordPress
In reply to: 500 Internal Server Error – WP 2.1Better check with your hosts, those still having problems: the php 4.4.5 release had some issues, perhaps similar to this; my host retrograded to 4.4.4 until 4.4.6 was released. If your host is NOT running 4.4.4 or 4.4.6, ask them to fix at least your server space by downgrading to 4.4.4 or upgrading to 4.4.6.
You can do a quick check yourselves to see what php version: create a file in notepad (NOT WORDPAD OR WORD); save it as phpinfo.php. In the file put this and only this, and save it:
<?php phpinfo(); ?>Upload this to your site root; access using your browser (something like
http://yourdomainname.com/phpinfo.php) – this will give a lot of info about what the backend programs running your site are set up with, including what versions of apache, php, mysql, etc.Forum: Themes and Templates
In reply to: How do you know if your theme is Widget ready?Well, you have to download the widgets plugin from http://automattic.com/code/widgets and install it. Then you have to make sure you have a 2.1.2 (or whichever version you’re using) functions.php file. Then you have to make sure this code is in your sidebar.php file:
<?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar('Right') ) : else : ?>buncha code/sidebar stuff here<?php endif; ?>[Note that that code is specific to the 2.0+ branch, I have NO idea if it’s the same in 2.1+….]
Forum: Themes and Templates
In reply to: Keeping the wrapper from the header section?So when you say “the page overlaps the top of the footer”, you mean you’re seeing page content in the footer?
One normally handles that with a
<br class="clearA" />, where .clearA is declared in the stylesheet as:.clearA { overflow: hidden; clear:both; height:0; margin:0; font-size: 1px; line-height: 0; }Forum: Themes and Templates
In reply to: Quadruple Blue, New 4-Column, Widget Ready ThemeI like the theme but it’s the same problem as with most all 4col (and some 3col) themes: sidescroll at 800×600….
Forum: Installing WordPress
In reply to: best practice installI use the same download over and over – no reason not to.
Forum: Fixing WordPress
In reply to: How do I add new pages?You can’t add Page links without creating the Page in Write Page.
Forum: Themes and Templates
In reply to: Replacing the default header (oh yes, I’ve searched)The calendar and colors are the easiest. Layout is next harder. Tabbed page nav is next harder. I’m not sure on the subscription thing – that’s a theme I’m not familiar with, I use a plugin for subscription functions.
Regardless, I *think* if this were me, I’d start with the layout that was right in my opinion, and get the look nailed first. Then I’d add the functionality for the other stuff.