On 00.05 by Anonim
Setup
The steps in this tutorial require the user to have root privileges. You can see how to set that up in the Initial Server Setup.
Before working with wordpress, you need to have LAMP installed on your virtual private server. If you don't have the Linux, Apache, MySQL, PHP stack on your VPS, you can find the tutorial for setting it up in the Ubuntu LAMP tutorial.
Once you have the user and required software, you can start installing wordpress!
Step One—Download WordPress
We can download Wordpress straight from their website:
wget http://wordpress.org/latest.tar.gz
This command will download the zipped wordpress package straight to your user's home directory. You can unzip it the the next line:
tar -xzvf latest.tar.gz
Step Two—Create the WordPress Database and User
After we unzip the wordpress files, they will be in a directory called wordpress in the home directory.
Now we need to switch gears for a moment and create a new MySQL directory for wordpress.
Go ahead and log into the MySQL Shell:
mysql -u root -p
Login using your MySQL root password, and then we need to create a wordpress database, a user in that database, and give that user a new password. Keep in mind that all MySQL commands must end with semi-colon.
First, let's make the database (I'm calling mine wordpress for simplicity's sake; feel free to give it whatever name you choose):
CREATE DATABASE wordpress;
Query OK, 1 row affected (0.00 sec)
Then we need to create the new user. You can replace the database, name, and password, with whatever you prefer:
CREATE USER wordpressuser@localhost;
Query OK, 0 rows affected (0.00 sec)
Set the password for your new user:
SET PASSWORD FOR wordpressuser@localhost= PASSWORD("password");
Query OK, 0 rows affected (0.00 sec)
Finish up by granting all privileges to the new user. Without this command, the wordpress installer will not be able to start up:
GRANT ALL PRIVILEGES ON wordpress.* TO wordpressuser@localhost IDENTIFIED BY 'password';
Query OK, 0 rows affected (0.00 sec)
Then refresh MySQL:
FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
Exit out of the MySQL shell:
exit
Step Three—Setup the WordPress Configuration
The first step to is to copy the sample wordpress configuration file, located in the wordpress directory, into a new file which we will edit, creating a new usable wordpress config:
cp ~/wordpress/wp-config-sample.php ~/wordpress/wp-config.php
Then open the wordpress config:
sudo nano ~/wordpress/wp-config.php
Find the section that contains the field below and substitute in the correct name for your database, username, and password:
// ** MySQL settings - You can get this info from your web host ** //Save and Exit.
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'wordpressuser');
/** MySQL database password */
define('DB_PASSWORD', 'password');
Step Four—Copy the Files
We are almost done uploading Wordpress to the virtual private server. The final move that remains is to transfer the unzipped WordPress files to the website's root directory.
sudo rsync -avP ~/wordpress/ /var/www/
Finally we need to set the permissions on the installation. First, switch in to the web directory:
cd /var/www/
Give ownership of the directory to the apache user.
sudo chown username:www-data /var/www -R
sudo chmod g+w /var/www -R
From here, WordPress has its own easy to follow installation form online.
However, the form does require a specific php module to run. If it is not yet installed on your server, download php-gd:
sudo apt-get install php5-gd
Step Five—RESULTS: Access the WordPress Installation
Once that is all done, the wordpress online installation page is up and waiting for you:
Access the page by adding /wp-admin/install.php to your site's domain or IP address (eg. example.com/wp-admin/install.php) and fill out the short online form (it should look like this).
See More
Once Wordpress is installed, you have a strong base for building your site.
If you want to encrypt the information on your site, you can Install an SSL Certificate
On 18.36 by Anonim
IP address Configuration:
/ip address
add address=103.7.248.206/29 network=103.7.248.200 broadcast=103.7.248.207 interface=WAN1
add address=103.31.178.62/30 network=103.31.178.60 broadcast=103.31.178.63 interface=WAN2
VLAN Configuration on Mikrotik Router:
/interface vlan
add name=VLAN-100 interface=LOCAL vlan-id=100
add name=VLAN-200 interface=LOCAL vlan-id=200
/ip address
add address=192.168.10.1/24 interface=VLAN-100
add address=172.16.10.1/24 interface=VLAN-200
DNS Configuration:
/ip dns set allow-remote-requests=yes cache-max-ttl=1w cache-size=5000KiB max-udp-packet-size=512 servers=4.4.4.4,8,8.8.8.8
NAT Configuration:
/ip firewall nat
add chain=srcnat action=masquerade src-address=192.168.10.0/24 out-interface=WAN1
add chain=srcnat action=masquerade src-address=172.16.10.0/24 out-interface=WAN2
NAT Configuration:
/ip firewall nat
add chain=srcnat action=masquerade src-address=192.168.10.0/24 out-interface=WAN1
add chain=srcnat action=masquerade src-address=172.16.10.0/24 out-interface=WAN2
Mangle Configuration for 192.168.10.0/24 forward interface WAN1 and 172.16.10.0/24 forward WAN2
/ip firewall mangle
chain=prerouting action=mark-routing new-routing-mark=WAN1
passthrough=yes src-address=192.168.10.0/24
chain=prerouting action=mark-routing new-routing-mark=WAN2
passthrough=yes src-address=172.16.10.0/24
/ip route
add dst-address=0.0.0.0/0 routing-mark=WAN1 gateway=103.7.248.201
add dst-address=0.0.0.0/0 routing-mark=WAN2 gateway=103.31.178.61
chain=prerouting action=mark-routing new-routing-mark=WAN1
passthrough=yes src-address=192.168.10.0/24
chain=prerouting action=mark-routing new-routing-mark=WAN2
passthrough=yes src-address=172.16.10.0/24
/ip route
add dst-address=0.0.0.0/0 routing-mark=WAN1 gateway=103.7.248.201
add dst-address=0.0.0.0/0 routing-mark=WAN2 gateway=103.31.178.61
Simple Queue Configuration For Client 192.168.10.2:
/queue simple
Add name="Test1" target-addresses=192.168.10.2/32 interface=VLAN-100 parent=none
packet-marks="" direction=both priority=8
queue=default-small/default-small limit-at=0/0 max-limit=1M/1M
burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s
total-queue=default-small
Simple Queue Configuration For Client 172.16.10.2:
/queue simple
Add name="Test2" target-addresses=172.16.10.2/32 interface=VLAN-200 parent=none
packet-marks="" direction=both priority=8
queue=default-small/default-small limit-at=0/0 max-limit=1M/1M
burst-limit=0/0 burst-threshold=0/0 burst-time=0s/0s
total-queue=default-small
AccessSwitch Configuration:
AccessSwitch>enable
AccessSwitch#configuration terminal
AccessSwitch(config)#interface fastethernet 0/0
AccessSwitch(config-if)#switchport mode trunk
AccessSwitch(config-if)#switchport trunk allowed vlan all
AccessSwitch(config-if)#switchport nonegotiate
AccessSwitch(config)#vlan 100
AccessSwitch(config)#vlan 200
AccessSwitch(config)#interface fastethernet 0/1
AccessSwitch(config-if)#switchport mode access
AccessSwitch(config-if)#switchport access vlan 100
AccessSwitch(config)#interface fastethernet 0/2
AccessSwitch(config-if)#switchport mode access
AccessSwitch(config-if)#switchport access vlan 200
AccessSwitch#wr
Sumber : Sumber
On 07.07 by Anonim
Ceritanya saya baru saja berlangganan speedy 2 mbps dan dari pasang baru tersebut saya mendapatkan modem adsl tp-link yang sudah ada wifinya.
Jika kita mempunyai modem adsl yang ada wifinya, kita akan bingung memanfaatkan wifi yang ada pada modem adsl tersebut apabila meletakan dial pppoe speedy pada mikrotik, kalau dialnya di modem sih tidak ada masalah , tapi yang terbiasa dengan setting mikrotik dengan dial pppoe di mikrotik tentunya jadi masalah tersendiri.
Kekurangannya kalau kita meletakkan dial pada modem pastinya user yang terkoneksi ke wifi tidak melewati router kita mikrotik melainkan langsung menggunakan gateway modem, dan tentunya kita tidak bisa menerapkan bandwith management yang ideal untuk koneksi kita, betul nggak sih CMIIW .
Salah satu cara bisa dengan membuat dhcp server pada interface yang mengarah ke modem dan setting dhcp relay interface LAN ke mikrotik, sehingga user wifi bisa mendapatkan ip dari mikrotik.
Jika seperti itu maka topologinya akan seperti ini.
Topologi di atas user wifi sudah melewati mikrotik, tetapi belum bisa menyelesaikan masalah pengaturan bandwith user wifi yang ideal menurut saya.
Solusinya:
Dalam adsl modem+wifi biasanya ada fitur vlan , sehingga kita bisa memisahkan interface ( pvc , wireless , lan ) yang ada di modem.
Untuk memahami apa yang saya maksud mari kita lihat melihat topologi berikut.
Oke silakan di pahami topologi konfigurasi vlan di atas setelah paham mari kita lanjutkan cara settingnya.
Setting:
Pada modem.
Modem yang saya gunakan adalah tp-link, untuk setting pada modem saya akan menggunakan gambar, tentunya anda sudah terbiasa dengan menu dan tampilan modem sejuta umat tp-link.
1. Interface setup > internet
2. Interface setup > lan
3. Interface setup > Wireless
4. Advanced setup > vlan > aktifkan
5. Advanced setup > vlan > define vlan group > vlan index 1
6. Advanced setup > vlan > define vlan group > vlan index 2
7. Advanced setup > vlan > define vlan group > vlan index 3
8. advanced setup > vlan > Assign VLAN PVID for each Interface
Jangan lupa save pada setiap langkah di atas
sesuaikan atm vc dengan pvc yang digunakan pada modem anda karena pvc ini biasanya berbeda-beda.
Setting pada mikrotik.
Untuk setting mikrotik mohon maaf tidak ada gambarnya dan saya harap anda sudah familier dengan mikrotik.
1. Pada mikrotik saya ether1 = ether1-modem dan di beri ip address 192.168.1.2/24
2. Buat interface vlan2 dan vlan3
Code:
/interface vlan
add arp=enabled disabled=no interface=ether1-modem l2mtu=1516 mtu=1500 name=\
vlan2-speedy use-service-tag=no vlan-id=2
r1-modem l2mtu=1516 mtu=1500 name=\
vlan3-wifi use-service-tag=no vlan-id=3
add arp=enabled disabled=no interface=eth
e
3. Berikan ip address 192.168.3.1/24 pada interface vlan3-wifi
4. Buat interface – ppp - pppoe-client/dial dengan menggunakan interfaces vlan2-speedy, jika berhasil maka pada log mikrotik akan tampak conected.
5. Setup DHCP server dengan menggunakan interface vlan3-wifi.
Sampai disini setting selesai, dan anda dapat dengan mudah menggatur bandwith management pada wifi karena sudah memiliki interface sendiri , bahkan anda bisa setup hotspot pada interface vlan3-wifi.
Saya kira untuk setting lainnya seperti NAT dan lain sebagainya tidak perlu saya jelaskan disini.
Sekian Tutorial dari saya, jika ada kesalahan silakan di koreksi dan semoga bermanfaat.
Sumber : FMI
On 11.34 by Anonim in SmartBiling
# Sebelumnya replace dulu smartstarter.exe client dengan file inihttp://eenpahlefi-bjm.blogspot.com/2014/02/tutorial-no-autoupdate-smartbilling.html#0
# Jalankan SB server, tapi JANGAN LOGIN DULU
# Di folder instalasi SB server, cari folder Client Setup, RENAME/ HAPUS saja file itu agar tidak terupdate ke client.
# Kalau di rename, nanti ketika akan tutup warnet bisa dikembalikan lagi namanya seperti aslinya. Ulangi langkah ini setiap akan memulai SB server.
# Kalau dihapus, ketika SB server dihidupkan lagi maka SB server akan mendownload ulang file ini.
# Login SB server
# Jalankan SB server, tapi JANGAN LOGIN DULU
# Di folder instalasi SB server, cari folder Client Setup, RENAME/ HAPUS saja file itu agar tidak terupdate ke client.
# Kalau di rename, nanti ketika akan tutup warnet bisa dikembalikan lagi namanya seperti aslinya. Ulangi langkah ini setiap akan memulai SB server.
# Kalau dihapus, ketika SB server dihidupkan lagi maka SB server akan mendownload ulang file ini.
# Login SB server
On 11.30 by Anonim in SmartBiling
src; http://patch.gwarnet.com/SmartBilling/counter/SB20131213.001/ClientSetup/EF071EE8_SB_Clt_Bin_20131213.001.exe
Tutorial No Autoupdate Smartbilling - PILIH YANG DIMENGERTI SAJA
---------------------------------------------------------------------------------------------------------
via proxy
silahkan tambahkan pada squid.conf
acl smartbilling url_regex -i .patch\.gwarnet\.com\/SmartBilling\/counter\/*
http_access deny smartbilling
http_reply_access deny smartbilling
----------------------------------------------------------------------------------------------------------
via modem adsl
firewall - web filter - url
tambahkan;
http://patch.gwarnet.com/SmartBilling/counter/
----------------------------------------------------------------------------------------------------------
via mikrotik - gunakan salah satu op saja
+++
ip-firewall-filter rules
action drop
add di content
http://patch.gwarnet.com/SmartBilling/
+++
/ip firewall layer7-protocol
add name=smartbillingnoupdate regexp="^.+(patch.gwarnet.com).*\$"
/ip firewall filter
add action=drop chain=virus comment="drop smartbilling" disabled=no \
layer7-protocol=smartbillingnoupdate src-address=192.168.1.0/24
nb;
src-address=192.168.1.0/24=ip range warnet atau bisa hanya di isi ip lan kompi OP
kelemahan; buka sbcounter agak lama muncul layar loginnya, disebabkan sb memeriksa koneksi update ke server pusat
----------------------------------------------------------------------------------------------------------
via C:\WINDOWS\system32\drivers\etc\hots
edit hosts file open with notepad
masukkan link;
127.0.0.1 http://patch.gwarnet.com/SmartBilling/counter/
restart komputer
==========================================================================================================
jika smartbilling ada release update baru dan dirasa puas.
hapus semua settingan diatas
tujuan; auto update smartbilling jalan kembali
==========================================================================================================
CARA MANUAL dan EKSTRIM; no auto update smartbilling
sebelum LOGIN/MASUK smartBilling server
1.disable LAN via OS < jika ga paham cara nya. kita ke opsi no 2
2.cabut kabel LAN yg tercolok pada cpu kompi OP < jika ga paham juga, kita ke opsi no 3
3.gunting kabel LAN kompi OP
setelah LOGIN/MASUK smartbilling server
1.enable kan lagi LAN via OS
2.colok kembali kabel LAN
3.panggil tehnisinya, suruh bawa tool crimp... dan RG45
On 07.41 by Anonim
Beberapa gambar palsu makam Rasulullah SAW telah beredar di internet sejak sekian lama. Siapakah yang mula-mula menghantar dan menyebarkan gambar-gambar palsu ini di internet tidaklah diketahui.
Penipuan tersebut telah menimbulkan banyak kekeliruan bertujuan untuk mempermain-mainkan umat Islam dan boleh merosakkan akidah umat Islam. Ada pula orang telah mengambil kesempatan menjual gambar palsu itu dalam bentuk poster dan boleh dibeli di kedai buku atau kaset. Individu Muslim yang kurang usul-periksa pula telah membeli poster palsu itu, lantas menempah bingkai gambar yang besar lagi cantik untuk diletakkan di dinding rumah. Bila ditanya, dia mendakwa itulah makam Rasulullah, tanpa mengetahui dia telah tertipu.
![]() |
| Ini adalah gambar makam Maulana Jalaluddin Ar-Rumi, seorang ahli sufi. |
![]() |
| Untuk Lebih jelas nya bisa di liat gambar ini. |
![]() |
| Gambar:2 Keratan dari sebuah akhbar |
Langganan:
Postingan (Atom)
Temukan yang anda cari disini...
Total Tayangan Halaman
Tentang saya...
Tulisan Terbaru...
-
Dokumen ini hanya sekedar menunjukkan perbandingan masing-masing metode koneksi yang bisa digunakan untuk bermain PB GArena. WTFast Kelebiha...
-
Berjumpa lagi dengan saya Een Pahlefi. Kali ini saya akan share link download program aplikasi desktop yaitu delphi versi lama dan versi ter...
-
Bertemu lagi dengan saya Een Pahlefi. Kali ini kita akan membahas tentang " Tutorial Redirect Port 80 ke Proxy External". Bahasa s...
-
INSTRUCTIONS : For video tutorial >> Download 1.REMOVE installation key first using "Winact 1.4.1" (Right Click "Run a...
-
Siklus Hidup Sistem (System Life Cycle) SLC adalah proses evolusioner yang diikuti dalam menerapkan sistem atau sub-sistem informasi berbas...
-
/ip address add address=192.168.1.1/24 disabled=no interface=ether3 network=192.168.1.0 add address=192.168.2.2/24 disabled=no interface=Mod...
-
interface pppoe-client add ac-name="" add-default-route=yes allow=pap,chap,mschap1,mschap2 \ dial-on-demand=no disabled=no int...
-
With bootstrap responsive Bagi kalian yang sering ngedit - ngedit login page, dan pengen liat hasil nya di beberapa smart phone, gk perlu r...
-
Bagi yang suka download film - film box office ini cocok buat menata file koleksi kalian agar menarik buat di tonton..
Kategori Tulisan...
Arsip Tulisan...
Diberdayakan oleh Blogger.




