SharePoint 2010 - URL Invalid. It may refer to a nonexistent file or folder - sharepoint-2010

I am trying to upload documents to SharePoint 2010 site and i am getting the following error
The URL 'i74 Corridor/book/ADG Book_04-06-09.pdf' is invalid. It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web
I found it could be the Database full and I cleared the log files of the Database but still i was facing the same issue. Could you please provide a solution to fix this issue.
Thanks,
Sandeep Manne

I have faced the same issue and I have done few changes in DB settings as below.
1.Check the auto growth size of that DB
2.And see the Maximum file size limit increase it to around 2048 MB.

Related

Store Neomutt Mails in External Disk

I have installed Neomutt on Arch Linux using Luke Smith's Mutt-Wizard. It's working fine. I am storing all my emails in my local laptop's ~/.config/mutt/accounts folder which is mentioned in my .muttrc file.
But I have thousands of emails. So I wanted to change the location of storing the mails. I intend to store them on an external hard disk. But when I write the location of external disk in my .muttrc, Neomutt gives me error:
Maildir error: cannot read UIDVALIDITY.
Error: channel joy_deep#gmx.com: near side box INBOX cannot be opened.
Is there any way to config this?
I got it figured out somehow. I copied the mw file to mymw file. I changed the bash script. In maildir location, I put my Nextcloud folder. Changed same for .mbsyncrc file. Now it works.
Thanks.

Can not edit any webpage on odoo

using Odoo 13. I can't edit any page on the website (or the menu). I can see that this files are getting a 404 error (not loading) and they for sure are the problem here:
/web/content/261-c2af7d4/web_editor.summernote.css
/web/content/262-c2af7d4/web_editor.summernote.js
I've tried regenerating the assets but still getting that. Any hint what to check for then?
PS: Not sure if related, that site domain was changed and its database renamed in order to allow dbfilter to catch it. Look this solved post: About dbfilter not catching the correct database on Odoo 13
This was effectively due a database name change.
Checking at Settings -> Technical -> Database structure -> Attachments I was able to confirm that there where no files associated with web_editor.summernote.css and web_editor.summernote.js, as a quick fix I've borrowed those files from another site and uploaded them.
So #CZoellner gives me another hint that could be a better solution if you already have a website with a lot of attachments, and is to rename the filestore directory from your old database name to the new database name.
If you didn't set data_dir on your odoo config file, it's likely possible that the folder is located at ~/.local/share/Odoo/filestore of the user that runs odoo. There you will find folders with the corresponding database name, just rename and restart odoo so you're files will be present again.
PS: Always do backups.

FileZilla Not Responding when accessing App_Data folder containing an MDF file

I am having a strange issue with FileZilla client Not Responding (Picture attached) exclusively when accessing my App_Data folder in an asp.net website which contains a mdf file (SQL Database file). The folder I'm trying to access is on my local machine. I do not have any issues with viewing any other file types.
I am running the newest version of FileZilla client (3.34.0), I have tried reinstalling. I've also tried deleting the files in AppData/Roaming/FileZilla to see if that was the issue. I've checked my crashdumps in AppData\Local\CrashDumps, and there are no dumps. I've also made sure all SQL services are not running in case the MDF file was somehow in use.
I've searched around the web, and haven't found anyone with the same issue, and as a temporary solution have to use Windows file explorer to manage my FTP for this site.
Has anyone had a similar issue, or have any ideas of what I can try next? Any help is appreciated.
FileZilla Client not responding

Script timeout passed, if you want to finish import, please resubmit same file and import will resume

I have an sql file which I want to upload in my database in live server using Cpanel. The size of it is 8.36 mb. But the server showing me this error.
NB: I found several answers which shows me to configure php.ini file located in localhost. But in this case, I'm working with live server, and in the Cpanel I've no access in root files.
Please contact your hosting provider and ask them to increase max execution time and upload limit, You can not increase it with your cPanel access.

0 filesize when using move_uploaded_file()

Permissions are in line (777, owned by NGINX, etc),
Folder is writable,
File is small,
Everything I've found on Google for the last 4 hours is correct / NA
Players are NGINX, PHP-FPM, FastCGI..
I upload the file, use move_uploaded_file to move to uploads directory and the file saves. However the file, upon inspection, is 0kb and 0px by 0px. EMPTY.
Not finding this issue anywhere online?
Any thoughts?
If anyone comes across this and everything seems to be perfect.. CHECK your disk space! In my case I was using a mounted drive so I didn't get any typical low-space errors.
move_uploaded_file and copy do NOT display space issues. I had to use rename() to get any useful details.
Hope this helps some poor soul.
Someone posted a similar issue as yours here - http://bytes.com/topic/php/answers/1002-move_uploaded_file-corrupts-some-files
It seems the issue resides in transferring a GIF from a Windows machine to Linux.
Try using copy function instead. copy([source]),[destination]. If this works, that means you have a permission issue with upload temp directory.
Have you checked the permission on upload temp directory? You can find the directive/path on php.ini file(upload_tmp_dir).