tonyp90
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: FTP can’t delete .mantenance file (WP 6.7.2)Just to be sure. I manage my own server. PHP is always the same, we are only switching pure-ftpd (not working) with vsftpd (working) on server side.
Forum: Fixing WordPress
In reply to: FTP can’t delete .mantenance file (WP 6.7.2)Yes, the updates are done through FTP access. Update runs correctly except the .maintenance file deletion. I can delete the .maintenance file with the same FTP access through filezilla and everything is just fine. There is an 2 years old problem with same symptoms where dot file is interpreted as folder in PHP (that’s why ftp_rmdir() is used).
https://core.trac.ww.wp.xz.cn/ticket/56966
As I wrote before. When we use different or older FTP daemon on the server, it runs great.
Forum: Plugins
In reply to: [Spiffy Calendar] Time validation & multiday viewWith time validation I had in mind something like this.
if ($dateFrom == $dateTo) { if ($timeFrom >= $timeTo) { return false; } } return trueI think the conference you referring should be handled as multiple 1 day events.
What I tried to achieve is single event which is spread in multiple days. Examle: I wanna book a table today from 22:00 to 02:00, so I enter 2024-06-06 22:00 – 2024-06-07 02:00. Calendar now showing 2024-06-06 22:00-0200 and 2024-06-07 22:00-0200
Maybe we just have a different approach.
In any case, thank you for this plugin. Does’nt found anything with this simplicity and frontend events submission.