• Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • 😌 This community is user driven. Be polite with other users.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.

maximum imagine size load change

aidar89

Chevereto Noob
Hi form Russia. I have this problem .

you must complete part of the form in order to continue


I need to load files about 5-6megabytes, when i change from 2mb to 5, and change bytes, i have this problem when im load files.

where in script needs changes to load imagine files about 2-3-4mbytes?

Sorry for my English :)
 
Which of the two methods of uploading are you using ? (php or ftp)
In case of php, by default the server puts a limit on uploaded file size via php (it was 2mb for me), you can change this in the php.ini of the server.
 
Which of the two methods of uploading are you using ? (php or ftp)
In case of php, by default the server puts a limit on uploaded file size via php (it was 2mb for me), you can change this in the php.ini of the server.
 
Ainur said:
Which of the two methods of uploading are you using ? (php or ftp)
In case of php, by default the server puts a limit on uploaded file size via php (it was 2mb for me), you can change this in the php.ini of the server.
Thanks for your answer, but i cant find PHP.INI in server. It's no on Server!!!
 
pictures with my problem

in config i change:

bc50beb5dfcf.jpg


and screen of my error when im download image(2.3mbytes)

92d5a1f214a5.jpg
 
Hi, if you use a webhosting service i don't think that you can acess the php.ini
Otherwise in unix distribution the path is :
/etc/php5/apache2/php.ini

Code:
; When enabled, the SERVER and ENV variables are created when they're first
; used (Just In Time) instead of when the script starts. If these variables
; are not used within a script, having this directive on will result in a
; performance gain. The PHP directives register_globals, register_long_arrays,
; and register_argc_argv must be disabled for this directive to have any affect.
auto_globals_jit = On

; Maximum size of POST data that PHP will accept.
post_max_size = 8M

Try using an ftp access in other case.
 
thanks!

another question :)

Where i can translate or change name of icon of RESIZE IMAGe in main page? It's no on folder site-img..

358ebf98d92d.jpg
 
You have to create another icon in your own language and than replace the current one, or link to the new one in the source code.
 
In the index.php i guess :
Code:
<link rel="shortcut icon" href="<?=PATH_SCRIPT;?>favicon.ico" type="image/x-icon" />
 
In the folder site-img :
You have different button called : btn_red.gif
By default (english): the script uses btn_red_en.gif
(cn, en, fr, fa, nl exist too)
 
Ainur said:
You have to create another icon in your own language and than replace the current one, or link to the new one in the source code.
brrrr, i dont understand, my english is so bad.. What need's to do to me?

1st: create new icon with russian language(what sizes of thats icon, i dont know?) ?
2nd: replase to folder of Upload/site-img ?

if i create new link in the source code, there was old english RESIZE IMAGE, what needs to do?
 
Ok :

1/
Save this picture : http://ainur.vaxserver.eu/images/chevereto/site-img/btn_red_en.gif
(Google traduction)

2/
Put it in the folder : site-img/
Replace : Yes

3/ Open estillo.css
Find
Code:
/* en */
div#boton_redimensionar.en a#rclosed, div#boton_redimensionar.en a#ropen {
    width: 103px !important;
    background-image: url(site-img/btn_red_en.gif) !important;
Replace with

Code:
/* en */
div#boton_redimensionar.en a#rclosed, div#boton_redimensionar.en a#ropen {
    width: 154px !important;
    background-image: url(site-img/btn_red_en.gif) !important;
 
thanks. Now i have only one problem - it's 2mbytes of uploading images. I havent in the server php.ini, it's no there! (server is my). What need to do to change 2mbytes to 8mbytes?
 
aidar89 said:
thanks. Now i have only one problem - it's 2mbytes of uploading images. I havent in the server php.ini, it's no there! (server is my). What need to do to change 2mbytes to 8mbytes?

You need to change the php.ini setting... Try this: http://drupal.org/node/97193
 
Back
Top