I have recently moved my joomla site from my test server to live server.
In backend, when i try to upload image in media manager, there is an error saying Please input a file for upload. The max file size to upload is 10MB and m trying uploading small images. But still i got this error.
Can anyone help me with this. Any help is highly appreciated.
thanks
Check your browser, check the directory permissions (help menu), check your java version.
Don't just check the stories folder permissions. Joomla uploads files to the temp directory then moves them to the final location. Make sure all your permissions are set properly - 755 for folders, 644 for files. Also make sure that your temp directories are set correctly. If you just moved the site, you likely will need to update those for the file structure of the server.
Check the media setting in Global Configuration.
And check the path to temp folder.
Too many times put "Check permission"
That's it's wrong information. Not all server run with obsolete mod_php. Too many run on mode CGI, Fast-CGI, with SuXEC.
In this case, permission ok are 600, 700 to 644 - 755
Check that you don't have a discrepancy between the URL of your site and the one set in your configuration.php. They should match.
var $live_site = 'http://www.yourwebsiste.com.br';
Thanks to http://forum.joomla.org/viewtopic.php?p=2096980 for pointing me to the solution.
check that file_uploads setiing is enabled on the server in php.ini, I had the sam problem and this was the solution
Related
After using FileZilla to ftp the files to the website, my app just shows
Loading....
...when trying to run from a chrome browser.
I have built and tested the app in Webstorm (2017.2.3)
Do I need to do anything else other than just copy the files from the build/web directory to my host? What about the build/lib directory?
If you want to see what is happening (or not, actually), take a look at:
http://sudoku.geobits.com/index.html
Thanks for your help.
The file main.dart.js fails to load because of a comment at line 32071:
// "Document", so we check for the xmlVersion property, which is the empty
This is clearly shown in the examples at: sudoku.geobits.com/index.html which loads correctly, compared iwth sudoku.geobits.com/with_comment/index.html which does not. The difference is that the first does not have the comment, whereas the second is the main.dart.js as generated by WebStorm.
I have logged a bug report:#30992 with the dart-sdk people.
Thanks to all for their kind help.
Heloo,
I have website that built by SPIP and already online on the internet. Since my webmaster dont work anymore with us, now I try to learning CMS SPIP.
I want to edit one of the html file, located inside this directory : httpdocs/squelettes/myfile.html. Say the name of my file is myfile.html
I changed some part of the file than upload it through fileZile. When I open my browser and refresh it, the file haven't changed yet. but it's successful upload.
please advise, do we need to configure something to upload the file.
Thank you for your help
There is a simple way to refresh a page in SPIP when you have caching issues : pressing the Reprocess page button on the public site (as said by Serge) or adding ?var_mode=recalcul as a parameter of your URL.
I think the matter is in website cache. SPIP is hard caching HTML and images.
Try to clean cache via private area (under Maintenance button in SPIP 3) or press "Reprocess page" button on the front-end.
With your FTP connection go to the SPIP root directory, then find the /tmp directory open it and clear\empty the /cache directory inside it. This directory contains temporary files & cache files.
I have migrated an Umbraco install to a new server.
However, I now get a 500 server error whenever I try and open a media file.
I can upload files successfully to the root 'media' folder but I cannot seem to then navigate to these files.
Does anyone know what could be causing this?
As other poeple have mentioned, ideally we need to see the error message. Additionally, can you check if your server can serve up files of that type from other location? If so then it's a permissions issue (check the permissions on the old server match the new one, remember to give read, write and modify permissions to "IIS_IUSRS", "Network Service" and "IUSR" Windows accounts), but if you cannot serve any files of that type at all then you need to add the MIME extensions (added in IIS - see here)
This link suggests touching the global.asax, while this one makes me wonder whether you removed the Label datatype by any chance.
What version of Umbraco are you using? I would also look in the database, in the UmbracoLog table for any errors that might point you in the correct direction.
What type of media files don't work? Is it just certain extensions? Or everything (including images)?
If it is simply certain extensions, you may need to verify that IIS is allowing those extensions.
I develop website where users can upload doc , pdf and text files . They also can see files list and delete files. Problem is in this files have personal data . Can i protect somhow this files ? I Want administrators and moderators to see this files but also i want to protect from random downlad from other peoples. I hope i explain well .
Put them somewhere outside of the webroot, only accessible via your system. Whenever someone tries to access it, check his permissions and if they're okay, serve the file.
Oddest issue, thought I would see if anyone had run into this before.
We have an iPad application that stores PDF files in the documents directory. All goes great, we can open the PDF's with CGPDFDocumentCreateWithURL all day long. Then, we reinstall the application from the same adhoc site, and for some reason are not able to load the files. We can iterate the documents folder, see the files there, but can't open them. We just get a nil back from CGPDFDocumentCreateWithURL.
This feels very much like the permissions on the files change after the update, but can't prove that.
So, has anyone encountered this post update? Is there anyway to get a error return from CGPDFDocumentCreateWithURL?
We encountered a similar problem recently and perhaps the same is happening to you.
Are you using the complete URL/path which you had (probably) saved before you updated the application.
The reason is that the App_Home directory changes on updates. So if earlier it was:
/var/mobile/applications/<guid1>/
after the update it will become
/var/mobile/applications/<guid2>/
The solution is to save relative paths from App_Home directory.