史上最神奇网站

  这是一个神奇的网站。

  它界面丑陋,服务器不稳定,用户体验更是烂到极点。

  但它却是史上最牛的电商!未做一分钱广告,短短数日内全球网站排名260!日订单量有望第一,不愁销售额,转化率当之无愧的第一!

  这就是中国铁路订票网12306。

        http://www.12306.cn/mormhweb/

       

H3C交换机禁止MAC

<h3c>dis logbuffer     \\查看日志
</h3c>
<h3c>system-view
System View: return to User View with Ctrl+Z.
[H3C]interface Ethernet 1/0/23
[H3C-Ethernet1/0/23]mac-address blackhole 000A-EB08-C226 vlan 1   \\目的黑洞MAC地址表项
[H3C-Ethernet1/0/23]undo mac-address blackhole 000A-EB08-C226 vlan 1   \\取消目的黑洞MAC地址表项
</h3c>

继续阅读

WP-CodeBox 测试

<?php
/*
 
Plugin Name: Multi-level Navigation Plugin
Plugin URI: http://pixopoint.com/multi-level-navigation/
Description: A WordPress plugin which adds a multi-level CSS based dropdown/flyout/slider menu to your WordPress blog. Visit the <a href="http://pixopoint.com/multi-level-navigation/">WP Multi-level Navigation Plugin page</a> for more information about the plugin, or our navigation <a href="http://pixopoint.com/forum/index.php?board=4.0">support board</a> for help with adding the menu to your theme.
Author: PixoPoint Web Development / Ryan Hellyer
Version: 2.1.6
Author URI: http://pixopoint.com/
 
Copyright (c) 2008 PixoPoint Web Development
 
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2 as
published by the Free Software Foundation.
 
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
license.txt file included with this plugin for more information.
 
*/
 
// Version number as displayed in source code
$pixopoint_mln_version = '2.1.6';
 
// Adds support for older versions of WordPress
if (!defined( 'WP_CONTENT_URL')) {define('WP_CONTENT_URL',get_option('siteurl').'/wp-content');}
if (!defined('WP_PLUGIN_URL')) {define('WP_PLUGIN_URL',WP_CONTENT_URL.'/plugins');}
 
// Attempt to add localization support
function my_init() {load_plugin_textdomain ('pixopoint_mln', "/wp-content/plugins/multi-level-navigation-plugin/languages/");}
add_action('init', 'my_init');
 
// Adds the various menu item options into an array
$suckerfish_menuitem = array(get_option('suckerfish_menuitem1'),get_option('suckerfish_menuitem2'),get_option('suckerfish_menuitem3'),get_option('suckerfish_menuitem4'),get_option('suckerfish_menuitem5'),get_option('suckerfish_menuitem6'),get_option('suckerfish_menuitem7'),get_option('suckerfish_menuitem8'),get_option('suckerfish_menuitem9'),get_option('suckerfish_menuitem10'));
$suckerfish_2_menuitem = array(get_option('suckerfish_2_menuitem1'),get_option('suckerfish_2_menuitem2'),get_option('suckerfish_2_menuitem3'),get_option('suckerfish_2_menuitem4'),get_option('suckerfish_2_menuitem5'),get_option('suckerfish_2_menuitem6'),get_option('suckerfish_2_menuitem7'),get_option('suckerfish_2_menuitem8'),get_option('suckerfish_2_menuitem9'),get_option('suckerfish_2_menuitem10'));
 
// Sets javsscript location and gets CSS
$javascript_location = WP_PLUGIN_URL.'/multi-level-navigation-plugin/scripts/';
$suckerfish_css = get_option('suckerfish_css');
 
// If in admin page, then load admin page stuff
if (is_admin()) {require('admin_page.php');}
 
// If maintenance mode is off then immediately loads plugin
elseif (get_option('suckerfish_maintenance') != 'on') {require('core.php');}
 
// Otherwise loads maintenance mode
else {require('maintenance.php');}
 
?>

Ostube 2.6

   Ostube是一个开源的视频系统,基于php,功能比较完,支持mpg|mov|wmv|mp4|mkv|3gp|flv|m4v|rm|rmvb上传并自动转换为flv格式播放。目前还没有一个视频系统功能超越。 缺点:基于LAMP,因为Apache没有flv_streaming模块,所以不支持视频拖拽。如果可以搭配Lighttpd或者Nginx就可以支持视频拖拽播放了
下载地址:http://115.com/file/aq5jqcn9
继续阅读

转载-H3C路由器内网访问内部服务器

    在日常应用中,随着Web、Email服务给大家带来的便力,部分企业单位,都相应布置了自己的专有服务器,在使用华为路由设备时,可能会在地址映射这块出现一些问题,现将个人工作经验及一些建议,写到本博客当中,望各位网友各自发表自己的建议。以及大家共同进步…

对外提供ftp,www等服务实例配置如下:

以www服务为例,公网接口需要增加如下配置:

[Quidway-Ethernet0/0]nat server protocol tcp global 202.1.1.2 www inside 192.168.0.2 www

继续阅读