More than one printer when using Simplify3d and repetier-server issue

I connected my Felix TEC 4 to my new Felix Pro 3 touch with repetier server running on the Pro3. I followed the repetier server instructions and setup the second printer and applied the script as mentioned here:
https://www.repetier-server.com/using-simplify-3d-repetier-server/
However, the second printer is not receiving data when using the script, the first printer does.

I am using:
"curl" -i -X POST -H "Content-Type: multipart/form-data" -H "x-api-key: <Your API>" -F "a=upload" -F "filename=@[output_filepath]" "http://<Your IP>:3344/printer/model/<First Printer Name>"
and for the second printer:
"curl" -i -X POST -H "Content-Type: multipart/form-data" -H "x-api-key: <Your API>" -F "a=upload" -F "filename=@[output_filepath]" "http://<Your IP>:3344/printer/model/<Second Printer Name>"

The second printer does not receive files on the repetier server. Any suggestions?

Comments

  • Make sure to use the right process in simplify3d with the correct name. Correct name is what you see in url as printer name, not what you see. So "Felix TEC 4" is wrong just because it has spaces in name. You will see in url they got replaced.
  • edited March 2019
    it turned out that the script is case sensitive. After changing the second script from "FELIX_TEC_4" to "Felix_TEC_4" it started working. Thank you. 
Sign In or Register to comment.