Topic: maximum imagine size load change

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 smile

Last edited by aidar89 (2009-10-26 19:32:08)

Thumbs up

Re: maximum imagine size load change

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.

Thumbs up

Re: maximum imagine size load change

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.

Thumbs up

Re: maximum imagine size load change

Ainur wrote:

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!!!

Last edited by aidar89 (2009-10-27 10:09:22)

Thumbs up

Re: maximum imagine size load change

pictures with my problem

in config i change:

http://i023.radikal.ru/0910/96/bc50beb5dfcf.jpg

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

http://s44.radikal.ru/i103/0910/e7/92d5a1f214a5.jpg

Thumbs up

Re: maximum imagine size load change

You can give a code of php.ini please?

Thumbs up

Re: maximum imagine size load change

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

; 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.

Thumbs up

Re: maximum imagine size load change

thanks!

another question smile

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

http://s48.radikal.ru/i119/0910/5e/358ebf98d92d.jpg

Last edited by aidar89 (2009-10-27 16:37:35)

Thumbs up

Re: maximum imagine size load change

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.

Thumbs up

Re: maximum imagine size load change

delete

Last edited by aidar89 (2009-10-27 17:30:09)

Thumbs up

Re: maximum imagine size load change

In the index.php i guess :

<link rel="shortcut icon" href="<?=PATH_SCRIPT;?>favicon.ico" type="image/x-icon" />

Thumbs up

Re: maximum imagine size load change

Ainur wrote:

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.

where placed the current one?

Thumbs up

Re: maximum imagine size load change

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)

Thumbs up

Re: maximum imagine size load change

Ainur wrote:

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?

Thumbs up

Re: maximum imagine size load change

Ok :

1/
Save this picture : http://ainur.vaxserver.eu/images/chever … red_en.gif
(Google traduction)

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

3/ Open estillo.css
Find

/* 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

/* 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;

Thumbs up