In the control panel of sitecore 6.2 installation, the database compare option is missing.
Do we need to do any configuration in order to get that option?
I can see that option in sitecore 5.3.
You won't find this in 6.2. "Compare databases" command is no longer supported.
You can use a third party tool like Razl.
But this is not free.
Related
I am trying to use a payment module in OpenCart version 2.0.1.1, and I need to update our Hash to HMAC-SHA-512, so the checkout page authorizes successfully.
I just donĀ“t know how to change the hash and where exactly I can do this.
We use Plesk, with PHP 7. The domain is www.didikong.de
The payment module is WireCard Checkout Page version 1.2.0.
So this wirecard generates a Fingerprint, which is encrypted via HMAC-SHA-512. And our website uses SSL.
Thanks in Advance.
I am really not sure if the version 1.5.2 of opencart-wcp was still compatible with 2.0.1.1 but I would try that first. There was a client library update between 1.2.0 and 1.5.2 in which the algorythm was updated. If you don't have a test system where you could try it out just check the changes in the client lib. More in particular look into the /system/library/wirecard/vendor/wirecard/checkout-client-library/library/WirecardCEE/QPay/FrontendClient.php file and see if the setHashAlgorithm is using the WirecardCEE_Stdlib_Fingerprint::HASH_ALGORITHM_HMAC_SHA512 constant. If not, just change it to the mentioned constant and you should be good to go. If you get any errors regarding some missing things consider updating the /system/library/wirecard/vendor/wirecard/checkout-client-library/library/WirecardCEE/Stdlib/Client/ClientAbstract.php to the newest version.
How I can check for WFFM version that have installed in Sitecore 8.
I was checking in List of Package inside Data/Packages folder . Is this correct way to do this ?
That's one of the options, but it's not necessarily correct. One can upload a package to that folder but never install it.
You can also check WFFFM dlls in the bin folder and see their version.
And maybe the most reliable way: login to Sitecore Desktop, change database to core and in Content Editor find /sitecore/system/packages/installation history node. There should be a list of all packages which are installed in your Sitecore application including their versions.
Look in the sitecore general log at application startup, all dlls are listed including version numbers.
I found one more way All Application ==> System ==> License detail ,there i found the version of WFFM.
I am new to Sitecore administration. I wanted to setup Sitecore 8.1 in an Azure vm. I have one Azure sql vm and one vm for Sitecore. So I would like to know the best recommended approach to set up Sitecore
using Sitecore web installer
from sitecore zip
using pre defined powershell script (not very much sure about steps)
SIM
Please guide me as I am new to Sitecore administration.
Deb,
I know isn't the version that you were looking for, however you can get the idea in deal with a Sitecore installation and all its prerequistes. Please have a look here: https://sdn.sitecore.net/upload/sitecore7/70/installation_guide_sc70-a4.pdf
Based on Sitecore installation guide, I haven't seen a recommendation from them saying "install using EXE" or "install using ZIP". Actually, they show you both! Personally, I would suggest you to go through using ZIP.
Cheers,
Vinicius
I read that sitecore 8.1 has option to run CMS only mode (i.e. without xDB).
However I've not found any documentation on below:
Do we also need to disable aggregation task/service?
Any other steps we need to take?
Any help will be much appreciated.
The official documentation of Sitecore for CMS Only Mode can be found here: The CMS-only mode configuration settings As for the settings you need to set:
Xdb.Enabled
Xdb.Tracking.Enabled
Xdb.Configuration.XdbSettings
Also, according to the documentation, if you don't have a valid xDB license, you will run in CMS Only Mode by default.
Is there an easy way to detect the version of Sitecore ECM in a Sitecore installation?
The Sitecore solution installed is Sitecore 6.5 rev. 120427 installed.
You can have a look at the package install history in the Core database under /sitecore/system/Packages/Installation history/E-mail Campaign Manager. If you have installed multiple versions then there will be multiple child entries with each revision number.
If you need to get the current running version from code then just get reflect the FileVersionInfo
var assembly = System.Reflection.Assembly.LoadFrom("Sitecore.EmailCampaign.dll");
var fvi = System.Diagnostics.FileVersionInfo.GetVersionInfo(assembly.Location);
string version = fvi.FileVersion;
Slightly 'hack-ish', but you could look to see what packages have already been installed via the Installation Wizard. When you select a package, it gives you the version number.
Click on the Sitecore button, choose Development Tools, then Installation Wizard. Choose Browse and then look for the email campaign manager module that was installed. After you select it, it should show the version number information in the file name.
Caveat: This probably doesn't help if you've installed multiple versions of the ECM over time.
If you have access to the file system, you can see the version of any module by looking at the properties of the corresponding DLL file (right click on file and choose Properties). This information is stored under the "Product name" and/or "Product version" property in the Details tab.