ksajdak
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Edit tools and text missingThat did it, thanks.
Forum: Fixing WordPress
In reply to: Edit tools and text missingNo luck.
Plugins:
Aiksmet
Include Me
Post View Statistics
Posts in PageTheme
Diamond ProForum: Fixing WordPress
In reply to: Migrating Site to New siteWould a new install, and using Duplicator to move the database to a new database work?
Forum: Fixing WordPress
In reply to: Migrating Site to New siteTried 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?
Forum: Fixing WordPress
In reply to: System stopped allowing New PostsAdded 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)Forum: Fixing WordPress
In reply to: WordPress.WordPressOrgXMLRPC ApiError error 1Any 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 VanishedWas able to get the system up and running, except . . .
Emails are not being sent.
Any ideas?
Forum: Plugins
In reply to: [WordPress Auction Plugin] Bidder name not supplied.Same error . . .
How do I fix configuration?
Forum: Networking WordPress
In reply to: Installing Multisites IssueThanks,
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.
Forum: Networking WordPress
In reply to: Separated DatabasesWouldn’t using separate databases save server space as the WordPress install is not repeated?
Forum: Networking WordPress
In reply to: Installing Multisites IssueLet 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.
Forum: Networking WordPress
In reply to: Installing Multisites IssueAdditional 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?