1. 论坛系统升级为Xenforo,欢迎大家测试!
    排除公告

ArticleLive NX v0.5.2

本帖由 小叶2006-02-13 发布。版面名称:源码讨论

  1. 小叶

    小叶 New Member

    注册:
    2005-09-04
    帖子:
    17,941
    赞:
    33
    ■ Script name : ArticleLive NX v0.5.2
    ■ Supplied by : DGT
    ■ Nullified by : DGT
    ■ Tested by : DGT
    ■ Protection : License, Hotlinks, Callhomes
    ■ Homepage : http://www.interspire.com/
    ■ Release date : 02-05-2006
    ■ Release type : PHP/MySQL
    ■ Price : $239.00 (Single Web Site)

    [​IMG]

    Instant Web Site ... Just Add Content! With ArticleLive NX it's now even easier to build and manage your own content site from scratch -- with absolutely no technical experience!

    [HIDE]
    http://www.sendmefile.com/00281921
    [/HIDE]
     
    #1 小叶, 2006-02-13
    由版主最后编辑: 2006-02-14
  2. kessse

    kessse New Member

    注册:
    2005-11-07
    帖子:
    144
    赞:
    1
    这家伙更新太快了。。。
     
  3. ahwcz

    ahwcz New Member

    注册:
    2005-11-28
    帖子:
    108
    赞:
    1
    好东西
     
  4. laogui

    laogui Administrator
    管理成员

    注册:
    2005-08-30
    帖子:
    15,216
    赞:
    35
  5. laogui

    laogui Administrator
    管理成员

    注册:
    2005-08-30
    帖子:
    15,216
    赞:
    35
  6. OUYANG

    OUYANG New Member

    注册:
    2005-09-06
    帖子:
    3,025
    赞:
    5
    太快了
     
  7. kessse

    kessse New Member

    注册:
    2005-11-07
    帖子:
    144
    赞:
    1
  8. laogui

    laogui Administrator
    管理成员

    注册:
    2005-08-30
    帖子:
    15,216
    赞:
    35
    广东电信访问www.sendmefile.com这个站都出奇的慢
     
  9. laogui

    laogui Administrator
    管理成员

    注册:
    2005-08-30
    帖子:
    15,216
    赞:
    35
    0.5.2缺少.htaccess文件,我搞了一个

    代码:
    Options +FollowSymlinks
    RewriteEngine On
    
    AddType text/xml .xslt
    
    <Files *.xslt>
    	SetHandler text/xml
    </Files>
    
    <IfModule !mod_php4.c>
    
    	<IfModule !mod_php5.c>
    
    		# PHP is in CGI Mode, so we need a different mod_rewrite
    
    		RewriteCond %{REQUEST_URI} !categories\.php
    		RewriteRule ^categories(.*) categories.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !articles\.php
    		RewriteRule ^articles(.*)$ articles.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !pages\.php
    		RewriteRule ^pages(.*)$ pages.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !blogs\.php
    		RewriteRule ^blogs(.*)$ blogs.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !search.php
    		RewriteRule ^search(.*)$ search\.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !authors.php
    		RewriteRule ^authors(.*)$ authors\.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !articlerss.php
    		RewriteRule ^articlerss(.*)$ articlerss\.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !news.php
    		RewriteCond %{REQUEST_URI} !newsrss.php
    		RewriteRule ^news(.*)$ news.php?$1 [L]
    		
    		RewriteCond %{REQUEST_URI} !contact.php
    		RewriteRule ^contact(.*)$ contact\.php?$1 [L]
    		
    
    	</IfModule>
    
    	<IfModule mod_php5.c>
    		
    		# Using PHP 5 in module mode
    
    		RewriteCond %{REQUEST_URI} categories.*
    		RewriteRule ^categories(.*)$ categories.php?$1 [T=application/x-httpd-php,L]
    
    		RewriteCond %{REQUEST_URI} articles.*
    		RewriteRule ^articles(.*)$ articles.php?$1 [T=application/x-httpd-php,L]
    
    		RewriteCond %{REQUEST_URI} pages.*
    		RewriteRule ^pages(.*)$ pages.php?$1 [T=application/x-httpd-php,L]
    
    		RewriteCond %{REQUEST_URI} blogs.*
    		RewriteRule ^blogs(.*)$ blogs.php?$1 [T=application/x-httpd-php,L]
    
    		RewriteCond %{REQUEST_URI} search.*
    		RewriteRule ^search(.*)$ search.php?$1 [T=application/x-httpd-php,L]
    
    		RewriteCond %{REQUEST_URI} authors.*
    		RewriteRule ^authors(.*)$ authors.php?$1 [T=application/x-httpd-php,L]
    
    		RewriteCond %{REQUEST_URI} articlerss.*
    		RewriteRule ^articlerss(.*)$ articlerss.php?$1 [T=application/x-httpd-php,L]
    
    		RewriteCond %{REQUEST_URI} news.*
    		RewriteCond %{REQUEST_URI} !newsrss
    		RewriteRule ^news(.*)$ news.php?$1 [T=application/x-httpd-php,L]
    		
    		RewriteCond %{REQUEST_URI} contact.*
    		RewriteRule ^contact(.*)$ contact.php?$1 [T=application/x-httpd-php,L]
    
    	</IfModule>
    
    </IfModule>
    
    <IfModule mod_php4.c>
    
    	# PHP 4 in module mode
    
    	RewriteCond %{REQUEST_URI} categories.*
    	RewriteRule ^categories(.*)$ categories.php?$1 [T=application/x-httpd-php,L]
    
    	RewriteCond %{REQUEST_URI} articles.*
    	RewriteRule ^articles(.*)$ articles.php?$1 [T=application/x-httpd-php,L]
    
    	RewriteCond %{REQUEST_URI} pages.*
    	RewriteRule ^pages(.*)$ pages.php?$1 [T=application/x-httpd-php,L]
    
    	RewriteCond %{REQUEST_URI} blogs.*
    	RewriteRule ^blogs(.*)$ blogs.php?$1 [T=application/x-httpd-php,L]
    
    	RewriteCond %{REQUEST_URI} search.*
    	RewriteRule ^search(.*)$ search.php?$1 [T=application/x-httpd-php,L]
    
    	RewriteCond %{REQUEST_URI} authors.*
    	RewriteRule ^authors(.*)$ authors.php?$1 [T=application/x-httpd-php,L]
    
    	RewriteCond %{REQUEST_URI} articlerss.*
    	RewriteRule ^articlerss(.*)$ articlerss.php?$1 [T=application/x-httpd-php,L]
    
    	RewriteCond %{REQUEST_URI} news.*
    	RewriteCond %{REQUEST_URI} !newsrss
    	RewriteRule ^news(.*)$ news.php?$1 [T=application/x-httpd-php,L]
    	
    	RewriteCond %{REQUEST_URI} contact.*
    	RewriteRule ^contact(.*)$ contact.php?$1 [T=application/x-httpd-php,L]
    
    </IfModule>
     
  10. tzy

    tzy New Member

    注册:
    2005-11-04
    帖子:
    113
    赞:
    3