Self Hosted Help Desk

I am creating Users for my IT team and notice that the links go to track.spiceworks.com. I notice that this creates a user for the Help Desk App and on the community pages. Before I move forward I just want to know if what if any information of help desk app is shared with spiceworks servers. I don't want our things like ticket information or users credentials being stored where we don't have control over access. Thanks 
This topic first appeared in the Spiceworks Community

Hi Adam,
Thanks for your fast response.  I think the problem I had was that I am not a coder and use Muse as it should be,  for someone who is more of a designer instead.
The issue, which was one that I could not find any information, resolution not instructions about, is that you must do all you have stated to add self hosted fonts into Muse and your computer, these will then work perfectly in Muse and if you "Preview Web Page in Broswser".... but will NOT show up if you PUBLISH the website to the internet, hosted fonts will change to a default.
The ANSWER that is woking for me is that I am exporting to HTML first and the using Cyberduck or FileZilla as the FTP.... I had to create a file called FONTS in the root directory of my website and then dump ALL the font files.... SVG OET WOFF TFF (everything) into that file and make sure its published to my live site... that seems to work.
It may be that if you use Muse own Upload to FTP Host direct to publish then it automatically will do this but when I export to HTM first it doesn't do it.
I scoured the internet and could only find one reference to this and it may be that this is the answer to many peoples problems as it doesn't seem to be widely known that you have to do this.
Roger

