I created a test order but once clients clicks the one-button login in WHMCS he doesnt get transfered to his SCP area instead he gets this error !...
Server Error in '/' Application.
The resource cannot be found.
Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
Requested URL: /default.aspx
Only clients get this error, however loggin in as administrator works just fine !...
Thanks,,,
What is the full url it's taking you too? do you normally login with or without :9001? (and is it identical in the url passed by whmcs? )
I have adjust the URL to be: http://xx.xx.xx.xx:9001 (adding the port) under the module tab in whmcs Product, then it worked fine, thanks !...
I have seen however this when allowing a client to provision his own VM:
"Virtual Hard Disk Drive Quality of Service management"
AM pretty sure this wasnt in previous SCP versions, i think its a bad idea to allow a client specify especially the minimum IOPS coz some clients might abuse this function, can we disable it somehow to make our lives easy ??...
thanks,
Hello,
At this moment you can disable it by asp file.
C:SolidCPPortalDesktopModulesSolidCPVPS2012VdcCreateServer.ascx
find the line:
<asp:TextBox ID="txtHddMinIOPS" runat="server" CssClass="form-control form-control" Width="150" Text="0"></asp:TextBox>
and replace to:
<asp:TextBox ID="txtHddMinIOPS" runat="server" CssClass="form-control form-control" Width="150" Text="0" Enabled="False"></asp:TextBox>
or you can hide it with tag Visible="False"