bytewarrior
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Only one item on front page1. Sorry for posting the code here.
2. Thanks, I found the answer there. ??
Forum: Fixing WordPress
In reply to: Posts disappeared (db problem?)OK. It works now. Thanks. ??
> Also, with Instiki – keep a backup !
Thanks for the tip. I’ll keep it in mind! ??
Forum: Fixing WordPress
In reply to: Posts disappeared (db problem?)Absolutely no-one? ??
Forum: Fixing WordPress
In reply to: Posts disappeared (db problem?)Some time before the problem started, I installed Instiki (https://instiki.org/) on my webspace. The server admin had to make some adjustmenst to get this running.
I think the problems started after those adjustments. The thing is: I asked the server admin to revert. He did, but the problem didn’t go away.
Does someone recognize this problem?
Forum: Fixing WordPress
In reply to: Posts disappeared (db problem?)Some more information: apparently I can still edit the posts. If I go in my Dashboard en click on some of the recent posts, they still appear. So the posts still exist and WP finds them…
On the other hand, if I go to Manage Posts, WP says “No posts found.”
This is very frustrating. What can cause this and how can I solve it?
Forum: Fixing WordPress
In reply to: Moving to another server and updatingOK, I found the problem… It was a mistake in httpd.conf, the Apache configuration. I read the solution in another topic and mailed the server administrator. A couple of hours later, the problem was fixed.
Thanks all for your help! ??
Forum: Fixing WordPress
In reply to: Moving to another server and updatingDianeV: Removing the IfModule tags didn’t help. Same problem…
Forum: Fixing WordPress
In reply to: Moving to another server and updatingI’m trying to make the URI’s almost the same as on my other server. Everything worked OK there…
I think the transition from one server to another has something to do with it. Maybe an option that’s not interpreted correctly or so.
Forum: Fixing WordPress
In reply to: Moving to another server and updatingUpdate:
The normal posts (without rewriting) are working without a problem.
Example: https://branders.name/index.php?cat=2So this seems to be a RewriteRule problem.
Here is my .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [S=35]
RewriteRule ^feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1 [QSA,L]
RewriteRule ^(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1 [QSA,L]
RewriteRule ^page/?([0-9]{1,})/?$ /index.php?&paged=$1 [QSA,L]
RewriteRule ^comments/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1&withcomments=1 [QSA,L]
RewriteRule ^comments/(feed|rdf|rss|rss2|atom)/?$ /index.php?&feed=$1&withcomments=1 [QSA,L]
RewriteRule ^comments/page/?([0-9]{1,})/?$ /index.php?&paged=$1 [QSA,L]
RewriteRule ^search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?s=$1&feed=$2 [QSA,L]
RewriteRule ^search/(.+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?s=$1&feed=$2 [QSA,L]
RewriteRule ^search/(.+)/page/?([0-9]{1,})/?$ /index.php?s=$1&paged=$2 [QSA,L]
RewriteRule ^search/(.+)/?$ /index.php?s=$1 [QSA,L]
RewriteRule ^archives/category/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?category_name=$1&feed=$2 [QSA,L]
RewriteRule ^archives/category/(.+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?category_name=$1&feed=$2 [QSA,L]
RewriteRule ^archives/category/(.+)/page/?([0-9]{1,})/?$ /index.php?category_name=$1&paged=$2 [QSA,L]
RewriteRule ^archives/category/(.+)/?$ /index.php?category_name=$1 [QSA,L]
RewriteRule ^archives/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?author_name=$1&feed=$2 [QSA,L]
RewriteRule ^archives/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?author_name=$1&feed=$2 [QSA,L]
RewriteRule ^archives/author/([^/]+)/page/?([0-9]{1,})/?$ /index.php?author_name=$1&paged=$2 [QSA,L]
RewriteRule ^archives/author/([^/]+)/?$ /index.php?author_name=$1 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&day=$3&paged=$4 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /index.php?year=$1&monthnum=$2&day=$3 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&paged=$3 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/?$ /index.php?year=$1&monthnum=$2 [QSA,L]
RewriteRule ^archives/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&feed=$2 [QSA,L]
RewriteRule ^archives/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&feed=$2 [QSA,L]
RewriteRule ^archives/([0-9]{4})/page/?([0-9]{1,})/?$ /index.php?year=$1&paged=$2 [QSA,L]
RewriteRule ^archives/([0-9]{4})/?$ /index.php?year=$1 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&tb=1 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&feed=$5 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&paged=$5 [QSA,L]
RewriteRule ^archives/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/?([0-9]+)?/?$ /index.php?year=$1&monthnum=$2&day=$3&name=$4&page=$5 [QSA,L]
</IfModule>
Forum: Fixing WordPress
In reply to: Moving to another server and updatingYes. I opened the WP Options and copy/pasted the new .htaccess to the WP directory.
I alsy asked the admin of the server if mod_rewrite was installed and running correctly and that’s ok.
Are the <IfModule mod_rewrite.c>-tags necessary?
Forum: Requests and Feedback
In reply to: MT vs WP vs TxP ReviewI think Scrivs has a point there. For most users the interface IS the software, so it should look as good as possible. But I didn’t chose for WP for the interface, I chose it because of it’s features!
I would be nice though if the interface was changed somehow. And I really like the mockup Scrivs made. It’s a simple and clean layout.
Maybe WP could offer the possibility to chose between different layouts. With CSS anything is possible…Forum: Fixing WordPress
In reply to: Separate frontpage templateBut wouldn’t that screw up the whole rewriterule system??
And could you give an example please. I’m not that good at RewriteRules :-). Thanks….Forum: Fixing WordPress
In reply to: password protectionYou can use .htaccess for that. For more information about .htaccess protection, see this page
Forum: Themes and Templates
In reply to: Serif vs. Sans-SerifMaybe there could be some kind of styleswitcher specifically for the admin area. It would be neat if it was possible to change styles in the options window… ??
Maybe a style for each day of the week… ??Forum: Everything else WordPress
In reply to: FTP ClientI’m using FileZilla.