siteber
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Can't Restore WordPress Install to New DomainFixed it for you.
problem was resided in wp-config file
Forum: Plugins
In reply to: [WP Super Cache] No Leverage browser cachingto Leverage Browser Caching here is code to the .htaccess
you don’t need plugins…## EXPIRES CACHING ## <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access 1 month" </IfModule> ## EXPIRES CACHING ##
THere are many .htaccess tricks you can playing with to speed up and secure the site as well: Leverage browser caching
Forum: Fixing WordPress
In reply to: Blocked IP address – Helpif RossMitchell method didn’t fix it (i also think might be itheme security plugin). check your .htaccess file, make sure there is no ip being block or restriction on wp-admin access.
Default htaccess file should be
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: Failure Notices after update to 4.0you theme might not compatible with latest version of wordpress. Check with your theme developer and see if they have update coming.
Forum: Fixing WordPress
In reply to: Move my blog to a new domainFor free method, you can use BackUpWordPress to migrate all files over. after that, u can restore database, and update database to your new domain name.
After that, u might want do 301 redirect
Forum: Fixing WordPress
In reply to: Clearing/deleting revisions?here is list of useful wp-config trick
scroll half way down, u will see how to adjust the revision.
you need to do it via wp-config
by defining the WP_POST_REVISIONS to false or how many revision u want
[Redacted]
Forum: Fixing WordPress
In reply to: How do I diagnose my slow website?most likely you need to do some configuration to speed up the site.
If all of them do not work, then it can be your server hosting issue, because your site might be hosted on shared hosting, so you basically shared the server with many other websites, if one of the sites on the server using a lot of cpu, it might slow down your site as well. Contact your host, and investigate the server for u.
Forum: Fixing WordPress
In reply to: It shows my website's name twice in the tags!try to install all in one seo or wordpress seo
and then force rewrite the title (checked)
Forum: Fixing WordPress
In reply to: Plugin downloads not workingfirst, go to ftp,
and then rename the plugin folder
and create a folder call plugins
and then try to add plugin again.
Forum: Networking WordPress
In reply to: 500 Internal Server Error on new Multi Siteit is most likely the .htaccess issue. go to ftp or file manager, and check the code inside, make sure it is correct.
if it is, then it can be memory issue or plugin issues. Here has list of thing you can check regarding to internal server error
Forum: Fixing WordPress
In reply to: Limit number of Link textnever mind, i found a way to do it
Forum: Fixing WordPress
In reply to: WP Auto Updated my sites now I recieve 403 error on login.phptry to manually reupload all wordpress file again.
Forum: Fixing WordPress
In reply to: Theme disapearedyour contact form code might not close properly, remove the code, and look through it
or simply using contact form 7, and using shortcode instead.
Forum: Fixing WordPress
In reply to: Side bar dissapears on new postfor text, you can just add
[nutrition-label id=168]
for php you add
<?php echo do_shortcode('[nutrition-label id=168]'); ?>
Forum: Fixing WordPress
In reply to: How can I have two separate sections of my blog?or you can simply do categories of blog posts; no need for network