Hiren Purohit
Forum Replies Created
-
Forum: Plugins
In reply to: [AccessPress Social Share] LinkedIn Count is ZeroI am facing the same issue.
Any chance to resolve this ?
Forum: Fixing WordPress
In reply to: Issue with main navigation in ChromeCheers !!
Forum: Fixing WordPress
In reply to: error on the websiteyou can contact to your hosting provider for same
Forum: Fixing WordPress
In reply to: error on the websiteYou need to FTP access for change/see this files on the server. OR if you have wp-admin access then maybe you can access this from “Appearance -> editor”
Forum: Fixing WordPress
In reply to: error on the websiteYou need to check this “class-tgm-plugin-activation.php” file, may there are some ‘>’ missing for PHP close tag.
Forum: Fixing WordPress
In reply to: Issue with main navigation in ChromeForum: Fixing WordPress
In reply to: Some pages not showing in admin panelGreat!!
Forum: Fixing WordPress
In reply to: Some pages not showing in admin panelHi Laily,
You have almost certainly had a problem with the transfer files onto the server. Very carefully, re-upload all of the files. Maybe I expect some file is missing or corrupt. And make sure that all of your permissions are correct. It would probably be a good idea to disable plugins and switch to a default theme as well. Since you can’t get into the backend you will need to remove or rename the theme and plugin folders via FTP. Since you just transferred, I am assuming that you have good backups.
Thanks
Forum: Fixing WordPress
In reply to: Duplicate SiteYou can use below sql queries to update urls in database.
UPDATE wp_options SET option_value = replace(option_value, ‘https://oldpath’, https://newpath’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
UPDATE wp_posts SET guid = replace(guid, ‘https://oldpath’,https://newpath’);
UPDATE wp_posts SET post_content = replace(post_content, ‘https://oldpath’, https://newpath’);
UPDATE wp_postmeta SET meta_value = replace(meta_value,’https://oldpath’,https://newpath’);
Thanks
Forum: Fixing WordPress
In reply to: Duplicate SiteHi Ellacopter,
I have checked source code from browser and its showing still old path.
See below.
<link rel=”stylesheet” href=”https://www.audioplus.co.uk/wp-content/themes/primepress/style.css” type=”text/css” media=”screen” />
<link rel=”stylesheet” href=”https://www.audioplus.co.uk/wp-content/themes/primepress/custom.css” type=”text/css” media=”screen” />Please update it manually from wp_options table with “siteurl” and “home”.
- This reply was modified 7 years, 5 months ago by Hiren Purohit.
Forum: Fixing WordPress
In reply to: WordPress blog not working with SSLresolved !!
Forum: Fixing WordPress
In reply to: Duplicate SiteHi Ellacopter
Yes, you need to do same in wp_postmeta as well.
Execute below query in phpmyadmin
UPDATE wp_postmeta SET meta_value = replace(meta_value,’https://www.audioplus.co.uk’,’https://www.audioplus.co.uk/Wordpress/wordpress’);
Forum: Fixing WordPress
In reply to: Duplicate SiteYou must be change your path in database
old path https://www.audioplus.co.uk
with new path https://www.audioplus.co.uk/Wordpress/wordpress/Forum: Networking WordPress
In reply to: no sub-directory option on multisiteYou must be use below code for sub-directory or sub-domain in multisite.
For a domain-based network (sub-domain install)
define( ‘SUBDOMAIN_INSTALL’, true );For a path-based network (sub-directory install)
define( ‘SUBDOMAIN_INSTALL’, false );Forum: Networking WordPress
In reply to: no sub-directory option on multisiteAre you using main domain or sub-domain for your site ?
If you want sub-domain in multisite, then it must be main domain having install network site.
just confirm