Dear,
I setup SolidCP 1.1.2 on window 2012 R2, I have install AWStats success to fllow guide bellow
http://installer.solidcp.com/Files/1.0.4/Tools/SolidCP-Configuration-Tool-1.0.4.zip
But when i add new service Awstats error bellow
The expected version of the software is not found on your server.
My Server
Service group name:
Statistics
Service name:
Service provider:
<Select Provider>
AWStats Statistics Service
SmarterStats 3.x
SmarterStats 4.x
SmarterStats 5.x +
I have install awstat using same tools. But getting error as attach.
Hi Guys,
Can I ask what OS you are running as well if it is 32bit or 64 bit?
If you could try running the latest script which can be downloaded from here:-
http://installer.solidcp.com/Files/stable/Tools/SolidCP-Configuration-Tool.zip
as that should fix your issue.
SolidCP looks to check if the registry keys are installed for AwStats before continuing, if you still have problems could you try running the following from an elevated PowerShell prompt:-
if (!(Test-Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats")) {
(New-Item -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Force) ; start-Sleep -Seconds 2
}
if (Test-Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats") {
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "DisplayName" -Value "AWStats"
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "UninstallString" -Value "C:AWStatsuninstall.exe"
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "Publisher" -Value "Laurent Destailleur"
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "DisplayIcon" -Value "C:AWStatsdocsawstats.ico"
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "URLInfoAbout" -Value "http://awstats.sourceforge.net"
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "Comments" -Value "copyright 2000/2015 Laurent Destailleur"
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "HelpLink" -Value "http://awstats.sourceforge.net/docs/index.html"
New-ItemProperty -Path "HKLM:SOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionUninstallAWStats" -Name "URLUpdateInfo" -Value "http://awstats.sourceforge.net"
}
Please let us know how you get on.
Kind regards,
Marc