Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bpiltz

    (@bpiltz)

    @t-p thanks but I do not want to power the website’s root the URL needs to have the subdir, too.

    @joy I tried to remove that complete section:
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase //
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . //index.php [L]
    </IfModule>
    But then nothing was loading anymore (some kind of server error). Thus I did not re-save as you described but it threatened me as the wordpress is not the main thing anymore and had to have the prio on the new site running in the first place where this seems to be related to.

    I ended up now using some forking in the index.php in the root:

    <?php

    $requri = $_SERVER[‘REQUEST_URI’];
    if(strpos($requri, ‘wordpress’) !== false){ //if the URI contains the wordpress subdir
    define(‘WP_USE_THEMES’, true);

    /** Loads the WordPress Environment and Template */
    require( dirname( __FILE__ ) . ‘/wordpress/wp-blog-header.php’ );
    }else{ // go to the new page as usual
    // Weiterleitungsziel inkl. 301 Status
    header(“Location:https://event.sensavo.com/index.php&#8221;, true, 301);
    exit;
    }
    ?>

    This works well when starting from the backend and calling some pages (previes) what is all I currently wanted.

    But thanks I may try to run the search/replace plugin as all the images in the articles are broken currently.

    maybe to reduce the number of pictures. But I did not try. In my case this is not a option so I just disabled this function.

    Jup, same problem here but I think I remember it worked before with the same versions (Slideshow and WP). So I consider the size of my diashow to be a reason for the malfunction. I have 44 dias within it. The probelm also exists with the serial numbers (blob bar bottom line). I can only activate pictures with a higher serial number.

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