Abhishek Ghosh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post Auto-DeletingSuch can happens out of buggy plugins, themes and malware.
Deactivate all the third party plugins and themes, scan your site for malware, install WP control to check what cron key is scheduling to delete.
Forum: Networking WordPress
In reply to: Using 1 Domain for several restaurant locationsYour idea is correct. Your need is getting
restaurantname.com/westend
,restaurantname.com/city
as end result. Three WordPress installations will work as independent installations. You need not to adjustment of.htaccess
.Forum: Fixing WordPress
In reply to: Align left checkbox and inscription – plugin StCRLook at this screenshot, I did some change in the CSS from browser tool to make it normal looking. I highlighted the changes with yellow marker. That CSS is minified and apparently from your theme’s CSS.
You need to change
min-width: 18%
(value you are using now) tomin-width: 2%
atcomment-form input
div and test. This is what you saw in the screenshot :#comment-input input, #s, .comment-form input { border: 1px solid #d2d2d2; min-width: 2% ; font-size: 13px; color: #747474; float: left; margin-right: 1%; }
- This reply was modified 6 years, 9 months ago by Abhishek Ghosh.
Those may happen out of ordinary matters. Use a basic PHP script to check MySQL connection. Check mysqld error log file. Test
wp-config.php
with root user of MySQL. Default charset should be exactly like your previous setup.I tested for other reasons, it is working fine for me.
Forum: Fixing WordPress
In reply to: change domain from .at to .comIt is not plain
.at
to.com
. It is full usual chance of domain.First take MySQL and FTP backups (make sure that they works). Basic thing is written here on WordPress doc. But in real it is laborious work.
You have to change all
stillesbunt.at
tostillesbunt.com
domain in WordPress database tableswp_options
,wp_posts
,wp_links
,wp_postmeta
. For that you need to use these kind of plugin or search and replace plugin or use this kind of SQL script or run the SQL commands.Changing email needs domain named email (free service like Zoho with is industry’s standard) or use cPanel’s domain name email. Simply change from WordPress admin.
301 redirect
stillesbunt.at
tostillesbunt.com
.Forum: Fixing WordPress
In reply to: How to uninstall WordPressDeleting the MySQL database of the WordPress installation under question via PHPMyAdmin is one click uninstall. You can read the answers on StackOverflow on how to delete database via phpmyadmin.
Except
wp-content
directory there is nothing specific in FTP. If you delete thewp-config.php
file on FTP, it will start one click install wizard on browser.If you delete everything related to WordPress on FTP as second step (after deletion of the MySQL database of the WordPress via PHPMyAdmin) you’ll fully get rid of old installation of WordPress.
Note : WordPress or any similar PHP-MySQL web application has no official “uninstall” button.
- This reply was modified 7 years, 8 months ago by Abhishek Ghosh.
- This reply was modified 7 years, 8 months ago by Abhishek Ghosh.
Forum: Installing WordPress
In reply to: Can not installPossibly some WordPress PHP files are not properly copied or just not present. Even if empty
index.php
gets distorted those odd errors are common.If it is existing installation, please follow the guide to manually update (which Steve Stern provided in above answer). Take a backup of the files before doing that.
Forum: Fixing WordPress
In reply to: Searching for a specific solution themeThere are free WordPress themes on WordPress Themes which are tagged with real estate.
Among my known paid, there is StudioPress Genesis AgentPress as paid theme. Genesis has lot of free WordPress plugins for their framework. Genesis, Woo etc are commonly used paid themes. There are definitely other good paid themes.
You can hire developer, designer in case you can not code yourself from WordPress jobs.
Thanks a lot for the review. It is odd to give thanks after 1.5 years. I never thought someone will really find the reason it is created.
Forum: Fixing WordPress
In reply to: Strange Google Analytics URLVisitor came from HTTP URL, Google was trying to sniff the source of visitor, HTTPS protocol stopped that. Thats why it became odd. It can happen with the search engine crawlers.
Additionally your SSL setup minor issues — https://www.ssllabs.com/ssltest/analyze.html?d=stijnspreekt.nl&s=109.72.85.122&latest You should fix them. Your server is possibly shared, I would suggest you virtual server/cloud server. I checked your IP and it appeared to me as shared host. European hosts does not cost huge for 1 GB cloud server. It is preferable to use a dedicated IP for one domain or share between your own multiple domains. You can see Low End Box for review for the server part.
Actually, there are four websites against one domain –
https://example.com
,https://www.example.com
,https://example.com
andhttps://www.example.com
with distinct headers. HTTPS obviously increases security. It is HTTP GET request which works efficiently on HTTPS from cross domain than javascript. If you old URLs still indexed by Google search was :https://example.com/where-is-the/post
it was actually a pretty URL of
https://example.com/?p=123
Now when the redirection is happening from HTTP to HTTPS, it becomes hugely complicated. No cookie info is shared between HTTP to HTTPS redirection over TLS. From outside it simple –
https://example.com/where-is-the/post
HTTP 301 ->https://example.com/where-is-the/post
But basically it is complicated situation with cache plugins and permalink. That odd stuff is out HTTP to HTTPS redirection plus Google Analytics setup and itself Google Analytics on HTTPS related issue. You can perform web search with Google Analytics HTTPS Errors like key phrases and you’ll get lot of persons like you, some has described own fixes.
For now, use wp-statistics Plugin to properly track. It does not have external javascript.
It is better to claim the HTTPS version on Google Webmaster Tools and submit the sitemap on HTTPS location. Read about that here – google.com/webmasters/answer. Because if all URLs of source becomes HTTPS on search (other sources), it becomes easier.
Also perform a web search on how to setup Google Analytics on HTTPS website. This is for this webpage’s Google Analytics code, notice the
ga.src
line :<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-52447-1']); _gaq.push(['_setDomainName', 'www.remarpro.com']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'https://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); function recordOutboundLink(link, category, action) { _gaq.push(['_trackEvent', category, action]) setTimeout('document.location = "' + link.href + '"', 100); } </script>
You have lot of To Dos —
1. Use wp-statistics for proper tracking for practical reasons
2. Solve SSL server related minor issues
3. Check webmaster tools for HTTPS site & sitemap submission
4. Check Google Analytics docs for HTTPS site setup
5. Better to upgrade to a virtual dedicatedUpgrading to HTTPS initially gives some pain but it worths in long term for various reasons.
Forum: Installing WordPress
In reply to: Installation into subfolder – CPanelYou may read GoDaddy’s help – https://in.godaddy.com/help/common-web-page-errors-2505
Ask the support of GoDaddy. Apparently they have support forum as well.As long it is not self managed virtual server, dedicated server; you will get some helps via chat/tickets.
Forum: Fixing WordPress
In reply to: Best practice – Service provider on paid baseYour need is Open Source Learning Management System (LMS). As for WordPress, there is WP Courseware plugin. Sadly that is not Free Software or Open Source – https://demo.wpcourseware.com but it integrates BuddyPress and other Free Software projects related to WordPress. They have that kind of integration as offering – https://demo.wpcourseware.com/integrations/.
You probably can read about that on WPBeginner – https://www.wpbeginner.com/plugins/how-to-add-a-learning-management-system-in-wordpress-with-wp-courseware/ and this blog’s discussion -https://chrislema.com/elearning-on-wordpress-wp-courseware-learndash/
Forum: Fixing WordPress
In reply to: Autoupdate Plugins not workingFEMP WP failing plugin update is usually means missing package. Have you missed anything? We normally install these on FreeBSD :
sudo pkg install nginx mysql56-server php56 php56-mysql
then rehash
sudo pkg install php56-xml php56-hash php56-gd php56-curl php56-tokenizer php56-zlib php56-zip
Again rehash & restart the services. Ifvsftpd
installed then check whether uploading enabled from settings.Forum: Fixing WordPress
In reply to: Site is loading crazy slow from SERPI cross checked from LinkedIn whether
verbatimsolutions.com
is your domain. You have SSL cert error. It is honestly, impossible to find out own-self. On browser error is getting suppressed. Runcurl -I https://verbatimsolutions.com
on Linux/ OS X, you’ll see the error. Test the domain with GeoTrust’s own testing tool.