Nedyken
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Malicious files keeps coming back over and over againThis exact same issue is happening to me and it’s driving me NUTS. I’ve done fresh installs of wordpress multiple times… I can’t figure out what is causing this. Every few days some ico file gets uploaded and my host provider’s scan disables all my wp-config, wp-settings and index phps…
Forum: Fixing WordPress
In reply to: How can I view my content on an old broken wordpress?Thanks Dion! That release archive was super helpful. I was able to fix all my broken pages.
Forum: Fixing WordPress
In reply to: Why do I have to select an “author”??Anyone know why I have to select a specific author and can’t print it under the username of my Admin ?
Forum: Fixing WordPress
In reply to: Help with .htaccess and RewriteRuleHey I just spent a lot of time trying to play with the htaccess file for this reason:
I had a lot of old html files and i wanted to route it to the new page locations.
I found that it was rather simple.
Example: If I had a page at http://www.domain.com/blog/hello.html and the new location was http://www.domain.com/wordpress/blog/bingo.html it was as simple as adding this:
Redirect /blog/hello.html http://www.domain.com/wordpress/blog/bingo.html
Maybe that’ll help… worked for me.
Forum: Fixing WordPress
In reply to: Moving WordPress to root…Actually, better yet… is there one specific file I can place in the root directory that I can edit that will make it so I can specify the redirects for each address. Like tell it:
For now on:
http://www.nedyken.com/movies/rachelzevita.htmlGoes to:
http://www.nedyken.com/movies/new-movie-the-rachel-zevita-tribute-video/And then I could delete all the old html files?
Forum: Fixing WordPress
In reply to: Tips for Designing within an existing template?… because then it would look like a basic wordpress template?
Forum: Fixing WordPress
In reply to: Font size different in IE and Firefox?Ok now it’s extremely screwed up (for anyone looking).
I need tips on how to put a wordpress feed within: the existing layout (large white square in the middle) of http://www.nedyken.com
Forum: Fixing WordPress
In reply to: Font size different in IE and Firefox?Oh I realize it’s messed up right now. I have an existing page here: http://www.nedyken.com and I just started playing with WordPress today. I don’t have the ability or skill to completely redesign my page from scratch so instead I’ve taken the code that was in the classic theme index.php and pasted it into my existing template. Then I tried working on the style.css to make it look correct.
I spent a lot of work on getting the design of my page to look correct… I’m not going to abandon it and upload a completely generic looking wordpress just for the sake of its features…
I’ll worry about making the content relevant, making the links work and making it look prettier in the future. Right now my main concern is that the text for the feed appears drastically different in IE than it does in Firefox…
Perhaps I can start over if you can tell me what would be the easiest way to accomplish this (earlier I was told to modify the classic template).
Visit: http://www.nedyken.com … it’s all manually written within <div class=”article_content”> . All i really need is for my blog posts to spit out within that large white box… and I’m having a really tough time getting that to look correct.
Forum: Fixing WordPress
In reply to: Font size different in IE and Firefox?why would they display differently?
Forum: Fixing WordPress
In reply to: Font size different in IE and Firefox?Hey anyone have any idea why the font size on the date and subject appear normal size in firefox and tiny in IE for my test blog? http://www.nedyken.com/wordpress
Forum: Fixing WordPress
In reply to: Having Multiple AuthorsThanks for the links samboll! I’ll check them out right now. I just needed to be shoved in the right direction. You rule.
Forum: Fixing WordPress
In reply to: Displaying Excerpts OR Content on the Main page?I installed the “excerpt reloaded” addon and then used this code:
<?php if(is_home()) {
the_excerpt_reloaded(120, ‘<img>’, ‘filter_type’, use_more_link, ‘more_link_text’, force_more_link, fakeit, fix_tags); the_content(__(‘(more…)’)); } else {
the_content(__(‘(more…)’));
} ?>Seems to work… on the main page I now have the option of having html excerpts, full content, or partial content with “more”…
Forum: Fixing WordPress
In reply to: I can’t get Excerpts to Show upexcept that now the excerpt will display on the main article page as well…
Forum: Fixing WordPress
In reply to: I can’t get Excerpts to Show upOOOH Ok I figured it out. This is what lack of sleep and common logic does for you. I was under the impression that in my index.php I had to use EITHER the_content OR the_excerpt. It didn’t dawn on me until now that I could just paste <?php the_excerpt(); ?> above <?php the_content(__(‘(more…)’)); ?> and then have the option of which one i wanted to display (and using the MOre tag to hide my entire content). Oh well… alls well that ends well….
Thanks for the tough love, Otto…
Forum: Fixing WordPress
In reply to: I can’t get Excerpts to Show upOtto I may have misinterpreted this:
“Excerpt
An Excerpt is a summary or brief teaser of your posts featured on the front page of your site as well as on the category, archives, and search non-single post pages. WordPress handles Post Excerpts in two ways. One is by an explicit excerpt and the other is through the use of the Quicktag button more. If you want to have a summary of the post show, rather than the first paragraph or so, write the summary of your post in the excerpt field.”Just from reading that I get the impression that If I had a ton of text in main post, but a short summary in the “optional excerpt” field… the “optional excerpt” content would display by default on the main page…