Jump to content
Froxlor Forum

cscholz

Members
  • Posts

    12
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by cscholz

  1. Thanks for the update. With the following workaround I was able to eliminate the errors. Up to now there are no side effects. lib/Froxlor/PhpHelper.php:67 // $subject = htmlentities($subject, $quote_style, $charset); $subject = htmlentities((string)$subject, $quote_style, $charset); vendor/froxlor/idna-convert-legacy/src/IdnaConvert.php:191 // $input = trim($input); $input = trim((string)$input); admin_domains.php:688 // $row['termination_date'] = str_replace("0000-00-00", "", $row['termination_date']); $row['termination_date'] = str_replace("0000-00-00", "", (string)$row['termination_date']); customer_domains.php:509 // $row['termination_date'] = str_replace("0000-00-00", "", ($row['termination_date']); $row['termination_date'] = str_replace("0000-00-00", "", (string)$row['termination_date']);
  2. Any news on this? Nextcloud 24 added php 8.1 support and also baikal; I did not expect that froxlor will have issues. Just have not thought about it
  3. I'm not sure if I understood it correctly. But in the following example the subdomain is not connected to another domain. The red cross to delete the subdomain is not available. As manual workaround replacing edit in the edit link with delete works. customer_domains.php?...domains&action=edit&id=... customer_domains.php?...domains&action=delete&id=... For me it looks like a bug.
  4. First of all, I probably just can't find the button. I have created a subdomain in the client's interface. How can I delete the sub domain? To avoid a configuration issue I've tried it also on the demo site of froxlor. Where is the delete button? :-)
  5. Thanks you very mucht for your work! I've already updates 4 hours ago witout any issue. BR Christian
  6. I've update my prod buster system today to 10.0-rc2. I'll report any issues i'll find. How can I report possibl bugs?
×
×
  • Create New...