Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login

    Blank Page after update of Duet Web Control

    Scheduled Pinned Locked Moved
    Duet Web Control
    3
    16
    782
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • A Former User?
      A Former User
      last edited by

      I just updated my duet web control and now all I see is a blank page. The tab at the top says Duet Web Control 2. Suggestions???

      1 Reply Last reply Reply Quote 0
      • Phaedruxundefined
        Phaedrux Moderator
        last edited by

        It sounds like maybe the update didn't proceed properly.

        First check with a different browser to see if it's just a browser issue. If it still doesn't work, I would pop the SD card into a PC, and manually replace the /www folder with the contents of the DWC 2.0.7 zip file.

        Z-Bot CoreXY Build | Thingiverse Profile

        A Former User? 1 Reply Last reply Reply Quote 0
        • A Former User?
          A Former User @Phaedrux
          last edited by

          @Phaedrux I did try the different browser still same issue. Pulled SD card and loaded a fresh download of the DWC 2.0.7 to the card into the /www folder and still same issue. Blank screen

          1 Reply Last reply Reply Quote 0
          • Phaedruxundefined
            Phaedrux Moderator
            last edited by

            What board and firmware version?

            Can you connect via USB and verify that it's actually loaded up?

            M115 will give the firmware version.
            M503 will try to read the contents of config.g to verify that the SD card has loaded config.g properly at startup.
            M112 will give a diagnostic report.

            Z-Bot CoreXY Build | Thingiverse Profile

            A Former User? 4 Replies Last reply Reply Quote 0
            • A Former User?
              A Former User
              last edited by

              Maybe add M20 S2 P"/www" to the list?

              And if everything looks good, the developer console in f.ex. chrome has a network tab to help identify issues as well.
              (in chrome hit F12 key to bring up the developer console in a new tab then type in the url for the duet)

              A Former User? 2 Replies Last reply Reply Quote 0
              • A Former User?
                A Former User @Phaedrux
                last edited by

                @Phaedrux So it will eventually load after about 15min and everything seems to be ok. Then I wanted to see if it was fixed so reloaded the page and we are back at the blank page

                1 Reply Last reply Reply Quote 0
                • A Former User?
                  A Former User @Phaedrux
                  last edited by A Former User

                  @Phaedrux
                  m115
                  FIRMWARE_NAME: RepRapFirmware for Duet 3 MB6HC v0.6 or 1.0 FIRMWARE_VERSION: 3.0 ELECTRONICS: Duet 3 MB6HC FIRMWARE_DATE: 2020-01-03b3

                  m503
                  ; Configuration file for Duet 3 (firmware version 3)
                  ; executed by the firmware on start-up
                  ;
                  ; generated by RepRapFirmware Configuration Tool v2.1.8 on Fri Mar 06 2020 14:56:26 GMT-0700 (Mountain Standard Time)

                  ; General preferences
                  G90 ; send absolute coordinates...
                  M83 ; ...but relative extruder moves
                  M550 P"Duet3 CNC" ; set printer name

                  ; Network
                  M552 P0.0.0.0 S1 ; enable network and acquire dynamic address via DHCP
                  M586 P0 S1 ; enable HTTP
                  M586 P1 S0 ; disable FTP
                  M586 P2 S0 ; disable Telnet

                  ; Drives
                  M569 P0.0 S1 ; physical drive 0.0 goes forwards
                  M569 P0.1 S0 ; physical drive 0.1 goes backwards
                  M569 P0.2 S0 ; physical drive 0.2 goes backwards
                  M569 P0.3 S0 ; physical drive 0.3 goes backwards
                  M584 X0.0:0.3 Y0.1 Z0.2 ; set drive mapping
                  M350 X16 Y16 Z16 E16 I1 ; configure microstepping with interpolation
                  M92 X80.00 Y80.00 Z400.00 E80.00 ; set steps per mm
                  M566 X900.00 Y900.00 Z12.00 E120.00 ; set maximum instantaneous speed changes (mm/min)
                  M203 X14000.00 Y14000.00 Z1800.00 E14000.00 ; set maximum speeds (mm/min)
                  M201 X500.00 Y500.00 Z20.00 E500.00 ; set accelerations (mm/s^2)
                  M906 X2800 Y2800 Z4200 E2800 I30 ; set motor currents (mA) and motor idle factor in per cent
                  M84 S30 ; Set idle timeout

                  ; Axis Limits
                  M208 X0 Y0 Z0 S1 ; set axis minima
                  M208 X2498 Y1245 Z130 S0 ; set axis maxima

                  ; Endstops
                  M574 X1 S1 P"io0.in" ; configure active-high endstop for low end on X via pin io0.in
                  M574 Y1 S1 P"io1.in" ; configure active-high endstop for low end on Y via pin io1.in
                  M574 Z2 S1 P"io2.in" ; configure active-high endstop for high end on Z via pin io2.in

                  ; Z-Probe
                  M558 P0 H5 F120 T12000 ; disable Z probe but set dive height, probe speed and travel speed
                  M557 X15:215 Y15:195 S20 ; define mesh grid

                  ; Heaters
                  M308 S0 P"temp0" Y"thermistor" T1 B4138 ; configure sensor 0 as thermistor on pin temp0
                  M950 H0 C"out0" T0 ; create bed heater output on out0 and map it to sensor 0
                  M143 H0 S0 ; set temperature limit for heater 0 to 0C
                  M307 H0 B0 S0.00 ; disable bang-bang mode for the bed heater and set PWM limit
                  M140 H0 ; map heated bed to heater 0

                  ; Fans

                  ; Tools

                  ; Custom settings
                  M307 H1 A-1 C-1 D-1 ; Disable Heater 1 so we can use it for a tool
                  M453 P0 R24000 F400 ; Set to CNC mode, using Tool 0, 24000 Max RPM, PWM Frequency 400hz

                  ; Miscellaneous
                  M501 ; load saved parameters from non-volatile memory
                  M911 S10 R11 P"M913 X0 Y0 G91 M83 G1 Z3 E-5 F1000" ; set voltage thresholds and actions to run on power loss

                  1 Reply Last reply Reply Quote 0
                  • A Former User?
                    A Former User @A Former User
                    last edited by

                    @bearer said in Blank Page after update of Duet Web Control:

                    M20 S2 P"/www"

                    M20 S2 P"/www"
                    

                    {"dir":"/www","first":0,"files":["html404.htm","language.xml.gz","reprap.htm.gz","*css","*fonts","*js","favicon.ico","*img","dwc.json","index.html","index.html.gz","favicon.ico.gz"],"next":0,"err":0}

                    1 Reply Last reply Reply Quote 0
                    • A Former User?
                      A Former User @A Former User
                      last edited by

                      @bearer what am I looking for in the developer console? I have it open.

                      1 Reply Last reply Reply Quote 0
                      • A Former User?
                        A Former User @Phaedrux
                        last edited by

                        This post is deleted!
                        1 Reply Last reply Reply Quote 0
                        • A Former User?
                          A Former User @Phaedrux
                          last edited by

                          @Phaedrux I also seem to have just a ton of files in my system folder now. I have never seen this many before:

                          page 1.PNG page 2.PNG page 3.PNG

                          1 Reply Last reply Reply Quote 0
                          • Phaedruxundefined
                            Phaedrux Moderator
                            last edited by

                            Looks like you might have accidentally placed the contents of the dwc zip file in the /sys folder instead of the /www folder.

                            Z-Bot CoreXY Build | Thingiverse Profile

                            A Former User? 1 Reply Last reply Reply Quote 0
                            • A Former User?
                              A Former User @Phaedrux
                              last edited by

                              @Phaedrux Wow super rookie mistake.

                              1 Reply Last reply Reply Quote 0
                              • Phaedruxundefined
                                Phaedrux Moderator
                                last edited by

                                no big deal. You have a backup of your SD card from before you started updating right?

                                Z-Bot CoreXY Build | Thingiverse Profile

                                A Former User? 2 Replies Last reply Reply Quote 0
                                • A Former User?
                                  A Former User @Phaedrux
                                  last edited by

                                  @Phaedrux right...... No but I guess I need the practice and the lesson.

                                  1 Reply Last reply Reply Quote 1
                                  • A Former User?
                                    A Former User @Phaedrux
                                    last edited by

                                    @Phaedrux fixed and fixed, comes up no problem now. Thank you

                                    1 Reply Last reply Reply Quote 1
                                    • h4ntyundefined h4nty referenced this topic
                                    • First post
                                      Last post
                                    Unless otherwise noted, all forum content is licensed under CC-BY-SA