carab
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS problemProblem solved, RSS is running.
If you ever happen to have a problem with modrewrite, you might find the solution here (as i did):
Forum: Your WordPress
In reply to: Nano-perium.de: Nano-Tech Blog with WordPressForgot to say: Site is in German, but English language contributions are very welcome
Forum: Fixing WordPress
In reply to: RSS problem>Ask the admin? 😉
For non-profit projects I have to be the admin myself, I am running the damnd server – so I trying to understand what I am doing. 🙁
>RewriteEngine On
>RewriteRule ^test.php /test2.php [L]
Doesnt work neither.
Well now I have to find out, how to make mod_rewrite running. I just dont get, why it blocks access, instead of throwing an reasonable error. I mean, its linux, not windows, right?Forum: Fixing WordPress
In reply to: RSS problemMe again.
Is it possible, that mod_rewrite is not running on my server ?
How can I check?Forum: Fixing WordPress
In reply to: RSS problem@kafkaesqui:
did it (even tried multi), doesnt work: ->
Forbidden
You don’t have permission to access /index.php on this server.
Apache/1.3.26 Server at http://www.nanoperium.de Port 80
What is it in those lines that closes my server?Forum: Fixing WordPress
In reply to: RSS problem644 – You cannot update the file/template
777
-> Forbidden
You don’t have permission to access /wp-admin/templates.php on this server.
755 – You cannot update the file/template
Then I changed .htaccess offline, uploaded and then chmod-ed it to all of those numbers: ->
403 Forbidden
You don't have permission to access / on this server.
Apache/1.3.26 Server at www.nanoperium.de Port 80
empty .htaccess uploaded -> everything works fine
How do I grant all users access to a site using .htaccess (in the literature and web i find only examples how to restrict access)?
Maybe that would helpForum: Fixing WordPress
In reply to: RSS problemDosnt make sense, because all other value are IMHO more restrictive then 666 (hell, it _the_ numer), but I will try it anyway.
But the blog ist working still after 666ing it, it only stops wenn I insert those lines from options /permalinks and press “Update file”
So I gess it has to be something in this lines…Forum: Fixing WordPress
In reply to: RSS problemNope, that s not it.
Same host, but different virtual server/domains…
No problem, it I upload a .htaccess containing
DirectoryIndex index.php index.htm index.html
if I chmod 666 .htaccess
and open this within the online template editor , insert the text from options /permalinks and press “Update file” i get
Forbidden
You don't have permission to access /wp-admin/templates.php on this server.
right away. Then I have to
rm .htaccess
to make the blog accessible again.
I am lost….Forum: Fixing WordPress
In reply to: RSS problemI am using serveral .htaccess- Files. When I delete the .htaccess file with the lines from options /permalinks, everything is fine.
Here my .htaccess:
‘
RewriteEngine On
RewriteBase /
RewriteRule ^index.php/archives/category/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?category_name=$1&feed=$2 [QSA]
RewriteRule ^index.php/archives/category/?(.*) /index.php?category_name=$1 [QSA]
RewriteRule ^index.php/archives/author/(.*)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?author_name=$1&feed=$2 [QSA]
RewriteRule ^index.php/archives/author/?(.*) /index.php?author_name=$1 [QSA]
RewriteRule ^index.php/archives/?([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([_0-9a-z-]+)?/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA]
RewriteRule ^index.php/archives/?([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/(feed|rdf|rss|rss2|atom)/?$ /wp-feed.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA]
RewriteRule ^index.php/archives/?([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([_0-9a-z-]+)/trackback/?$ /wp-trackback.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
RewriteRule ^feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1 [QSA]
RewriteRule ^comments/feed/?([_0-9a-z-]+)?/?$ /wp-feed.php?feed=$1&withcomments=1 [QSA]
‘
Is there a conflict with my apache configuration? Or just a bug in those linesForum: Fixing WordPress
In reply to: RSS problemHi,
did everything as supposed, but as soon as I upload .htaccess /(as Ascii)
my server tells me:
‘ Forbidden
You don’t have permission to access / on this server.’
I use a standart LAMP -System.
Blog-dir is root
CAn you help?