paranoid-onion
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Broken Admin PanelI am still a bit confused on where you want me to start. I read the permissions page.
This is what the error I’ve been having says:
“The server encountered an unexpected condition which prevented it from fulfilling the request.
The script had an error or it did not produce any output. If there was an error, you should be able to see it in the error log.”When I search for IfModule mod_rewrite.c I can’t find the file. Are you asking me to download wordpress again and replace the files one by one?
Forum: Fixing WordPress
In reply to: Broken Admin PanelI’m guessing no one has any advice for me whatsoever.
Forum: Fixing WordPress
In reply to: linking to a recent post in a specific categoryWhen I put that in it made the page not work.
I’ve tried just reposting the code before and replacing the category number, but the paging is ruined when I do that. Since I will be posting web comics, I want them all to be viewable with the next, previous, first, last, etc. buttons. It just seems paging is my major obstacle here. I want a category too be navigatable, so you can view one category without any of the other ones showing up and navigate all of the pages filed under that category.
Forum: Fixing WordPress
In reply to: Catagory queries breaking the pagingBefore I switch the theme and try to work out other solutions, here is what my code looks like under the theme I’m having trouble with. It is a generic wordpress theme.
<?php $temporary = $wp_query; // set the defined new query query_posts('showposts=3&cat=comics-media'); if(have_posts()) : while(have_posts()) : the_post(); ?> POST JARGON <?php endwhile; ?> <?php if (next_posts_link() || previous_posts_link()): ?> <?php next_posts_link('« Older Entries') ?> | <?php previous_posts_link('Newer Entries »') ?> <?php endif ?> <?php else : ?> <h2>Not Found</h2> <p>Sorry, but you are looking for something that isn't here.</p> <?php get_search_form(); ?> <?php endif; $wp_query = $temporary; //reset it back to normal ?>
Forum: Fixing WordPress
In reply to: Catagory queries breaking the pagingI tried figuring out comicpress, but I’m not exactly sure if that is any better for me being I’d have to relayout the whole theme again
Forum: Fixing WordPress
In reply to: Cleaning up Permalinks messes up my headerForum: Fixing WordPress
In reply to: Different Blog feeds on Different PagesDoes anyone have any idea where I can find information on this?
Forum: Themes and Templates
In reply to: Header and side images don’t show on specific pages!I reset my permalinks and the problem fixed itself. WEIRD.
Sorry for wasting space!
Forum: Themes and Templates
In reply to: Header and side images don’t show on specific pages!I also tried using absolute paths, but to no avail
Forum: Fixing WordPress
In reply to: Help letting my wordpress automatically update .htaccessI’m trying to get permissions changed on the .htaccess file directly and I enabled my file directory so that it shows files that start with “.”, but I cannot locate or figure out the proper place to make this file
Forum: Themes and Templates
In reply to: Glitchy behavior on single.php pageshttps://paranoidonion.com/?p=1#comments
This is the page that has the problem mentioned in the first post
Forum: Themes and Templates
In reply to: Glitchy behavior on single.php pagesAnother unrelated problem (but 2nd to the first)… I was forced to use negative padding on the first page to keep the content area from having weird spaces on the top and bottom of the page below the menu and above the footer. Not as important to solve as my first problem, but if anyone has insight on this one as well I would be very greatful!
Thank you ??
Forum: Themes and Templates
In reply to: Woah, what happened?I just realized it only did that to my page because I made it a sub page, why does it do this?
Forum: Themes and Templates
In reply to: Woah, what happened?I’m convinced this must be a CCS problem though, not an HTML problem. Regardless of the number of errors in my HTML, the work page which has significantly less content does not have any display problems. I tried removing content from the other page and it still was cut off. The errors make no sense. How am I supposed to understand “Attribute “HREF” is not a valid attribute. Did you mean “href”?”.
Forum: Themes and Templates
In reply to: Link CustomizationNever mind, it was a conflicting code and I was able to figure it out…