rwt
Forum Replies Created
-
Forum: Plugins
In reply to: Combine multiple feeds into one?Do you want it combined so you can read them in your RSS Reader as if they are one feed?
Or do you want to display them on your website as one feed?
For the former, I would use Rojo as your Reader. You can tag the feeds with the same tag name. Clicking on that tag will displays all those feeds like they are one.
For the latter, I recommend using CaRP.
Forum: Fixing WordPress
In reply to: bloginfo / RSS feedsIn the header section of your main blog page make sure your feed information looks like the following:
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”alternate” type=”application/rdf+xml” title=”RSS .92″ href=”<?php bloginfo(‘rss_url’); ?>” />
<link rel=”service.feed” type=”application/atom+xml” title=”Atom0.3″ href=”<?php bloginfo(‘atom_url’); ?>” />
Forum: Fixing WordPress
In reply to: ghost .htaccessBack in the dustbin of my mind I recall knowing this. Unfortunately, I knew it way back when I originally set up the sites. In the end then, I was just confusing myself because I had forgotten I had used the index.php hack. Thanks.
Forum: Fixing WordPress
In reply to: ghost .htaccessI have a couple of blogs. In one, WordPress is install in a subdirectory. In the other, WordPress is installed at the root. The behavior described occurs with both. Both sites are hosted on the same host.
There is an .htaccess file that resides outside the main directory for each site. I’ve comtemplated whether this was the problem. However, it never has been a problem in the past. Its contents are as follows:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName http://www.siteone.com
AuthUserFile /home/mysites/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/mysites/public_html/_vti_pvt/service.grpRewriteEngine on
RewriteCond %{HTTP_REFERER} !^http://sitetwo.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://sitetwo.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://siteone.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://siteone.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.sitetwo.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.sitetwo.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.siteone.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.siteone.com$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|bmp)$ – [F,NC]Forum: Fixing WordPress
In reply to: ghost .htaccessOK…another test…
I blanked out the .htaccess file: website still works.
I put gibberish in .htaccess file: website fails.
I blank out .htaccess file again: website works.
If I add new rules: changes dont go into effect.
If I add gibbersih: it seems to read it and tanks everything.What only recognize gibberish?
Does this get back to AllowOveride All? But if it was set to AllowOverride None then the gibbersih would not even have an effect (at least thats my understanding, heck Apaches own site even says so.)
Even though it is blanked out, it still retains all the permalink and such. Is this just me and my lack of true understanding or is this weird?
Is WordPress retaining its own setting somewhere else????
Forum: Fixing WordPress
In reply to: ghost .htaccessWell here is the wonderful answer from my hosting company:
No there is no way to hide the .htaccess file in the file manager.
Still in search of the phantom .htacess file…
Forum: Fixing WordPress
In reply to: wp_get_links creating blank entry – help?Thanks!