Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • Database setup script

    Support proget sql-server proget-installation
    2
    0 Votes
    2 Posts
    15 Views
    ?
    You'll need to run bmdbupdate.exe. It doesn't need to be run on the database server itself; the user that runs it must have dbo permissions to the proget database.
  • 0 Votes
    3 Posts
    19 Views
    ?
    Ah, I see it. I use Caddy as my reverse proxy which doesn't support this feature.
  • ProGet Install Error

    Support proget installation
    2
    0 Votes
    2 Posts
    15 Views
    ?
    There appears to be a problem with the windows service manager. I recommend you to reboot the server, and try again. If that fails, you can use the manual installation instructions.
  • ETA on ProGet 4.7.12 for Linux?

    Support linux proget
    3
    0 Votes
    3 Posts
    4 Views
    ?
    Thanks for the response! Gotta say, I'm impressed that y'all take the time to answer questions like this, even when they're from free-license users.
  • Linux proget crashes on incoming requests

    Support linux proget
    3
    0 Votes
    3 Posts
    10 Views
    ?
    I tried on a different machine which runs Ubuntu 16.04.2 LTS and for some reason I no longer see the problem. Even more surprising is that both machines are virtual machines built from the same VirtualBox image. The 16.04 one was recently upgraded from 14.04. I guess 14.04 image is somehow broken and was fixed during the upgrade. I guess that's answers my question.
  • Cannot login to docker feed with docker client

    Support proget microsoft
    3
    0 Votes
    3 Posts
    67 Views
    ?
    I figured that by remove Windows Auth and going back to build-in security but that won't work for my scenario. I've moved to an azure registry and it's working fine. I'm sorry I can't use Proget for all my feeds though. Cheers, ET
  • Invalid credentials

    Support proget jenkins
    2
    0 Votes
    2 Posts
    16 Views
    ?
    Jenkins does not support Windows Integrated auth, so you will need to disable it to get Jenkins to be able to talk to ProGet.
  • Problem with VSIX feed

    Support proget
    3
    0 Votes
    3 Posts
    3 Views
    ?
    Sorry Sorry Sorry!!! I've tested it on VS2015 and VS2017 and it runs ok!!!! Sorry, 've mismatched the protocol (it must be set to "Atom Feed" (from VSGallery)).
  • 0 Votes
    4 Posts
    43 Views
    ?
    Hey Thanks for the pointer to the nginx fix, works a treat. Here is my docker-compose setup for anyone looking for a quick and great fix... version: '3' services: proget-web: image: inedo/proget:latest ports: - "888:80" hostname: proget-web restart: always volumes: - "/var/proget/extensions:/var.progetextensions" - "/var/proget/packages:/var/proget/packages" depends_on: - proget-postgres expose: - "888" proget-postgres: image: postgres:9.5 restart: always volumes: - "/etc/localtime:/etc/localtime:ro" - "/var/proget/db:/var/lib/postgresql/data" proxy: image: nginx:1.11 ports: - "2345:2345" volumes: - ./nginx.conf:/etc/nginx/conf.d/default.conf:ro depends_on: - proget-web
  • Whitelist

    Support proget
    5
    0 Votes
    5 Posts
    4 Views
    ?
    Can I stop developers from accessing the Public feed?
  • Azure SQL Connection string

    Support azure sql-server proget
    4
    0 Votes
    4 Posts
    19 Views
    ?
    That's the error from the SCM, but the .NET error is also logged. You may want to try running the service interactively in this case, then you can see the error message and identify what's wrong with the db connection.
  • Only allow certain packages in connected feed

    Support proget
    2
    0 Votes
    2 Posts
    1 Views
    benB
    Hello Graham, Filters are what you should use in this case. You can add a package ID like MyCompany.SomeProduct or a wildcard like MyCompany.*. A long list might be hard to work with, since it's just a text box, but if you're only adding new things to the list every so often and not modifying the list all the time, it should be fine.
  • Download packages based on Metadata

    Support proget
    5
    0 Votes
    5 Posts
    16 Views
    ?
    You can do this... GET /upack/«feed-name»/search?query=«search-query»&count=«max-items» This is the same API that the ProGet Web Application uses to show results to users, and returns a list of packages similar to the packages endpoint.
  • 0 Votes
    6 Posts
    24 Views
    ?
    wow, thank you very much ^^
  • UI Behavior

    Support proget
    2
    0 Votes
    2 Posts
    1 Views
    ?
    I understand the frustration... but we really didn't design the UI for quick, rapid package deletes. Have you considered using retention policies instead ? This will automatically purge old versions. You can also write a script that uses the API to do it. As a work-around for the manual mass deleted... I suppose in this case, you could just middle-click to open a new tab, and then delete several tabs at once?
  • 0 Votes
    2 Posts
    75 Views
    benB
    Hello Jim, You can run the ProGet service in interactive mode to see its logs: Stop the ProGet service. In Command Prompt or PowerShell, run .\ProGet.Service.exe run from C:\Program Files\ProGet\Service (or wherever you installed ProGet if you didn't use the default location). It will run the drop path monitor every 60 seconds by default. The message for the drop path monitor starting is Executing DropPathMonitorExecuter.... You can edit Service.DropPathMonitorExecuterThrottle in /administration/advanced-settings to less than 60 seconds if waiting gets too annoying. Immediately after the drop path monitor runs, there should be a message that says Scanning for packages in f:\dsc\droppath. This will be followed by Found f:\dsc\droppath\file.ext any packages it finds. In order to be found, the package files must end in the expected extension: .tgz for npm feeds .nupkg for NuGet feeds .gem for Ruby Gems feeds .upack for Universal feeds .vsix for VSIX feeds If an error occurs while trying to add a package from the drop path, it will appear on a line shortly after the Found f:\dsc\droppath\file.ext line, starting with Error installing package:.
  • Unable to connect inedo.com

    Support nuget proget
    2
    0 Votes
    2 Posts
    5 Views
    ?
    You may have a proxy server that doesn't allow a connection to Inedo.com; that's where latest news is loaded from. There's not enough to help here.
  • CSS was ignored due to mime type mismatch

    Support iis proget
    3
    0 Votes
    3 Posts
    63 Views
    B
    I had the same issue. What seems to solve this is to add "static content" in IIS features link
  • Cannot find web application path

    Support proget-installation proget
    2
    0 Votes
    2 Posts
    3 Views
    benB
    Assuming ProGet.Service.exe is in C:\Program Files\ProGet\Service, there should be a folder named C:\Program Files\ProGet\WebApp. Does the WebApp folder exist?
  • Dependency determination hanging in latest version

    Support proget
    2
    0 Votes
    2 Posts
    4 Views
    ?
    Dependency resolution is handled entirely by the NuGet client, so it's hard to say why the NuGet client is hanging like that. There have been no changes to ProGet that would yield this behavior.