Paul
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: google crawling issueTry re-updating your permalinks and make sure you have .htaccess set and that there are WordPress inserted rules.
Forum: Installing WordPress
In reply to: New Install Using Old DatabaseYes… at least that’s how I do it. Check this link if that’s how you want to do it.
Yeah, you’ll have to check with your host.
Forum: Fixing WordPress
In reply to: Warnings when clicking on Media – LibraryIt’s a WordPress bug. You can try intalling the hotfix plugin to temporarily address the issue until it’s fixed in the next WordPress core release.
Forum: Fixing WordPress
In reply to: Other pages are not showingOh yeah, re-updating Permalink might also do the trick.
Forum: Fixing WordPress
In reply to: Other pages are not showingBecause your permalink looks okay, just that the server can’t find or doesn’t know how to find the page it suppose to go to. Check if your root folder have a .htaccess file via FTP or if your using cPanel’s File Manager, open your domain’s folder and make sure that the “Show hidden files” option is checked. Find the file within the folder, if it’s there, open it and check if it has an entry of something like…
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Installing WordPress
In reply to: New Install Using Old DatabaseYou are right. Something will go wrong.
It would be much safer to separate the database of the live site from the testing site.Highly likely if you didn’t do anything on the WordPress site before it happened.
Forum: Fixing WordPress
In reply to: WordPress pages/posts wont updateTry deactivating the plugin that may have to do with post/page editing. Update your post and check. If the post gets updated, then you have your culprit. If not, try deactivating other plugins (one by one) and try updating your post again.
Forum: Fixing WordPress
In reply to: Other pages are not showingIt seems to be a .htaccess issue. Check that first.
Forum: Fixing WordPress
In reply to: google crawling issueI don’t think there’s a whitespace in %post name%. It should be
%postname%
. Try removing the space. As it will spit out Bad Request or Not found error.Forum: Fixing WordPress
In reply to: How to work on a theme without it being live?1. Make a subdomain of your main domain.
2. Export database of live site and save it.
3. Create a new database and database user.
4. Restore/Import the backup/exported database sql file to the newly created database.
5. Change all URL reference to your live site to the new subdomain URL by sql query (check this link on how to do that).
6. Copy (not Move) over the files from your live site to your subdomain folder.
7. Edit thewp-config.php
, replaceDB_NAME
,DB_USER
,DB_PASSWORD
(maybe also your Authentication Unique Keys). Then save the file.
8. Visit your subdomain’s URL and finish the WordPress installation. (Create admin user, site name, etc.)
9. Login to admin panel, go toSettings > Privacy
and tick “I would like to block search engines, but allow normal visitors” radio button. If you want, you can also add robots.txt in the root folder disallowing all spiders on your subdomain folder.
10. Done! That is, if I haven’t missed a step. Lol.Forum: Fixing WordPress
In reply to: Permalink Default SettingWordPress automatically changes the .htaccess when you update your permalinks. In case it cannot, you will have to check it with your host. Usually the dot files (like .htaccess) may be found in the root folder. If you’re using cPanel, tick the ‘Show hidden files’ checkbox before opening the domain’s folder in File Manager.
Forum: Fixing WordPress
In reply to: How can I make a static link in the menu, not a pageIf your theme supports WP Menus you can check the docs on WP Nav Menus. Otherwise, you will have to code this in your theme or functions file.
Forum: Fixing WordPress
In reply to: CSS font-size line has no effectYour
p
tag’s text is wrapped in aspan
with inline stylefont-size: small;
remove that first as it will override your styles from an external file. Either check you theme how this is generated or perhaps a plugin you might have installed.