0

I have this sort of errors in log, i can add cameras, but none of them are showing preview, and don't work

muru
  • 207,228

1 Answers1

0
  1. Keep the default zone apache.conf without the ScriptAlias.

  2. Stop both zoneminder and apache2.

    sudo service apache2 stop
    sudo service zoneminder stop
    
  3. Remove any stale sockets from /tmp/zm (default location).

    sudo rm -vf /tmp/zm/*.*
    
  4. Enable cgi in apache.

    sudo a2enmod cgi
    
  5. Start zoneminder.

    sudo service zoneminder start
    
  6. Start apache2.

    sudo service apache2 start
    
karel
  • 122,292
  • 133
  • 301
  • 332