sokai
Forum Replies Created
-
Forum: Plugins
In reply to: [OpenID] [Plugin: OpenID] Works just fine; follow instructionsFor me it dosn’t work. ??
I have the same behaviour like “seriousmatters” and “mtrolley” wrote 10 month ago – I can’t login (without any error messages).Also mysterious is that I have another blog on the same server that works. So it must have to do sth. with my settings on the not working blog. (I disabled all plugins and it didn’t help…)
Some hints, maybe?
Thanks and best regards,
Kai@all people heaving problems with special characters:
Look here for the fix -> https://www.ads-software.com/support/topic/423686?replies=4#post-1598064Best regards!
sofar|sokaiThanks Kirijun!
After I read the Changelog for that Plugin I found the following comment in version 2.1.1: “Added htmlentities to post titles”.
So the solution for correct implementation of htmlentities in WP is to give it the used charset, too (like Kirijun wrote).
htmlentities is used two times in wordpress-popular-posts.php (v2.1.3): line 624 and line 630.
The best way would be:- Define the blog charset in wordpress-popular-posts.php
Maybe before the first htmlentities occures.
$bcharset = get_bloginfo('charset');
- Change line 624 to
$title_attr = htmlentities($tit, ENT_QUOTES, $bcharset, FALSE);
- Change line 630 to
$tit = htmlentities($tit, ENT_QUOTES, $bcharset, FALSE);
@héctor Cabrera (the Plugin Author):
Please fix that ASAP! – Thanks!sofar|sokai
Forum: Plugins
In reply to: [Plugin: Simple Tags (RC1.2)] Simple Tags 1.7.1-rc1.2 activation error?JFYI: No error message and ST is working again. ??
@amaury
Thanks a lot!Forum: Fixing WordPress
In reply to: Query_posts, offset and pagination@t31os_
Thanks a lot for your code! *works* ??But:
What’s up with “sticky” posts? They appear twice in the loops… ?? Do you have a idea for solving that problem?Thanks a lot,
sokaiForum: Fixing WordPress
In reply to: html ascii code in blogtitle doesn’t work since 2.7.1 upgradeThanks a lot nmelloy for your hint! ??
Can you tell me how I correct the use of ampersands in the blog title?I use it on https://kur-sommer.de (sry for the ‘ad’ of my parents homepage ;)) and the W3 validator marks the “
&
” in the title of all pages. That comes from the blog title in WordPress, where I can’t change the ampersand to “&
” or (as html ascii code) “& #38;
“.Thanks in advance,
sokaiForum: Requests and Feedback
In reply to: Popularity Contest type plugin for 2.7You can try the fixed plugin at dyasonhat.com or the “Recently Popular” plugin.
sofar|sokai
Forum: Fixing WordPress
In reply to: ‘Previous entries’ gives 404@emartin24
+1You are my hero! ??
Your patch did the trick for me and my permalink problem on WP2.7.Look at https://sokai.name/blog/ and use the links “?ltere Beitr?ge” und “Neuere Beitr?ge”.
That page (slug: “blog”) is a static page for my posts.
As custom permalinks I use “/blog/%postname%/”.Thanks again… Now my next wish is changing the default pagination text “page”… ??
sofar|sokai
UPDATE
*damn* …now I can’t see any post I wrote… (Just click on a post title and you will get a 404.)Someone can make another suggestion!? *hopeso*
I’m willing to make some tests! ??Forum: Installing WordPress
In reply to: Apache Crashes when executing the install PressPlease look further at this thread: https://www.ads-software.com/support/topic/150756?replies=7#post-706423
Maybe ther will be posted a solution as quick as possible.
sofar
sokaiForum: Installing WordPress
In reply to: install.php shows strange thingsPlease look further at this thread: https://www.ads-software.com/support/topic/150756?replies=7#post-706423
Maybe ther will be posted a solution as quick as possible.
sofar
sokaiForum: Installing WordPress
In reply to: install.php reports some sql query error.I have the same problem with a today-svn-snapshot of 2.5 (and an older stable release of 2.3.2) and I can’t solve… *bump*
My sytem is Linux (CentOS 4.3), Apache (2.2.8), MySQL (5.1.11-beta) and PHP (4.4.7 & 5.2.3)Furthermore I have found that problem on several other forum-posts:
– https://www.ads-software.com/support/topic/158018
– https://www.ads-software.com/support/topic/159992
And maybe related in this:
– https://www.ads-software.com/support/topic/131976
That reports are not resolved too.I think after some tests the “only” problem is the initial installation of the database. – Is there a way to manually install the wp-database? (I couldn’t find some SQL-files like other projects have…)
sofar & thanks a lot
sokaiForum: Fixing WordPress
In reply to: 1 specific post on main pageHi! ??
Can someone tell me why the following code breaks my pagination in WP 2.3.1? – I try to show all posts on the “author” page (from the author) with two loops (for my two caterories) with each five posts…
This is the code I use for the category-loop:
<?php $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts($query_string . "&category_name=texte&showposts=5&paged=$page"); // the first category loop if (have_posts()) : ?> <h1>category1</h1> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h1><a>" rel="bookmark" title="permalink ''<?php the_title(); ?>''">“<?php the_title(); ?>”</a> at <?php the_time('j. F Y') ?> »</h1> </div> <?php endwhile; ?> <?php wp_pagenavi('<p class="center">','</p>','back','next',5,false); ?> <?php endif; rewind_posts(); ?>
I get the correct pagination-numbers (in my case “3”) but if I click on “3” (=page 3) I get “404”… ??
Thanks a lot and best regards,
KaiForum: Fixing WordPress
In reply to: Page loading very slowly all of a suddenSorry for my hystery ?? !
It was the server…
@allusion: thanks for your fast answer… - Define the blog charset in wordpress-popular-posts.php