Jumat, 12 Juni 2015

how to create url seo friendly in yii2 basic for linux

0 komentar
how to create url seo friendly in yii2 basic

the first create file in folder root (localhost/basic/web) with name .htaccess
and copy sourcecode :

RewriteEngine on

# If a directory or a file exists, use the request directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Otherwise forward the request to index.php
RewriteRule . index.php


number two open file in config/web.php end copy code:

        'urlManager' => [
            'enablePrettyUrl' => true, //output localhost/basic/web/index.php?r=site/index
            'showScriptName' => false, //output localhost/basic/web/site/index
           
            'rules' => [
                'logout' => 'site/logout',
                'login' => 'site/login',
                '' => 'site/index',
            ],
           
        ], 

for linux edit etc/apache2/site-enabled
set:
<VirtualHost *:80>

        ServerAdmin webmaster@localhost
        DocumentRoot /home/samsul/public_html

        ServerName testproject

          <Directory /home/samsul/public_html>
  Options Indexes FollowSymLinks
  AllowOverride All
  Require all granted
</Directory>
</VirtualHost>

samsul@samsul-Inspiron-N4050:~$ sudo a2enmod rewrite && sudo /etc/init.d/apache2 restart
Enabling module rewrite.
To activate the new configuration, you need to run:
  service apache2 restart
 * Restarting web server apache2                                         [ OK ]
samsul@samsul-Inspiron-N4050:~$





for windows edit httpd.conf remove "#" 
Baca Selengkapnya →
Senin, 08 Juni 2015

UPLOAD GAMBAR PADA JAVA NETBEANS

7 komentar
Oke mamen aku mau share cara menambahkan upload gambar pada java pakai netbeans

Pertama
langsung aja download filenya disini dan pelajari sendiri mudahkan..???  He He He..
dan http://www.java2s.com/Code/Jar/c/Downloadcommonsio24jar.htm
database download dihatimu
screecoot1
 soot2
Buat JFrame baru jika belum buat.
Ambil panel, jlabel, button, text field, table.
Panel untuk membuat garis pinggir pada gambar,
jlabel di gunakan untuk menaruh perintah gambar atau set image, button ada dua satu untuk membuka gambar yang ada di folder button dua untuk simpan dan nama file dan title yang ada di textfield ke database dan juga untuk mengcopy gambar dari drive kamu ke folder yang ada di dalam project,
text field menulia title gambar (bukan nama gambar ya.. Nama gambar masih tetep dengan penamaan asli file gambar sebelum di upload), dan grid atau table si gunakan untuk menampilkan daftar atau list data
 yang ada di database dan juga menampilkan gambar ke panel tersebut.

Oke penjelasannya kurang lebih seperti itu jika tidak paham di oprek sendiri kalau masih belum bisa coba di oprek sendiri dan jika belum bisa lagi hya sudah buang laptopnya aja ..  :v

Pertanyaan dan saran bisa langsung komen ato ke fb :D
Baca Selengkapnya →