philbonsai
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Where is Author Biography Stored?Got it. Thank you!
Forum: Fixing WordPress
In reply to: Pagination works on category page but not main pageI’m using a different CMS for the main site, then WP for the blog, which is installed on /blog directory. We are just forcing a redirect to /blog/wp-content/uploads/post so that we can get to a landing page where pagination works.
Forum: Fixing WordPress
In reply to: Pagination works on category page but not main pageDev site is http://soundtelecom.bonsaimediagroup.com/blog/. The theme is Construct by Squidix
Forum: Fixing WordPress
In reply to: Pagination works on category page but not main pageSo I’ve found a work-around: navigating to /blog/wp-content/uploads/post shows pagination and it works! Now I’m stuck with a less than pretty URL string however. Any good way to take that and translate it to /blog?
Forum: Fixing WordPress
In reply to: Migrating WordPress from Subdirectory to rootBy “reset,” you mean navigate to the page and save it again with the correct permalink?
I even created a brand new test page and the permalink is correct, and clicking on the “view page” takes me to the correct url, but am still hitting the 404. Will this not work without an .htaccess file?
Forum: Fixing WordPress
In reply to: Migrating WordPress from Subdirectory to root@songdogtech, thanks for the resource! I’ve ran the scripts, but in wp_posts, there are still references to domain.com/new instead of just domain.com. The front-end links are referencing the correct paths, but the when clicking on them, I receive a 404. This 404 is from Yahoo I believe and not the custom 404 from WordPress.
Forum: Fixing WordPress
In reply to: Migrating WordPress from Subdirectory to root@krishna, this may be a problem with the host, but I can’t upload or create the .htaccess file. I’ll see if Yahoo can allow that.
Forum: Fixing WordPress
In reply to: Migrating WordPress from Subdirectory to rootForum: Plugins
In reply to: [Plugin: Advanced Access Member] Inserting image requires login?I also tried using Capability Manager with the same dialog box. I’ve deactivated and deleted both plugins and it still appears. It even shows up when I’m logged in as an Administrator. Maybe something in the core files changed by accident…
Forum: Plugins
In reply to: [Plugin: Advanced Access Member] Inserting image requires login?I was logged in as Contributor. After inserting an image into the post, a dialog box appeared asking for a username and password for the URL. I inputted the credentials for the Contributor account I was logged in as. I also tried login info for an Administrator account. Neither worked so I had to delete the image from the post to prevent the dialog from reappearing. Just tried the FTP login and that didn’t work either. Does that help clarify?
Forum: Fixing WordPress
In reply to: Editor layout and formatting not reflected on web pageThanks for the quick jmoseley! As I was making some edits I found the source of my problems >.< A “float:left” that I didn’t notice earlier… Thanks for the help!
Forum: Fixing WordPress
In reply to: Problem with permalinksHmm, so apparently, just publishing a new page, then unpublishing it fixed the problem with the links to other pages.
Forum: Fixing WordPress
In reply to: Allow links in posts displayed on homepageThanks for the response! Unfortunately, I am looking at my theme’s index.php file and there is no the_excerpt() usage. Here’s the pertinent code for posts:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class(); ?>> <?php include("firstimage.php"); ?> <?php include("thumbnail.php"); ?> <h2 class="posttitle"> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a> </h2> <small class="postMeta"> <span class="time"><?php the_time('F j, Y') ?></span> <span class="authorLink"> <?php the_author_posts_link(); ?> </span> <span class="commentLink"> <?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> </span> </small> <p><?php the_content_rss('', TRUE, '', 37); ?> </p> <span class="button alignright"> <a href="<?php the_permalink() ?>">Continue Reading</a> </span>Thanks for any additional insight.
Forum: Installing WordPress
In reply to: Login reloads login pageAny other solutions if orbital’s fix doesn’t work for me? Even incorrect credentials reloads the page — the warning/error in a red box doesn’t appear… Thanks in advance for any insight!