muesliq
Forum Replies Created
-
I entered the code DEV50OFF at checkout and got the error message “This discount is not active”.
Forum: Plugins
In reply to: [Personal Fundraiser] Personal Fundraiser HelpHi John, thanks for looking into this! Do you know already when the next plugin version is due? Cheers, Helge
Forum: Plugins
In reply to: [Personal Fundraiser] Personal Fundraiser HelpI have a similar problem (on a fresh WP install with pretty permalinks):
When entering a URL slug for a new campaign a tooltip says “Please wait while we validate this location”. Nothing happens. Debugger says it’s an Ajax 404.
Test here: https://photoblog.helge.at/causes/dein-geburtstag-fur-laafi/
PS: Great great plugin. Was thinking about doing exactly that when I saw that you had already. Our NGO finances hospitals in Burkina Faso.
Forum: Fixing WordPress
In reply to: Password protected posts/filesSolved the issue.
Problem was: WP-Cache. Despite it being deactivated I noticed a “served by WP-Cache” comment in the source. So I removed the plugin completely by FTP. That did the trick.
MODERATORS: There are many unresolved threads around this issue. Could you verify my solution and get back on them?
Forum: Fixing WordPress
In reply to: Password protected posts/filesSame here.
I password protected a page and mostly it wouldn’t let me in, despite the correct password. Sometimes though the page is accessible without password, even from a computer that where never before a password had been entered (i.e. no cookie or so).
Forum: Themes and Templates
In reply to: Page.php broken after upgrade to 2.1Update: I somehow found out that the problem disappears if I remove
<?php get_sidebar(); ?>
from the template (or move it from above to below the main content).Why? I still don’t know. At least I know now that page.php and database are both fine.
Will try to find out what’s wrong with the sidebar (and why only for pages).
Forum: Themes and Templates
In reply to: Page.php broken after upgrade to 2.1Hi rudolf, I have read that post before and cannot find how it applies to the code above.
I just don’t understand how and why
the_post()
andthe_content
suddenly print out the loop of blog posts instead of the content of that very page..Also as in the default 2.1-template it works that very same way I don’t understand why it doesn’t in my case.
Could somebody knowledgeable have a look at my database please? Maybe the problem is there..
Forum: Themes and Templates
In reply to: Page.php broken after upgrade to 2.1I now tried to use the php-code from SVN (page.php, content-div) – same problem. Blog index instead of page content.. Help!!
As it might have to do with the database here go the rows in question.
Forum: Themes and Templates
In reply to: Page.php broken after upgrade to 2.1Since the page code is quite short I figured it might be helpful to post it here
<?php get_header(); ?> <?php get_sidebar(); ?> <!--Start CONTENT --> <div class="content"> <!--Start Maincontent --> <div class="maincontent"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="posttitle"><h1 class="page"><?php the_title(); ?></h1></div> <div class="contentwrap"> <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> <!-- ?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ? --> <?php endwhile; endif; ?> <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?> </div> <?php comments_template(); // Get wp-comments.php template ?> </div> <!--End Maincontent --> <div class="contentfooter"><img src="<?php bloginfo('template_url'); ?>/images/main/footercorner.gif" alt="corner" style="display:block; float:left;"/></div> <?php get_footer(); ?>
An example for such a page, not displaying proper content is: https://www.helge.at/contact/ (note the correct tab and <title>, yet incorrect main content)
Forum: Installing WordPress
In reply to: Upgrade from 2.0 to 2.1 got stuck –OK, I finally discovered that Dreamhost has a very convenient, automatic way to switch back to previous DB versions. I switched back and re-ran the upgrade script. Now everything is fine again, database-wise.
I will post the theme issue under a new topic.
Let’s consider this one as RESOLVED.
Thank you very much HandySolo!!
Forum: Installing WordPress
In reply to: Upgrade from 2.0 to 2.1 got stuck –OK, update:
Following Lorelle’s post I have searched all my theme files and found NO occurrencies of depricated templates, except these ones that don’t seem to make problems:
–
list_cats
: continues to display nicely. no problems whatsoever visible.
–link_pages
: in page.php. I have removed that, what it did wasn’t necessary anyway.
–next_post
andprevious_post
: continue to display nicely. no problems whatsoever visible.Nevertheless, page.php is still broken.
Forum: Installing WordPress
In reply to: Upgrade from 2.0 to 2.1 got stuck –OK, but how do I fix page.php? Any ideas?
Forum: Installing WordPress
In reply to: Upgrade from 2.0 to 2.1 got stuck –Ah, another thing: What if I manually set all pages to Post_Type ‘page’? I would then “only” have to fix the theme problem.
What do you think?
Forum: Installing WordPress
In reply to: Upgrade from 2.0 to 2.1 got stuck –I have asked my hoster for a copy. Unfortunately I haven’t backup’ed myself, as I was trusting the automatic script to do that..
Forum: Installing WordPress
In reply to: Upgrade from 2.0 to 2.1 got stuck –I did as you said. Post_Status was ‘publish’, Post_Type was ‘post’. I set it to ‘page’ manually.
Same change as the copy-paste action above:
– Page now produces no 404 anymore.
– Page shows correct <title> but incorrect content, shows main blog index instead of page content.