fread(): file created in the system's temporary directory at /var/www/html/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php#54
More 5Mb upload works fine. Web upload also fine.
sys_temp_dir
and tempdirectory
specified.
fread(): file created in the system's temporary directory at /var/www/html/apps/files_external/3rdparty/icewind/streams/src/Wrapper.php#54
More 5Mb upload works fine. Web upload also fine.
sys_temp_dir
and tempdirectory
specified.
Hello,
To help you effectively troubleshoot this issue, it would be great if you could provide more details about your setup. Specifically, consider including the following information:
sys_temp_dir
and tempdirectory
settings in your configuration.These details will give us a clearer picture of your environment and help pinpoint the root cause of the issue. Let us know!
sys_temp_dir
and tempdirectory
/var/upload_temp
also php upload_tmp_dir = /var/nextcloud_temp
6. no.
7. nfs as local path
8. any type of files
9. onlyoffice
Based on the information you shared, here are some steps and recommendations to help diagnose and potentially resolve the syncing issue:
Nextcloud and PHP Temp Directories:
/var/upload_temp
and /var/nextcloud_temp
) should be writable by the Nextcloud Docker container. Verify their permissions and ownership (www-data
for UID/GID 33).PHP Configuration:
post_max_size
and upload_max_filesize
in your PHP settings are set high enough for your users’ needs (e.g., post_max_size=2G
and upload_max_filesize=2G
).opcache.enable
is set to 1
and opcache.interned_strings_buffer
is adequately configured to handle your Nextcloud instance.NFS as Local Path:
flock
) and that oplocks
are enabled.config.php
if not already present:'filesystem_check_changes' => 1,
'memcache.local' => '\\OC\\Memcache\\APCu',
This ensures changes in the NFS share are detected promptly, and caching improves performance.Desktop Client:
File Types and OnlyOffice:
Log Analysis:
data/nextcloud.log
) and Docker container logs (docker logs <nextcloud-container>
).'loglevel' => 0,
in your config.php
.Advanced Proxy Configuration:
client_body_buffer_size 512k;
proxy_read_timeout 86400s;
client_max_body_size 0;
These settings can help prevent issues with large file syncing or timeouts.Network Stability:
Let us know the results after trying the client downgrade. This could be a significant factor in resolving your issue.
solved. it was different path to temp folder at configs.
This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.