ข้ามไปที่เนื้อหาหลัก

บทความ

กำลังแสดงโพสต์จาก พฤศจิกายน, 2014

Joomla 1.5.3 -> How to manual add 'Super User' directly to mysql server

fix joomla "E_NOLOGIN_ACCESS" follow by this assume use default prefix table "jos"  There are 3 table relate with 1 jos_users 2 jos_core_acl_aro 3 jos_core_acl_groups_aro_map use these sql command INSERT INTO `jos_users` (`name`, `username`, `password`, `params`) VALUES ('Administrator2', 'admin2', 'd2064d358136996bd22421584a7cb33e:trd7TvKHx6dMeoMmBVxYmg0vuXEA4199', ''); insert into `jos_core_acl_aro` (`section_value`,`value`,`order_value`,`name`,`hidden`) VALUES ( 0, LAST_INSERT_ID(), 0, 'admin2', 0) LAST_INSERT_ID() = latest jos_users.id  INSERT INTO jos_core_acl_groups_aro_map( `group_id` , `aro_id` ) VALUES ( 25,LAST_INSERT_ID() ) LAST_INSERT_ID() = latest jos_core_acl_aro.id now you can login joomla with user 'admin2' and password 'secret'

How to route different traffic thru different network interfaces (in Windows 8.1)

Let's say. I have 2 NIC, both assigned static IP addresses. One LAN interface is internal corporate LAN, the others is external link for all other access (ie. the INTERNET). the internal link can access the internet too. but I want access the internet with external link only. it's very easy by manual config static route via windows command-line (run as administrator) assume the internal link gateway is 10.134.2.1 > route delete 0.0.0.0 10.134.2.1 > route add 10.134.0.0 mask 255.255.0.0 10.134.2.1 addtional add default route with another interface ctive Routes: Network Destination        Netmask          Gateway       Interface  Metric           0.0.0.0          0.0.0.0       10.134.4.1        127.0.0.1     78       10.134.4.86  255.255.255.255         On-link       10.134.4.86    291         127.0.0.0        255.0.0.0         On-link         127.0.0.1    331         127.0.0.1  255.255.255.255         On-link         127.0.0.1    331   127.255.255.255  255.