vielhuber
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Homepage infinite loop?Hi!
I have exactly the same problem.
As cartel_martijn mentionned, the problem arose a few days ago and then everything worked again and I don’t know why.
Now the problem arises again and I don’t know what to do.
Is this really true that Polylang is NOT compatible with a Multisite Network (+ Domain Mapping) solution?
If I turn off primary domain check, then other domains simply get redirected and that is not what I want.
Any help would be great.
Forum: Plugins
In reply to: [Polylang] Polylang breaks Multisite network (endless loop)Further investigation:
It has something to do with the start page of the subpage:
If I create another page and go directly to it, everything works fine.
Only the page set as frontpage loops endlessly between
https://subpage.tld.com/de/ and https://mainpage.tld.com/subpage/de/Forum: Plugins
In reply to: [Polylang] Polylang breaks Multisite network (endless loop)I now have a clue:
I’ve chosen a Domain Mapping in subdomain format:
Main page:
https://mainpage.tld.comSubpage:
https://subpage.tld.com (mapped primary domain)
https://mainpage.tld.com/subpage (standard wordpress subfolder domain)The loop happens if I go to https://subpage.tld.com/de/,
it loops between
https://subpage.tld.com/de/
and https://mainpage.tld.com/subpage/de/Somehow polylang is not aware of the mapped primary domain!
Any help would be appreciated.
Forum: Plugins
In reply to: [Custom Content Type Manager] Permalinks not working@cassihl
This worked for me.Forum: Plugins
In reply to: [Custom Content Type Manager] Fatal error on opening pages contentAnother approach is to replace it manually:
$cctm = get_option('cctm_data'); foreach( $cctm["cache"]["helper_classes"]["fields"] as $key=>$f ) { $cctm["cache"]["helper_classes"]["fields"][$key] = str_replace("OLD BASE PATH","NEW BASE PATH",$f); } foreach( $cctm["cache"]["helper_classes"]["filters"] as $key=>$f ) { $cctm["cache"]["helper_classes"]["filters"][$key] = str_replace("OLD BASE PATH","NEW BASE PATH",$f); } update_option( "cctm_data", $cctm );
Forum: Fixing WordPress
In reply to: What's your work routine when developing a webpage?Thanks for your answers!
Christine: But what is your routine afterwards, when you moved the files onto the server? How do you edit them?
Forum: Plugins
In reply to: [Google Analytics Dashboard] [Plugin: Google Analytics Dashboard] Loading…It always shows “Loading…” in the Dashboard.
I use WordPress 3.1.1 and Version 2.0.3 of your Plugin.
Is it possible that you provide more error messages in your program, that this problem can be identified?
Forum: Plugins
In reply to: [Fotobook] [plugin fotobook] Can’t get albumsSorry, this plugin is broken.
Can’t even get albums without fanpage hack.
It shows always “There are no albums.”
Everything enabled.
With and without profile ID, nothing is showing up.
Everybody else has this problem?Sorry, none of the above methods seem working.
The Dashboard Widget ist not showing, there is always
“Loading…”What is the current status about this issue and the forum?
Forum: Fixing WordPress
In reply to: get_user_meta destroys backslashes!!!oops
$message = str_replace(“\\”,”& # 9 2 ;”,$message);
without the spaces between!Forum: Fixing WordPress
In reply to: get_user_meta destroys backslashes!!!Fixed.
Before saving:
$message = htmlentities(stripslashes($_POST["message"]),ENT_COMPAT,"UTF-8"); $message = str_replace("\\","\",$message);
Before output:
$message = str_replace("\","\\",$entry);
Forum: Fixing WordPress
In reply to: get_user_meta destroys backslashes!!!How can i submit special characters in my custom fields?
Backslashes simply disappear after a get_user_meta.Forum: Fixing WordPress
In reply to: get_user_meta destroys backslashes!!!nobody?
Forum: Fixing WordPress
In reply to: Permalink Structure: Make an exception!!!Sorry, doesn’t work! Your suggestion seems to be to simple.
I tried
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} profile/(.*)
RewriteRule . /profilepage/?user=%1 [L,R=301]
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>and now i am redirected correctly.
/profilepage/ is a prepared page!The problem now: The new URL is shown in the adress bar.
I only want the “fake” URL to be shown!
If i remove the R=301, i get a 404
(because it seems to interfer with the other rewrite rules!).