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

uploading image -white page

neya

Chevereto Noob
I have problem with uploading image (same problem for local/remote tab)

I downloaded script again, and uploade to hosting (and same problem). When I start to uploading image, after several seconds, it shows white page (but 300kb images works perfect)
I try to upload same image on demo.chevereto.com, and it's work perfect.


And It works perfect with 300kb site image, but when I tryed 1.1MB, its just show white page.
On default, it 2MB upload limit, I realy don't know what is the problem.

here is image http://www.audreysilver.com/images/presskit1.jpg
maybe script is not good, or my hosting?

please help

thanks
 
ok, i tested, white page appers when I try to upload more then 1024kb

And it's configured like this (default):

$max_mb = '2.0'; // Maximo tamaño de imagen (Mbytes)
$max_by = $max_mb*1048576; // Maximo tamaño de imagen en bytes)
$max_name = '50'; // Caracteres maximos (no incluye ext y ".")
$mini_ancho = '150'; // Ancho del thumb (pixels)
$mini_alto = '150'; // Alto del thumb (pixels)
$lowres = '16'; // Minimo ancho a redimensionar
$higres = '1280'; // Maximo ancho de redimension

I try to change $max_mb to 3.0 or 1048576 to 2048576, but same problem


Do I need to configure something, because I just upload script afther I downloaded.

maybe this? :p

define('DOM_SCRIPT', $_SERVER['SERVER_NAME']);
define('PATH_SERVER', $_SERVER['DOCUMENT_ROOT']);
 
I find this link http://chevereto.com/foro/post770.html#p770

I change debug to true, and change $_server['DOCUMENT_ROOT'], but it's apper error

Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 13332 bytes) in /home/zucostyl/public_html/ul/engine.php on line 236

(I try to upload image wit 1234kB size!)
 
ah, it sucks

I can't change this :(((

shit.jpg
 
hey, It works :)

I contact hosting support and they say:
You can increase the PHP maximum upload file size on your website by creating a file called:

.htaccess

And placing the following lines inside that file:

php_value upload_max_filesize 10M
php_value post_max_size 20M

:) :)
 
It's very simple to solve this issue:

Just open engine.php

and put this line between php tags : <? and ?>

Code:
ini_set('memory_limit', '128M');

Change 128M to any size you want

Best Regards
 
Back
Top