Seaborn
Forum Replies Created
-
Forum: Plugins
In reply to: [ByREV WP-PICShield] Error 500 [resolved]Once I activate it everything goes into 500 Error so I can’t go back in to dashboard and deactivate.
Thru FTP I deleted the plugin from wp-content and all files associated with it – still doesn’t resolve issue.
Once I go into .htaccess and delete the chunk of script the site goes back up. But I have to delete the entire bit that the plugin adds – removing just the “# Header always append X-Frame-Options SAMEORIGIN” line didn’t resolve the problem.
Thanks for your time!
Forum: Plugins
In reply to: [ByREV WP-PICShield] Error 500 [resolved]I’m sorry – I’m still having issues with this. I deleted the:
# Header always append X-Frame-Options SAMEORIGIN
Line from .htaccess and I’m still getting the 500 Error. Is there something I’m missing?
Forum: Fixing WordPress
In reply to: Images aren’t appearing in RSS feedI had the same problem. Realized my feed settings in WP were set to summary and not full text. Changed it, fixed the problem. Might work for some of you out there.
Forum: Fixing WordPress
In reply to: blog by emailI am having the exact same problem. Hosted at Network Solutions, email account works, set to port 2525 in WP but getting that “Connection Timed Out” error.
Any suggestions?
Forum: Fixing WordPress
In reply to: Import RSS Feed as Dynamic Drop Down MenuAny suggestions?
Forum: Fixing WordPress
In reply to: Import RSS Feed as Dynamic Drop Down MenuThats not exactly what I meant. For example, iTunes has a RSS feed that lists music that comes out every week. I want to be able to list that information in a drop down menu.
Forum: Plugins
In reply to: Dynamic drop-down menu.Mushokee, Will your drop down menu work for an RSS Feed. For example, if I wanted to have a drop down menu that listed a handful of titles imported from a feed, would that work?
Forum: Fixing WordPress
In reply to: Multiple loops not working after 2.1I am having a bit of a problem with mulitple loops and 2.1 as well. My code is almost exactly the same as yours and everything displays properly except my comments tag is not displaying. Any advice?
Forum: Fixing WordPress
In reply to: posts not displaying in theme after 2.1 upgradeUPDATE: Found the problem. It was the sidebar. Instead of using the default:
<h2>Recent Posts</h2>
-
<?php get_archives(‘postbypost’,’10’,’custom’,’
- ‘,’
‘); ?>
I was using a cheat to only display topics from certain categories:
-
<h2>Recent Rants</h2>
- ” rel=”bookmark” title=”Permanent Link to “<?php the_title(); ?>””><?php the_title(); ?>
<?php $temp_query = $wp_query; query_posts(“showposts=7&cat=1”); ?>
<?php while (have_posts()) { the_post(); ?><?php } $wp_query = $temp_query; ?>
Apparently 2.1 doesnt like this. I will have to figure out another way to fix the sidebar the way I want but as far as this problem goes, things are resolved.
Thanks for all your help moshu.
Forum: Fixing WordPress
In reply to: posts not displaying in theme after 2.1 upgradeTook that line out and deleted the plugin with no help. Then took default theme again and using dreamweaver copy and pasted css, index, sidebar, etc replacing existing files (all which do not include the get_icon tag) Uploaded under different theme name etc, still got the same problem.
Im starting to go crazy on this one.
Forum: Fixing WordPress
In reply to: posts not displaying in theme after 2.1 upgradeyes, I have put it back in after seeing it didnt fix the problem. That plugin actually plays correctly when using this template.
https://patricksarni.com/blogtest/wordpress/about-2/
Thought it might be some other plugins so I have just deleted a bunch or deactivated all of them with no help. Ive been trying everything I can think of but nothing seems to be doing the trick.
Perhaps it was just an upload problem?
Forum: Fixing WordPress
In reply to: posts not displaying in theme after 2.1 upgradeThat was actually one of the first things i tried. Plugins were deactivated when I installed. Still sifting through looking for a solution.
Forum: Fixing WordPress
In reply to: posts not displaying in theme after 2.1 upgradeIts posted. I compared the index to a couple other ones to themes that worked. Did a little replacing but still got nothing out of it. If someone could take a look, I’m desperate to figure this out.
Forum: Fixing WordPress
In reply to: posts not displaying in theme after 2.1 upgradeCompletely perplexed on this one. The blog that I upgraded is here. You can see what im talking about. This is just a test blog so I can play around with theme edits.
https://patricksarni.com/blogtest/wordpress/
here is a page that uses a custom template with two loops in it. You can see that this calls up the posts but nothing else does. Any help would be greatly appreciated.
https://patricksarni.com/blogtest/wordpress/about-2/
**(note: header images link to actual website with very similar theme)**
Forum: Fixing WordPress
In reply to: posts not displaying in theme after 2.1 upgradeI have created some custom templates for this theme and when activated they pull the posts using the loop, but the main index page as well as all permalinks pull up a “no search results found” item. I am completely stumped.