17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 10627 Views |
-
uploading assets

30 May 2007 at 11:23am
Hi Folk
I would like to upload 500 assets all at once - is there a way to do this?
Thank you
Nicolaas
-
Re: uploading assets

30 May 2007 at 11:28am
You can use ftp to upload your assets, then visit the Files & Images section in the CMS to let SilverStripe know about them.
-
Re: uploading assets

30 May 2007 at 11:49am
thanks for your answer! Sounds like a good idea, except that the assets folders seems to be blocked for any CHMODS and any uploads
-
Re: uploading assets

31 May 2007 at 11:47am Last edited: 31 May 2007 11:48am
Probably reason you have problems with chmod and upload is that your web server has created that folder (and is now a owner of files) so it is writable by your server not you, so if you really need this manual upload then try using some sort of chmod script like this bellow:
<?php
chmod('/FULL_PATH_TO_ASSETS_DIR', 777); // this should after upload be 755
// so after you finish comment line above and "restart" this page (refresh)
#chmod('/FULL_PATH_TO_ASSETS_DIR', 755); // later uncomment this line
?>or much better read docs about chmod from php at http://www.php.net/chmod
-
Re: uploading assets

9 November 2007 at 4:43am
when giving us the script you did, where would I run this. I did FTP multiple files to the Assets/Uploads folder but when I access the files&images section they do not show, how do I refresh this folder?
thanks
| 10627 Views | ||
|
Page:
1
|
Go to Top |



