codeigniter - Images doesnt loaded -


my code

<?php     foreach ($berita $data) { ?> <li><a href="<?php echo site_url('/home/berita/'.$data->id); ?>"><img  src="<?php echo base_url ('upload/berita/'.$data->gambar); ?>" title="<?php echo $data->judul ;?>"></a> <div class="slide-caption n hidden-phone"> <h3><?php echo $data->judul ;?></h3> <?php } ?> 

when in localhost work when hosting it wont work coz image size big?

you need set value of upload_max_filesize , post_max_size in php.ini :

; maximum allowed size uploaded files. upload_max_filesize = 40m  ; must greater or equal upload_max_filesize post_max_size = 40m 

after modifying php.ini file(s), need restart server use new configuration.

if can't access php.ini file can handle using .htaccess below :

<ifmodule mod_php5.c>    php_value upload_max_filesize 40m    php_value post_max_size 40m </ifmodule> 

Comments

Popular posts from this blog

c# - Binding a comma separated list to a List<int> in asp.net web api -

Delphi 7 and decode UTF-8 base64 -

html - Is there any way to exclude a single element from the style? (Bootstrap) -