Hello All!
For Dolphin 7.1 can someone please tell me the following limits for:
Photo Upload Size?
Sound Upload Size?
Video Upload Size?
Thanks in advance!
Hello All! For Dolphin 7.1 can someone please tell me the following limits for: Photo Upload Size? Sound Upload Size? Video Upload Size? Thanks in advance! |
Its max size is what ever is set in php.ini for post_max_size and upload_max_filesize. then you can set it smaller in each module setting in admin. https://dolphin-techs.com - Skype: Dolphin Techs |
Great! Thanks for the quick response! I will look into that. |
if you install dolphin or have it installed already... go to admin panel click on tools host tools php info and you will see what it is set to in there.. https://dolphin-techs.com - Skype: Dolphin Techs |
Good afternoon. In my practice I used several scripts sites where settings (сonfig.php type) indicates the size of the uploaded file without editing php.ini. At this point in the php.ini is the size of 20 MB, but one of the sites I upload a file up to 10 GB. Is it possible to do here as well? |
Good afternoon. In my practice I used several scripts sites where settings (сonfig.php type) indicates the size of the uploaded file without editing php.ini. At this point in the php.ini is the size of 20 MB, but one of the sites I upload a file up to 10 GB. Is it possible to do here as well? php.ini is a system level control, so it takes precedent over any higher setting such as software. If you can not change the system level setting, then you can use a php.ini file or a .htaccess file. .htaccess will control the directory it resides in as well as any lower directories. However, depending on how php is ran on the system, you may not be able to use .htaccess; will result in a 500 error. In that case, you must put a php.ini file in each directory that needs the increase file upload size and max post size. Geeks, making the world a better place |