Error while adding client in 1.5.5

A Database Error Occurred

Error Number: 1054

Unknown column 'user_all_clients' in 'where clause'

SELECT SQL_CALC_FOUND_ROWS ip_users.* FROM `ip_users` WHERE `user_all_clients` = 1 ORDER BY `ip_users`.`user_name`

Filename: core/MY_Model.php

Line Number: 88

Added a ticket for this: https://development.invoiceplane.com/browse/IP-610 :ip_blocker:

Hotfix
Run the following SQL statement on your database:

ALTER TABLE `ip_users`
  ADD `user_all_clients` INT(1) NOT NULL DEFAULT 0
  AFTER `user_psalt`;
3 Likes

It worked!

thanks this helped for me too.