Jump to content

Ken

Members
  • Posts

    316
  • Joined

  • Last visited

  • Days Won

    2

Community Answers

  1. Ken's post in Support Ticket Mass Close was marked as the answer   
    This will mark all tickets in all departments closed.
    UPDATE `support_tickets` SET `status` = 'closed' Are you wanting to close them in a single department only? If so then you'll need to find the department ID in the 'support_departments' table and use the following. Where the number 1 is you'll need to change it to the department ID of choice:
    UPDATE `support_tickets` SET `status` = 'closed' WHERE `department_id` = '1'
  2. Ken's post in Password Reset Not Working was marked as the answer   
    After modifying the rewrite rule it redirects properly now.
     
    RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [R=307,NE,L]
×
×
  • Create New...