Similar Messages

  • Need help on Self Hosting Using channel Factory

    Hello,
         Need Help.
         I am trying to self host WCF service using cutom Channel Factory class. but I am getting exception.
     The scenario is something like below this  : -
    I want to create the endpoint connection to WCF service. I want to achieve this  using custom channel factory(not using default channel factory API provided in .Net Framework).
    I have written one class and it is derived from channel factory and we are reading the service endpoints, behaviors, bindings from external configuration file added in the project.
    I am able to connect to server side service hosted on different machine using following sample code successfully.
    In the case of “self-hosting”  I am receiving following error : --
         "There was an error reading from the pipe: The pipe has been ended. (109, 0x6d)."
    Below is the code which I have written for self hosting WCF service using custom channel factory.
    // Method where I am calling CustomChannel Factory constructor
    internal void ProxyCall(string msgEndpointConfigurationName, string url)
                string appConfigDirName, extConfigFilePath;
                FileInfo configFileInfo = new FileInfo(appConfigName);
                appConfigDirName = configFileInfo.DirectoryName;
                extConfigFilePath = appConfigDirName + "\\" + extConfigFileName;
                this.messageEndpointConfigurationName = msgEndpointConfigurationName;
                if (string.IsNullOrEmpty(url))
                    this.messageFactory = new CustomChannelFactory<IServerOperationsMessage>(extConfigFilePath, this.messageEndpointConfigurationName);
                else
                   //EndpointAddress e = new EndpointAddress(url + ClientToServerOperations.ServiceAddress);
                   //this.messageFactory = new ChannelFactory<IServerOperationsMessage>(this.messageEndpointConfigurationName, e);
                   this.messageFactory = new CustomSelfHostingChannelFactory<IServerOperationsMessage>(extConfigFilePath, this.messageEndpointConfigurationName, url + ClientToServerOperations.ServiceAddress);
                   //this.messageFactory = new CustomSelfHostingChannelFactory<IServerOperationsMessage>(extConfigFilePath, this.messageEndpointConfigurationName, e);
       ClientMessageFormatterBehavior formatterBehavior = new ClientMessageFormatterBehavior();
       foreach (OperationDescription operation in this.messageFactory.Endpoint.Contract.Operations)
        if (!operation.Behaviors.Contains(typeof(ClientMessageFormatterBehavior)))
         operation.Behaviors.Add(formatterBehavior);
       this.messageFactory.Endpoint.Behaviors.Add(new MessageStatisticsBehavior());
       this.messageFactory.Open();
    // Custom Channel Factory Class
    internal class CustomSelfHostingChannelFactory<T> : ChannelFactory<T>
            /// Custom client channel. Allows to specify a different configuration file
            /// <typeparam name="T"></typeparam>
            private string configurationPath, selectedMsgEndPoint, uriAddress;
            public PPCCustomSelfHostingChannelFactory(string configurationPath, string selectedEndPoint, string uriAddress)
                : base(typeof(T))
                this.configurationPath = configurationPath;
                this.selectedMsgEndPoint = selectedEndPoint;
                this.uriAddress = uriAddress;
                EndpointAddress e = new EndpointAddress(this.uriAddress);
                base.InitializeEndpoint(selectedEndPoint,e);
            //As you can see, a call to the method InitialiazeEndpoint of the base class is required.
            //That method will automatically call to our CreateDescription method to configure the service endpoint.
            ///Loads the serviceEndpoint description from the specified configuration file
            protected override ServiceEndpoint CreateDescription()
                ServiceEndpoint serviceEndpoint = base.CreateDescription();
                return serviceEndpoint;
            private EndpointIdentity GetIdentity(IdentityElement element)
                EndpointIdentity identity = null;
                PropertyInformationCollection properties = element.ElementInformation.Properties;
                if (properties["userPrincipalName"].ValueOrigin != PropertyValueOrigin.Default)
                    return EndpointIdentity.CreateUpnIdentity(element.UserPrincipalName.Value);
                if (properties["servicePrincipalName"].ValueOrigin != PropertyValueOrigin.Default)
                    return EndpointIdentity.CreateSpnIdentity(element.ServicePrincipalName.Value);
                if (properties["dns"].ValueOrigin != PropertyValueOrigin.Default)
                    return EndpointIdentity.CreateDnsIdentity(element.Dns.Value);
                if (properties["rsa"].ValueOrigin != PropertyValueOrigin.Default)
                    return EndpointIdentity.CreateRsaIdentity(element.Rsa.Value);
                return identity;
            private Binding GetBinding(IBindingConfigurationElement configurationElement)
                if (configurationElement is CustomBindingElement) return new CustomBinding();
                else if (configurationElement is BasicHttpBindingElement) return new BasicHttpBinding();
                else if (configurationElement is NetMsmqBindingElement) return new NetMsmqBinding();
                else if (configurationElement is NetNamedPipeBindingElement) return new NetNamedPipeBinding();
                else if (configurationElement is NetPeerTcpBindingElement) return new NetPeerTcpBinding();
                else if (configurationElement is NetTcpBindingElement) return new NetTcpBinding();
                else if (configurationElement is WSDualHttpBindingElement) return new WSDualHttpBinding();
                else if (configurationElement is WSHttpBindingElement) return new WSHttpBinding();
                else if (configurationElement is WSFederationHttpBindingElement) return new WSFederationHttpBinding();
                return null;
            private Binding CreateBinding(string bindingName, ServiceModelSectionGroup group)
                BindingCollectionElement bindingElementCollection = group.Bindings[bindingName];
                if (bindingElementCollection.ConfiguredBindings.Count > 0)
                    IBindingConfigurationElement be = bindingElementCollection.ConfiguredBindings[0];
                    Binding binding = GetBinding(be);
                    if (be != null)
                        be.ApplyConfiguration(binding);
                    return binding;
                return null;
            private void AddBehaviors(string behaviorConfiguration, ServiceEndpoint serviceEndpoint, ServiceModelSectionGroup group)
                EndpointBehaviorElement behaviorElement = group.Behaviors.EndpointBehaviors[behaviorConfiguration];
                for (int i = 0; i < behaviorElement.Count; i++)
                    BehaviorExtensionElement behaviorExtension = behaviorElement[i];
                    object extension = behaviorExtension.GetType().InvokeMember("CreateBehavior", BindingFlags.InvokeMethod | BindingFlags.NonPublic | BindingFlags.Instance, null,
    behaviorExtension, null);
                    if (extension != null)
                        serviceEndpoint.Behaviors.Add((IEndpointBehavior)extension);
    Thanks in advance !! :-)

    Hi,
    There was an error reading from the pipe: Unrecognized error 109 (0x6d).
    One reason was inconsistent binding between client and server <netNamedPipeBinding> <security mode="None"></security>... (no
    communication)
    The other intermittent issue was time-out related.
    For more information, you could refer to:
    http://stackoverflow.com/questions/15836199/wcf-namedpipe-communicationexception-the-pipe-has-been-ended-109-0x6d
    http://stackoverflow.com/questions/22334514/wcf-named-pipe-error-the-pipe-has-been-ended-109-0x6d
    Regards

  • Cross Domain error for Silverlight + MVC application with self hosted WCF service on azure

    Hi,
    We are migrating existing Silverlight application to MVC; existing Silverlight application is hosted on
    Azure which is consuming self-hosted WCF service. For authentication we have implemented
    ADFS with WIF (passive). The cloud service (<myWebSite>.cloudapp.net) is C Name to (<myWebSite>.<myDomain>.com) and we 
    are consuming  WCF service at <myWebSite>.cloudapp.net/<myService>.svc, as we were getting “Cross Domain” error so we have added “clientaccesspolicy.xml” at the root of “WEB ROLE”.
    Existing Silverlight application works fine but the problem occurred when we deploy our migrated application to the same cloud service. We are getting a “Cross Domain” error.
    The same migrated application works fine on UAT environment, the only difference is UAT environment is
    without ADFS WIF implementation.
    Migrated application is half Silverlight and half MVC with initial landing page is Silverlight. MVC web role is used to host the service i.e. .SVC . To go to SL landing page , redirected from home controller. Following is being observed in fiddler for this
    application
    Existing Silverlight application -
    After authentication with ADFS it redirect to Silverlight landing page.
    Before calling service method it looks for “clientaccesspolicy.xml”
    In response header we are getting the content of “clientaccesspolicy.xml”
    And after this everything works fine
    Migrated Silverlight-MVC application –
    After authentication with ADFS it redirects to “HomeController” and from there we are redirecting to Silverlight landing page.
    Before calling service method it looks for “clientaccesspolicy.xml”
    In response header we are getting  following content - “https://federation-sts.<myDomain>.com/adfs/ls/?wa=wsignin1.0&amp;
    wtrealm=https%3a%2f%2f<myWebSite>.<myDomain>.com&amp;
    wctx=rm%3d0%26id%3dpassive%26ru%3d%252fclientaccesspolicy.xml&amp;wct=2014-03-17T10%3a36%3a04Z”
    4.Throw “Cross Domain” error.
    Also we have added filter in
    RouteConfig
    for .xml file
    routes.IgnoreRoute("{*allxml}",
    new { allxml = @".*\.xml(/.*)?" });
    NOTE: There is no configuration change apart from MVC configuration.
    We have done RDP to web role and found that “clientaccesspiolicy.xml” is present at “E:\approot” location and it is also accessible at “https://<myWebSite>.<myDomain>.com/clientaccesspolicy.xml”.
    Please help
    Thanks,
    Rahul P

    Hi,
    Please try to configure the cross domain policy file to allow public read access (that is, access it without federation requirement), make sure you can access the address
    http://something/clientaccesspiolicy.xml directly in a browser
    without redirecting to check whether the cross domain policy file could be anonymous accessed (Please start a new browser session and make sure you're
    not logged in. Then test the cross domain policy file.).
    Best Regards,
    Ming Xu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help Desk Assign permission on mailboxes script

    Exchange sp3
    Outlook 2010 sp1
    I've come up with a script to give to the help desk that will save me from having to do lots of remedial work. The script gives the full access permission and send-as on a mailbox.
    This script works but for some reason I cannot get the input window to appear on my screen
    Here it is.
    [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
    $Identity = Read-Host "= [Microsoft.VisualBasic.Interaction]::InputBox("Enter the name of the Mailbox", "Username")"
    $user = read-Host "Enter the name that will have full access rights"
    $AccessRights = read-host [Microsoft.VisualBasic.Interaction]::InputBox("Enter the name that will have full access rights", "Name")
    $ExtendedRights = Read-Host [Microsoft.VisualBasic.Interaction]::InputBox ("Enter the Extended Rights")
    [System.Reflection.Assembly]::LoadWithPartialName(“System.Windows.Forms”)
    [system.Windows.Forms.MessageBox]::show("$Identity $user", "MyTitle")
    Add-MailboxPermission -Identity $Identity -User $user -AccessRights $AccessRights
    Add-ADPermission -Identity (Get-Mailbox $Identity).DistinguishedName -User $user  -ExtendedRights $ExtendedRights
    Help please,
    alexis

    The following worked for me
    [void][System.Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')
    #$Identity = Read-Host "= [Microsoft.VisualBasic.Interaction]::InputBox("Enter the name of the Mailbox", "Username")"
    $Identity = [Microsoft.VisualBasic.Interaction]::InputBox("Enter the name of the Mailbox", "Username")
    #$user = read-Host "Enter the name that will have full access rights"
    $user = [Microsoft.VisualBasic.Interaction]::InputBox("Enter the name that will have full access rights", "Name")
    #$AccessRights = read-host [Microsoft.VisualBasic.Interaction]::InputBox ("Enter the name that will have full access rights", "Name")
    $AccessRights = [Microsoft.VisualBasic.Interaction]::InputBox("Enter the permissions", "Name")
    #$ExtendedRights = Read-Host [Microsoft.VisualBasic.Interaction]::InputBox ("Enter the Extended Rights")
    $ExtendedRights = [Microsoft.VisualBasic.Interaction]::InputBox("Enter the Extended Rights")
    [System.Reflection.Assembly]::LoadWithPartialName(“System.Windows.Forms”)
    [system.Windows.Forms.MessageBox]::show("$Identity $user","MyTitle")
    Add-MailboxPermission -Identity $Identity -User $user -AccessRights $AccessRights
    Add-ADPermission -Identity (Get-Mailbox $Identity).DistinguishedName -User $user  -ExtendedRights $ExtendedRights

  • Database design for Help Desk application.

    Hello does any one know
    Database design for Help Desk application.
    ERD
    Business rules and features
    ?

    The best way to approach a database design is to write a
    specification for the application. Document what processes the help
    desk technicians will do. In the process, identify what pieces of
    information they work with. When you have the complete
    specification written, you can then begin grouping the pieces of
    information they work with together. For example, a ticket may have
    a number, status, priority and a person to whom it is assigned. The
    person to whom the ticket is assigned will have a name, phone
    number, e-mail address and a list of technical skills.
    So in this overly-simplified example, we could have a table
    that contains ticket information, a table that has information
    about technicians and a table of skills. Then ask your self
    questions like "Can one ticket be handled by more than one
    technician?" "Can one technician handle more than one ticket?" Can
    a technician have more than one skill?" In this way, you can begin
    seeing the one-to-one, one-to-many and many-to-many relationships
    that exist.

  • Trouble with self-hosted web font

    So I applied a self-hosted web font to my website and it was working. However recently in some browsers the font hasn't been showing up, instead being replaced with helvetica or some other standard web font. Why would it be doing this? I've tried clearing my browser cache and it doesn't work. It's also happening to some of the people visiting my site which is a huge problem.

    Hi Sanjit, I have the same problem on this website - green headlines should be in Etelka Wide Medium which my client purchase and I aded to as self hosted web font to adobe muse.
    It works normally in Muse, also in preview after export to html but doesn't work online after upload ( I have tried it on two different server). I tried it on easy webpage no using muse and it works properly. What can I do? Font are in the fonts folder after export and also in css. I am working on Macbook Pro with OS X Yosemite, browsers Safari and Google Chrome both.
    Thank you very much for your help,
    Elena

  • Self Hosted font problem again

    So basically things don't display correctly but the bold font seems to be displaying correctly
    Things I have done:
    Uninstall Muse and deleted every muse folder in my drive C
    Generated font 5x time on different font face generator website
    and the problem is still exist
    Design Mode
    Preview
    Some Helpful SS

    Hi,
    To add to Rohit's requests, were these screenshots captured on Internet Explorer 8?
    There is a known IE8 issue with displaying multiple weights of the same font that are close to each other (e.g., light and extralight).
    Also, any particular reason you are using Raleway as a self-hosted font when it is natively supported as an Adobe Edge Web font?
    Thanks,
    Abhishek

  • Self-Hosted Web Fonts

    I have problem with self hosted fonts I have added to MUSE.
    It works normally in Muse while working, also in preview after export to html but doesn't work online after upload ( I have tried it on different servers).
    I tried same web font on easy webpage not using muse and it works properly. What can I do?
    Preview after export to HTML:
    After upload to FTP in Safari / Google Chrome is the same
    Fonts are in the fonts folder after export and also in css. I can see it as self-hosted web fonts, Matching System Font is also OK.
    The example of not working page:
    menuEN - all green headlines.
    I am working on Macbook Pro with OS X Yosemite, browsers Safari and Google Chrome both. Font is Etelka - if it is important.
    Thank you very much for your help,
    Elena

    Hi Abhishek,
    the site is directly uploaded using MUSE Upload to ftp host. When I open it with ftp client, there is off file of etelkawidemedium in fonts file.
    And I have tried to upload plain webpage with the same web font -  not made in Muse and it works.
    http://www.golfklubk.cz/testwebfont/
    So what should I do?
    The answer from Shaun is little bit complicated for me:)
    Thanks, Elena

  • Can i self host a blog on adobe muse

    I want to have my blog on my website but I want to use thinglink.com and need a self hosted blog

    I'm not understanding your question fully.  From your statement I understand that:
    (1) you currently have a website
    (2) you want to place a blog in your website
    (3) you want to host your website/blog at a host provider different from Adobe catalyst
    (4) you somehow want to link your blog to thinglink
    Do I have it right?
    If so,
    Where are you currently hosting your website?
    Do you currently have a blog (ie. Wordpress, Blogspot)
    How exactly do you want your site to interact with thingkink?
    I can help you more with these questions answered.
    Regards,
    Doc

  • Self Hosted web fonts not finding system matching font.

    I Purchased Museo Sans Rounded form myfonts.com and installed the .ttf font in my iMac, and then i uploaded the additional formats to the Self Hosting fonts panel but I still get the error that it cant find the matching system font (neather was i able to do it manuly). What is interesting is that i cant even find the font in fontbook. My fonts refused to give me support with this claiming that they aren't familiar with Muse and the .ttf is not supported for desktop installation.
    It was an expensive purchase, please help me out.
    BTW I'd like to continue to use the desktop version of this font from typekit. is it posable or they will conflict?

    The prefs for 2014.1 are in:
    "~/Library/Preferences/com.adobe.AdobeMuseCC.2014.1/Local Store" (copy and paste everything, including the tilde ~, but not the quotes, into the Go > Go To Folder dialog in the Finder)
    From the old 2014.1 folder you want to copy:
    fonts.db
    selfhosted
    tk1
    tk2
    into the new prefs folder for 2014.2 at:
    "~/Library/Preferences/com.adobe.AdobeMuseCC.2014.2/Local Store" (copy and paste everything, including the tilde ~, but not the quotes, into the Go > Go To Folder dialog in the Finder)
    Once you've done that, when you launch Muse all the self-hosted fonts and Edge Web Fonts you had previous installed or enabled should be present.
    Sorry for the inconvenience.

  • How to Implement BW in IT Service Desk/IT Help Desk /IT Complain Surveillance Dept/IT Customer Support Dept?

    Hi
    If a organization have 200 to 300 daily complains of there IT equipment/Software/Network e.t.c.
    How to Implement BW in IT Service Desk/IT Help Desk /IT Complain Surveillance Dept/IT Customer Support Dept?
    Is there any standard DataSources/InfoObjects/DSOs/InfoCubes etc. available in SAP BI Content?

    Imran,
    The point I think was to ensure that you knew exactly what was required. A customer service desk can have many interpretations from a BI perspective.
    You could have :
    1. Operational reports - calls attended per shift , Average number of calls per person , Seasonality in the calls coming in etc
    2. Analytic views - Utilization of resources , Average call time and trending , customer satisfaction , average wait time
    3. Strategic - Call volumes corresponding to campaigns etc , Employee churn and related call times
    Based on these you would then have to construct your models which would be populated by data from the MySQL instance for you to report.
    Else if you have BWA you could have data discovery instead or if you have HANA - you could do even more and if you have a HANA sidecar - you technically dont need BW. The possibilities are virtually endless - it depends on how you want to drive it and how the end user ( client ) sees value in the same.

  • How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk

    How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk.i did try all the options but I can not find the phone number to call from Croatia,
    I can not change my Apple ID to the old mail (not possible!)
    The old mail don't accept the new password..
    I can not delete the Icloud all the time asking my the password of the old mail!
    I realy need help

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • My mac mini will not let me log in.   it says i can change my login info with my apple id.   no good!   help desk stumped!   Help!

    my new Mac Mini will not let me log in.   I shut it down while away on vacation and now it will not accept my password.   I tried to log in with my apple ID and it still would not accept it.   I stumped the apple help desk.   Help!

    User Password Reset

  • Not able to find values in LOV of field "Help Desk" of Global contract

    Not able to find values in LOV of field "Help Desk" of Global contract defaults.
    This value should be coming from resource setup.
    Resource is already created.

    Issue resolved:
    The resource should ahve valid Email id in HR People setup

  • An error has occurred. Please try again, and if the problem persists, contact your help desk or system administrator. (Error 3000)

    Hi,
    When i open my Password Reset portal then provide Username credentials in text box and click on next then asked the Securites Question Answers to me,i provide the correct Answers to the securites Question after this password reset portal asked
    me New Password and Confirm Password then click on next for resetting the password then gives below Error only for 2 Users. and all other users are working fine.
    An error has occurred. Please try again, and if the problem persists, contact your help desk or system administrator. (Error 3000:)
    Regards
    Anil Kumar

    Anything in the event log?

Maybe you are looking for

  • When I used to receive emails it would make a beep now it doesn't make any noise

    it will not even make the *whoosh* sound anymore. My volume is up I checked the mail settings and the sound were all on, then I checked the system prefreces in the sounds menu and that appeared to be fine Any suggestions?

  • Passing prompt value to column header

    Hi experts I'd like to change the column header dynamically. the report is using presentation variable so it's displayed after the user had selected a value in the dashboard prompt and clicked on go. I'd like to have in the column header the value th

  • Use IMP to only import certain objects?

    Is it possible to use IMP to only import tables, table data, indexes and sequences, or everything except packages?

  • IMac restarts instead of shutting down

    Hello, I have a 2009 iMac 24" running 10.6.2. When I select shutdown from the shutdown menu it asks if I want to shutdown and then after selecting yes it starts the shutdown process. After shutting down it immediately restarts. When selecting shutdow

  • Help required in Weblogic 6 - Creation & Configuration of Web Application

    Forum Home > Enterprise JavaBeans[tm] Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application Duke Dollars 2 Duke Dollars assigned to this topic. Reward the best responses to your question using the icons below, or transfer a