abelafonte
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: IIS 404s and Missing Media Files and PostsIn case anyone runs across this error in the future, this thread has the answer. There is a slight change that needs to be made to the wp-db-abstraction “Must Use” plugin:
https://sourceforge.net/projects/wp-sqlsrv/forums/forum/1124403/topic/5004241
// Check for true offset if ( (count($limit_matches) == 5 ) && $limit_matches[1] != '0' ) { $true_offset = true; } elseif ( (count($limit_matches) == 5 ) && $limit_matches[1] == '0' ) { $limit_matches[1] = $limit_matches[4]; }
Count Limit Match should be changed from == 5 to >= 5 like so.
// Check for true offset if ( (count($limit_matches) == 5 ) && $limit_matches[1] != '0' ) { $true_offset = true; } elseif ( (count($limit_matches) >= 5 ) && $limit_matches[1] == '0' ) { $limit_matches[1] = $limit_matches[4]; }
Forum: Fixing WordPress
In reply to: IIS 404s and Missing Media Files and PostsI’m pretty sure it’s on because I’m running MODx on the same box and it works fine with pretty links.
Also, I still get 404 errors when I am not using pretty links. (?p=123)
So I don’t see how how would that impact what I’m seeing as well as the visibility of my posts in the admin area?Forum: Fixing WordPress
In reply to: IIS 404s and Missing Media Files and PostsI have one and it includes the following:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="Main Rule" stopProcessing="true"> <match url=".*"/> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/> </conditions> <action type="Rewrite" url="index.php/{R:0}"/> </rule> </rules> </rewrite> </system.webServer> </configuration>
Forum: Fixing WordPress
In reply to: list multiple categories in single.phpOh snap! thanks for the quick reply. Flawless. I’ll have to bookmark that codex page.
Forum: Fixing WordPress
In reply to: list multiple categories in single.phpGreat code. How would I make it so that each category is linkable?
Forum: Themes and Templates
In reply to: Help with posts_nav_link, does not workHere is a simpler php call that I’ve found works as well
<?php posts_nav_link(' • ', __('« Newer Entry'), __('Older Entry »')); ?>
Forum: Plugins
In reply to: Problem deactivating EditorMonkey 2.5EditorMonkey turns off your user’s visual editor so it can function.
Log into your WP admin section, go to ‘Users’ and click ‘edit’ on your user.
The first thing you see is a checkbox that says “Use the visual editor when writing”.
Turn that back on and you should be back in business.
Forum: Installing WordPress
In reply to: “NEXT PAGE” button HELP !!!Axel,
I finally found a thread that got mine working. I had to change the function used to query posts.
<?php if( is_home() ) { $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=3&showposts=2&paged=$page"); } ?>
Only I took all the arguments out that I don’t need, and left
paged=$page
It came from this thread https://www.ads-software.com/support/topic/38210?replies=14
Forum: Themes and Templates
In reply to: Help with posts_nav_link, does not workTenetor,
I finally found a thread that got mine working. I had to change the function used to query posts.
<?php if( is_home() ) { $page = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=3&showposts=2&paged=$page"); } ?>
Only I took all the arguments out that I don’t need, and left
paged=$page
It came from this thread https://www.ads-software.com/support/topic/38210?replies=14
Forum: Themes and Templates
In reply to: Help with posts_nav_link, does not workI don’t know if I was hallucinating, but I know posts_nav_link was working for me earlier this week. Now, I’m having the same problem you have.
In my search, I found this thread, but it’s not relevant for 2.3.
I’m eagerly awaiting an answer from SOMEBODY! But, from the looks of it, we’re in for a long wait.
Forum: Installing WordPress
In reply to: “NEXT PAGE” button HELP !!!Well, I’m still working on this and found this thread, but the files they suggest to edit do not contain the mentioned code in version 2.3.
Does anyone have an idea what could be edited based on what the above thread mentions?
Forum: Installing WordPress
In reply to: “NEXT PAGE” button HELP !!!I’m having this problem as well. It was working yesterday, and something happened that killed the functionality.
I’m on 2.3 and I’ve tried disabling all plugins, changing the number of posts per page and a ton of other things.
Nothing has worked.
Has anyone discovered why this might be happening?
(I’ve also noticed that this support site is short on helpful replies. I hope it doesn’t die like PHP Nuke!)