02-02-2014, 08:52 PM
AUDIOJUNGLE FIXED
Step.1
Go to folder
zipmarket\core\classes
open the file
upload.class.php
find line 31 and edit the line 31
find
var $max_file_size = 0;
Replace with this
var $max_file_size = 500;
I have 100 MB made
var $max_file_size = 100;
Next Step .2
Go to folder
zipmarket\apps\upload\views
Open the file
form.html
Edit the Line from 286 to 291
Here is my Line
file_size_limit : "100 MB",
file_upload_limit : 100,
Next Step
Go to folder "zipmarket"
Open the file "config.php"
zipmarket/config.php
Here is my Edited Config.php
NEXT STEP
create a php.ini file
upload_max_filesize = 1024M
post_max_size = 1024M
short_open_tag = on
HERE is LIVE DEMO from my AUDIOJUNGLE you can test it . by to me works.
http://ec.blaxey.com/
Step.1
Go to folder
zipmarket\core\classes
open the file
upload.class.php
find line 31 and edit the line 31
find
var $max_file_size = 0;
Replace with this
var $max_file_size = 500;
I have 100 MB made
var $max_file_size = 100;
Next Step .2
Go to folder
zipmarket\apps\upload\views
Open the file
form.html
Edit the Line from 286 to 291
Here is my Line
file_size_limit : "100 MB",
file_upload_limit : 100,
Next Step
Go to folder "zipmarket"
Open the file "config.php"
zipmarket/config.php
Here is my Edited Config.php
PHP Code:
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/zipmarket/config/config.php';
$config = array(
'zipmarket_core' => $configArr['zipmarket_core'],
'root_path' => $configArr['root_path'],
'domain' => $configArr['domain'],
'site_title' => 'zipmarket',
'use_language' => false,
'default_language' => 'en',
'langs' => array(
'en'
),
'debug' => false,
'debug_ips' => array(
'localhost'
),
'mysql_host' => $configArr['mysql_host'],
'mysql_user' => $configArr['mysql_user'],
'mysql_pass' => $configArr['mysql_pass'],
'mysql_db' => $configArr['mysql_db'],
//Upload Files Setup
'max_audio_size' => 1024 * 1024 * 100, //500 MB
'audio_ext' => array(
'mp3',
'wav'
),
'max_video_size' => 1024 * 1024 * 100, //500 MB
'video_ext' => array(
'flv'
),
'max_file_size' => 1024 * 1024 * 10, //10 MB
'file_ext' => array(
'pdf',
'xls',
'xlsx',
'doc',
'docx',
'txt',
'rtf',
'png',
'jpg'
),
'max_upload_size' => 1024 * 1024 * 100, //500 MB
'upload_ext' => array(
'jpg',
'png',
'rar',
'zip',
'mp3',
'wav'
),
'max_photo_size' => 1024 * 1024 * 10, //10 MB
'photo_ext' => array(
'jpg',
'gif',
'png'
),
'photo_sizes' => array(
'A' => '50x50'
),
'avatar_photo_sizes' => array(
'A' => '80x80'
),
'homeimage_photo_sizes' => array(
'A' => '590x242'
)
);
$config['data_server_path'] = $config['root_path'] . 'static/';
if (substr($_SERVER['SERVER_NAME'], 0, 4) == 'www.') {
$config['data_server'] = 'http://www.' . $config['domain'] . '/static/';
} else {
$config['data_server'] = 'http://' . $config['domain'] . '/static/';
}
$config['recaptcha_public_key'] = $configArr['recaptcha_public_key'];
$config['recaptcha_private_key'] = $configArr['recaptcha_private_key'];
$config['emoticons'] = array(
':happy:' => 'happy.png',
':sad:' => 'sad.png',
':tongue:' => 'tongue.png',
':wink:' => 'wink.png',
':angry:' => 'angry.png',
':expressionless:' => 'expressionless.png',
':laugh:' => 'laugh.png',
':puzzled:' => 'puzzled.png',
':cool:' => 'cool.png',
':surprised:' => 'surprised.png',
':asleep:' => 'asleep.png',
':bashful:' => 'bashful.png',
':bashfulcute:' => 'bashfulcute.png',
':bigevilgrin:' => 'bigevilgrin.png',
':bigsmile:' => 'bigsmile.png',
':bigwink:' => 'bigwink.png',
':chuckle:' => 'chuckle.png',
':crying:' => 'crying.png',
':confused:' => 'confused.png',
':confusedsad:' => 'confusedsad.png',
':dead:' => 'dead.png',
':delicious:' => 'delicious.png',
':depressed:' => 'depressed.png',
':evil:' => 'evil.png',
':evilgrin:' => 'evilgrin.png',
':grin:' => 'grin.png',
':impatient:' => 'impatient.png',
':inlove:' => 'inlove.png',
':kiss:' => 'kiss.png',
':mad:' => 'mad.png',
':nerdy:' => 'nerdy.png',
':notfunny:' => 'notfunny.png',
':ohrly:' => 'ohrly.png',
':reallyevil:' => 'reallyevil.png',
':sarcasm:' => 'sarcasm.png',
':shocked:' => 'shocked.png',
':sick:' => 'sick.png',
':silly:' => 'silly.png',
':sing:' => 'sing.png',
':smitten:' => 'smitten.png',
':smug:' => 'smug.png',
':stress:' => 'stress.png',
':sunglasses:' => 'sunglasses.png',
':sunglasses2:' => 'sunglasses2.png',
':superbashfulcute:' => 'superbashfulcute.png',
':tired:' => 'tired.png',
':whistle:' => 'whistle.png',
':winktongue:' => 'winktongue.png',
':yawn:' => 'yawn.png',
':zipped:' => 'zipped.png'
);
?>
NEXT STEP
create a php.ini file
upload_max_filesize = 1024M
post_max_size = 1024M
short_open_tag = on
HERE is LIVE DEMO from my AUDIOJUNGLE you can test it . by to me works.
http://ec.blaxey.com/