Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter ksajdak

    (@ksajdak)

    That did it, thanks.

    Thread Starter ksajdak

    (@ksajdak)

    No luck.

    Plugins:
    Aiksmet
    Include Me
    Post View Statistics
    Posts in Page

    Theme
    Diamond Pro

    Thread Starter ksajdak

    (@ksajdak)

    Would a new install, and using Duplicator to move the database to a new database work?

    Thread Starter ksajdak

    (@ksajdak)

    Tried Duplicator.

    Seems like the tool I need, BUT . . .

    I keep getting a 504 error after step 1.

    I think it is in the database link, but I have everything filled out in creating the backup correct.

    I have tried (new backups each time) leaving hta etc alone, changing hta, specifying a database, not specifying a database, I tried to eliminate the one link to an outside page.

    Still the same error.

    Any ideas?

    Thread Starter ksajdak

    (@ksajdak)

    Added the following code to my wp-config.php file to enable logging:

    define(‘WP_DEBUG_LOG’, true);
    define(‘WP_DEBUG_DISPLAY’, false);
    define(‘SCRIPT_DEBUG’, true);

    Still getting the error for a new post.

    Can’t find a log file created.

    Where would I look?
    (Looked in wp-content/log/wprss)

    Any answer?

    Just started getting this when trying to post.

    Only thing that changed recently on my server is that I added an SSL Certificate.

    Ideas?

    Forum: Plugins
    In reply to: WP Auction Vanished
    Thread Starter ksajdak

    (@ksajdak)

    Was able to get the system up and running, except . . .

    Emails are not being sent.

    Any ideas?

    Same error . . .

    How do I fix configuration?

    Thread Starter ksajdak

    (@ksajdak)

    Thanks,

    Added this code to .htaccess

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wp/
    RewriteRule ^index\.php$ – [L]
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$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).*) $1 [L]
    RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    </IfModule>

    No luck.

    Wouldn’t using separate databases save server space as the WordPress install is not repeated?

    Thread Starter ksajdak

    (@ksajdak)

    Let me add . . .

    My directory structure is

    root
    . . wp (Contains 1st site)
    . . . . carroll (second site)

    When I try to access the Dashboard for the second site (first one works as advertised) I get the error messages.

    If I go to view the site, it looks like a bad mobile site with little formatting.

    If I try to add a post . . . I get a “Not Found” message on the unformatted page display.

    Thread Starter ksajdak

    (@ksajdak)

    Additional update . . .

    Uninstall, reinstalled. Same error.

    Here’s the code from my web/config file:

    <system.webServer>
            <rewrite>
                <rules>
                    <rule name="WordPress Rule 1" stopProcessing="true">
                        <match url="^index\.php$" ignoreCase="false" />
                        <action type="None" />
                    </rule>
                    <rule name="WordPress Rule 2" stopProcessing="true">
                        <match url="^wp/([_0-9a-zA-Z-]+/)?wp-admin$" ignoreCase="false" />
                        <action type="Redirect" url="{R:1}wp-admin/" redirectType="Permanent" />
                    </rule>
                    <rule name="WordPress Rule 3" stopProcessing="true">
                        <match url="^" ignoreCase="false" />
                        <conditions logicalGrouping="MatchAny">
                            <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
                            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
                        </conditions>
                        <action type="None" />
                    </rule>
                    <rule name="WordPress Rule 4" stopProcessing="true">
                        <match url="^wp/([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)" ignoreCase="false" />
                        <action type="Rewrite" url="wp/{R:1}" />
                    </rule>
                    <rule name="WordPress Rule 5" stopProcessing="true">
                        <match url="^wp/([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" />
                        <action type="Rewrite" url="wp/{R:2}" />
                    </rule>
                    <rule name="WordPress Rule 6" stopProcessing="true">
                        <match url="." ignoreCase="false" />
                        <action type="Rewrite" url="index.php" />
                    </rule>
                </rules>
            </rewrite>
        </system.webServer>

    And from my wp-config file:

    /* Multisite */
    define( 'WP_ALLOW_MULTISITE', true );
    define('MULTISITE', true);
    define('SUBDOMAIN_INSTALL', false);
    define('DOMAIN_CURRENT_SITE', 'sportsage.net');
    define('PATH_CURRENT_SITE', '/wp/');
    define('SITE_ID_CURRENT_SITE', 1);
    define('BLOG_ID_CURRENT_SITE', 1);
    
    /* That's all, stop editing! Happy blogging. */

    Help?

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