lokrin
Forum Replies Created
-
Forum: Plugins
In reply to: wp-grins for 1.5 ?Using WP1.5
Is there a way to sort or group the smilies? I’ve got a couple of dozen and would like to sort them maybe like:
Original
Emotions
Animals
Animatedetc
Forum: Fixing WordPress
In reply to: NEW: Upgrade to 1.5.2Just did the minor upgrade also. At first I thought everything was fine, but then I noticed that all the internal links were giving 404 errors. I finally replaced the .htaccess file created on the new install with the old file. Now everything is back to working. So I’m guessing that something was wrong with the rewrite rules, but I’m not that great with the coding. I’ll look it over a bit more later.
Forum: Fixing WordPress
In reply to: Page break in pages?Ok, I was in the hospital and off-line for a few weeks. During that time I kept my weblog as a text file on the home computer. When I got back on-line I decided it was much easier to create a page and put everything in it rather than try to make a few dozen new entries. However that page is quite long. Plus I’d like to add several images and that would significantly increase the page load time. I’d like to break it down to at least 3 or 4 pages. I could do subpages, I guess, but having a |next|previous| link at the bottom seems more elegant. Though I could manually add the links. However, what about the page tree structure. What would look good? Something like:
Previous Page topic
Foot Notes (1)
-Foot Notes (2)
-Foot Notes (3)
-Foot Notes (4)
Next Page Topicor:
Previous Page topic
Foot Notes (1)
-Foot Notes (2)
–Foot Notes (3)
—Foot Notes (4)
Next Page TopicHere’s the link:
Forum: Fixing WordPress
In reply to: Comments do not appear to be working (since upgrade to 1.5)Golly, just got mine fixed.
I deactivated the wp-spamassassin module.
What really saddens me is that there are no posts, even a courtesy post, from any of the developers/programmers.
Considering how prelavent (so many people with this problem) it is.
Forum: Fixing WordPress
In reply to: Import Data Into PHPNukeKnock-knock?
Forum: Themes and Templates
In reply to: Comment forms not showing.Where does comments_template() belong?
Forum: Themes and Templates
In reply to: Don’t Panic! A theme with towelly history…Just a suggestion: How about a link to Babelfish?
Forum: Everything else WordPress
In reply to: What’s the difference between ‘weblog’ and a ‘cms’?Ok, let’s toss another monkey wrench into the works – PORTAL
I’m looking for something to integrate my WordPress blog, my phpBB forums and my main website content (all static, no dynamic content) into one big system.
I’ve been searching portals, but would a CMS be better? From where it stands, I don’t think so, but I may be wrong.
Anyone here have suggestions for integrating everything? Currently everything is under different subdoamins but I can always chage it a the same domain and different folders if need be. (Hurray for FTP ?? )
Here’s what I’m working with:
https://lokrin.net Main site full of info
https://weblog.lokrin.net My blog
https://ldg.lokrin.net my forums, currently underutilized.This is one of the main reasons for integration. I want people to make comments and discuss the info on the main site. Also, (since comments in WP 1.5 aren’t working anyway) I’d like WP comments to be available only to me and for users to use the forums for their comments.
I not only want to integrate everything, I want to consolidate the look of everything.
Any help?
Forum: Fixing WordPress
In reply to: Comments do not appear to be working (since upgrade to 1.5)The comment box comes up. If I just click on the submit button I get:
Error: please type a comment.
on a completely blank page.Otherwise I just get a totally blank page.
Both times the page in the address bar is:
Forum: Fixing WordPress
In reply to: Password Protected Entries – Any progress?Hmm.. I use Firefox. I haven’t made a password protected entry, but I’ve made some password protected pages. They seem to work.
try them here and see if you can access them. Links to pages are in the side nav. Only the ABOUT ME page should be accessible.
Forum: Installing WordPress
In reply to: list_cats problems in 1.5My download copy already has the changes listed. However, I still had the same problem and hads to make other changes.
Just a second whilest I find the thread…
Forum: Installing WordPress
In reply to: Categories no longer in order wp1.5Oh yeah – forgot, in the theme files look for the line
<?php wp_list_cats(' ... '); ?>
whatever is there like
list=0
or something else, just add&children=1
so that it looks like<?php wp_list_cats('list=0&children=1'); ?>
Forum: Installing WordPress
In reply to: Categories no longer in order wp1.5Don’t ask why this works, but it does. I just punch in numbers and see what happens… =P
File: /wp-includes/template-functions-category.php
and look for the following section:
// out of the WordPress loop
function wp_list_cats($args = ”) {
parse_str($args, $r);
if (!isset($r[‘optionall’])) $r[‘optionall’] = 0;
if (!isset($r[‘all’])) $r[‘all’] = ‘All’;
if (!isset($r[‘sort_column’])) $r[‘sort_column’] = ‘ID’;
if (!isset($r[‘sort_order’])) $r[‘sort_order’] = ‘asc’;
if (!isset($r[‘file’])) $r[‘file’] = ”;
if (!isset($r[‘list’])) $r[‘list’] = true;
if (!isset($r[‘optiondates’])) $r[‘optiondates’] = 0;
if (!isset($r[‘optioncount’])) $r[‘optioncount’] = 0;
if (!isset($r[‘hide_empty’])) $r[‘hide_empty’] = 0;
if (!isset($r[‘use_desc_for_title’])) $r[‘use_desc_for_title’] = 0;
if (!isset($r[‘children’])) $r[‘children’] = true;
if (!isset($r[‘child_of’])) $r[‘child_of’] = 0;
if (!isset($r[‘categories’])) $r[‘categories’] = 0;
if (!isset($r[‘recurse’])) $r[‘recurse’] = 0;
if (!isset($r[‘feed’])) $r[‘feed’] = ”;
if (!isset($r[‘feed_image’])) $r[‘feed_image’] = ”;
if (!isset($r[‘exclude’])) $r[‘exclude’] = ”;
if (!isset($r[‘hierarchical’])) $r[‘hierarchical’] = true;list_cats($r[‘optionall’], $r[‘all’], $r[‘sort_column’], $r[‘sort_order’], $r[‘file’], $r[‘list’], $r[‘optiondates’], $r[‘optioncount’], $r[‘hide_empty’], $r[‘use_desc_for_title’], $r[‘children’], $r[‘child_of’], $r[‘categories’], $r[‘recurse’], $r[‘feed’], $r[‘feed_image’], $r[‘exclude’], $r[‘hierarchical’]);
}See the line with HIDE_EMPTY? Change it to a zero [0] and then save.
It worked for me. Supposedly hide_empty is supposed to hide empty categories….
I’ve a question – Is there anyway to sort the grins? I’m not sure what order they are appearing in, but it is always the same order but not the one listed in vars.php or in the smilie directory itself.
I have a lot of smilies and would like to group them in things like
standard smilies
flags
computer
etc(or, possibly just alphabetize them)
btw – using wp1.5
Thanks
?? <- What? No smilies here? ??
Forum: Fixing WordPress
In reply to: 1.5 smilies not working?