Title: Realtime64's Replies | WordPress.org

---

# Realtime64

  [  ](https://wordpress.org/support/users/realtime64/)

 *   [Profile](https://wordpress.org/support/users/realtime64/)
 *   [Topics Started](https://wordpress.org/support/users/realtime64/topics/)
 *   [Replies Created](https://wordpress.org/support/users/realtime64/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/realtime64/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/realtime64/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/realtime64/engagements/)
 *   [Favorites](https://wordpress.org/support/users/realtime64/favorites/)

 Search replies:

## Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Robo Gallery - Photo & Image Slider] Missing all gallery controls in backend – Multisite support?](https://wordpress.org/support/topic/missing-all-gallery-controls-in-backend-multisite-support/)
 *  [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/missing-all-gallery-controls-in-backend-multisite-support/#post-7382878)
 * Hi!
 * I have the same problem with my multisite. I bought the Robo Gallery EXT+ licence
   with unlimeted installs but it don’t work: I only could enter the name of an 
   gallery, that’s it.
 * I think it’s better to ask for an refund … 🙁
 * Marc
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Old WP Site don't like the "www." in the URL](https://wordpress.org/support/topic/old-wp-site-dont-like-the-www-in-the-url/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/old-wp-site-dont-like-the-www-in-the-url/#post-6916034)
 * Hi!
 * I’m happy! WP selfrepair itself! I like WP!
    (I think it was a problem with my
   or the old provider …)
 * Marc
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress MU Domain Mapping] Domain – mapping don't work](https://wordpress.org/support/topic/domain-mapping-dont-work/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/domain-mapping-dont-work/#post-5437781)
 * ARGGGHHHHHHHHHHH!!!
 * I got it!!!
 * In my SERVER settings
    * Domain: “target-domain.com” * Home directory: “/wp-installation”(!!!!)
 * In my WP MU:
    * Site ID: 8 * Domain: “target-domain.com” * Primary: No matter.
 * I seem that as I choose “[http://wp-installation.com&#8221](http://wp-installation.com&#8221);
   instead of the WP-installation path “/wp-installation-path” a new DNS call was
   started and the calling-name was replaced.
    … I suppose this …
 * Ron, many many thanks for your inspiration!
 * Marc
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress MU Domain Mapping] Domain – mapping don't work](https://wordpress.org/support/topic/domain-mapping-dont-work/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/domain-mapping-dont-work/#post-5437771)
 * Hi Ron!
 * Thank you for your help … but … it also don’t work 🙁
    I try this with an other
   domain, but it always show the WP install domain.
 * SERVER Configuration:
    * “myIP” is pointed to “[http://wp-installation.com&#8221](http://wp-installation.com&#8221);*“
   target-domain.com” ist pointed to “[http://wp-installation.com&#8221](http://wp-installation.com&#8221);*
   Site ID: 8 * Domain: “target-domain.com” * Primary: No matter.
 * Question: I have a “root” domain “/” for the administration of the other blogs.
   Could this prevent the correct redirection?
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433360)
 * Hi!
 * I resolved the problem … 🙂
 * With [this post](http://wordpress.org/support/topic/500-error-for-a-subfolder-new-site-in-multisite?replies=16)
   and the delete of the “domain” in the .htaccess, it works.
 * Start with code I should im add the .htaccess:
 *     ```
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) DOMAIN/$2 [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ DOMAIN/$2 [L]
       RewriteRule . index.php [L]
       ```
   
 * Then delete the `DOMAIN` and add an `RewriteRule ^([_0-9a-zA-Z-]+/)??les/(.+)
   wp-includes/ms-?les.php??le=$2 [L]` I got this .htaccess:
 *     ```
       # BEGIN WordPress
   
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
   
       # uploaded ?les
       RewriteRule ^([_0-9a-zA-Z-]+/)??les/(.+) wp-includes/ms-?les.php??le=$2 [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
       RewriteRule . index.php [L]
   
       # END WordPress
       ```
   
 * .
 * This works fine!!!
 * Thanks for your help! And … the STRATO Managed Servers will work with this settings
   above!
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433334)
 * Hi Patrick!
 * I got the next message. A technical analyze my .htaccess and wrote me, that my.
   htacces should be working. He also told me that WordPress should be working fine.
   Now he want more information what’s the problem should be.
 * I also don’t think that the .htaccess file won’t work. For example: The `AddDefaultCharset
   ISO-8859-1` works fine.
 * Maybe in the next days we found a solution …
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433324)
 * Hi!
 * Strato has answerd: It is not possible to change configurations of the managed
   servers induvidaly. The configurations would be optimized for security, stability
   and compatibility with other software. The server only could use “as it”.
 * I ask Strato which of the settings are not work. And if Strato know that a software
   like WordPress not work with all options on their servers.
 * … I thing I know the answer …
 * Many thanks for your support! I wait for the answer of Strato an will wort the
   answere here. Than I must thing how I change WordPress (Meta-widget, some designs)
   that WordPress is running on my server.
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433321)
 * Hi Patrick!
 * No, Strato didn’t respond yet. I also thought, that they don’t change the settings
   because they have thousends of identical servers.
 * I read this with the `AllowOverride None` … but the hoster put the setting of
   a protection of directorys in the .htaccess …
 * Edit/Add: I remember that in several directories I create a .htaccess with an`
   AddDefaultCharset ISO-8859-1` in it an … it works fine!
 * We will see what Strato says …
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433310)
 * Hi Patrick!
 * No, the “Managed Server” means that my hoster ensure the functionality of my 
   server. For example: I couldn’t install no software on the server. This is very“
   funny” because I couldn’t install the remote debugging tools for PHP for example.
 * OK, BBT:
 * I look into the /etc/httpd/conf/httpd.conf file. The settings are:
 *     ```
       <Directory />
           Options FollowSymLinks
           AllowOverride None
       </Directory>
       ```
   
 * Funny, or?
 * If I set
    `AllowOverride Options All` I got an `"Permission denied"` if I want
   to save the settings.
 * … as I expected … 🙁
 * If I call via browser
 * `http://domain.de/test/wp-login.php`
 * I got an
 *     ```
       [Sun Dec 22 21:31:49 2013] [error] [client IP_of_my_ISP] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
       [Sun Dec 22 21:31:49 2013] [error] [client IP_of_my_ISP] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
       [Sun Dec 22 21:31:49 2013] [error] [client IP_of_my_ISP] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.
       ```
   
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433303)
 * Hi!
 * Many thanks for your help. I look into my server settings, but there is no “AllowOverride”
   option. The httpd.conf file also could’t be edited, because this is an managed
   server.
 * I contact the technical support to ask which settings are in the httpd.conf file
   and if is possible to set “AllowOverride Options All”.
 * I wrote here the result.
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433279)
 * Hi!
 * Oh … I thought, I had read anything about server capabilities that are required
   for the subdir functionality.
 * I don’t create any folders in the wp dir.
 * The server says:
 *     ```
       Internal Server Error
       The server encountered an internal error or misconfiguration and was unable to complete your request.
       Please contact the server administrator, webmaster@85.214.94.51 and inform them of the time the error occurred, and anything you might have done that may have caused the error.
       More information about this error may be available in the server error log.
       Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
       ```
   
 * Are there any php settings that are required by wordpress? The ISP offers to 
   install WP (an old version, no MultiSide) on my server via the control panel 
   of the server. Maybe I should try to install this version, made a MultiSide an
   upgrade to 3.8?
 * All the blogs working fine … expect of the login in the meta-widget. Also, I 
   got in one blog the same error message after I change the layout. But I expect,
   that the comes no error message if the login error is fixed
 * If this is the only opinion, I would look if I could change the meta-widget. 
   But I thing that this is not the best idea (updates / the error with the layout).
 * Marc
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [MultiSite – login causes Internal Server Error](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/)
 *  Thread Starter [Realtime64](https://wordpress.org/support/users/realtime64/)
 * (@realtime64)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/multisite-login-causes-internal-server-error/#post-4433266)
 * Hi Mika!
 * I started with an empty managed server. And you are right, I can apply subdirs
   manually in my server config. But if I read that wordpress creates the subdirs
   self, I expected problems on my managed server. So I decided to use subdirs.
 * And I expected also that there is a different in between the configuration of
   my installation, so I wrote that “I use subfolders instead of subdirs”.
 * (Sorry, I wrote german much better than english … 😉 )
 * my .htaccess:
 *     ```
       # BEGIN WordPress
   
       RewriteEngine On
       RewriteBase /
       RewriteRule ^index\.php$ - [L]
   
       # add a trailing slash to /wp-admin
       RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
   
       RewriteCond %{REQUEST_FILENAME} -f [OR]
       RewriteCond %{REQUEST_FILENAME} -d
       RewriteRule ^ - [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
       RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ domain/$2 [L]
       RewriteRule . index.php [L]
   
       # END WordPress
       ```
   
 * I replace my domain with “domain” in the .htaccess.
 * TIA!
 * Marc

Viewing 12 replies - 1 through 12 (of 12 total)