YouYaX开源论坛,经典版发布啦。
别说我老打广告,一没商业目的,二没技术保留,纯粹奉献出优秀的开源代码构成的开源论坛。
言归正传,
这是一次经典版本,经典值得珍藏。在外观方面作了长足进步。
修复了上个版本,列表页树形菜单在ie8下的不正确显示。
同时优化了代码,将列表页的树形菜单js代码,写到了单独的Js文件中,
提高可读性
第2点,最重要的,改写了评分的显示代码,之前的版本评分显示比较单调,不美观,连自己都不想评分,
看不下去了,为此,特意参考了discourse论坛的设计,将一些代码在自己本地反复调试,
用到了css3的伪类,还是有点技巧性的,现在的显示已经焕然一新。
当然,值得一提的是在评分功能不能进行回复等处理,
因为我将这种楼层的叠加盖楼的回复处理,放在了引用功能中,很久之前就已经实现的功能了。
如截图所示
回复讨论(解决方案)
一只很关注楼主。
为什么访问网站获取请求以后还要再次获取一下请求?
GET www.youyax.com
200 OK
youyax.com
16.4 KB
180.153.223.74:80
GET #
200 OK
youyax.com
16.4 KB
180.153.223.74:80
第二次获取的是www.youyax.com/#
两次内容一样,都有十几K。第二次的应该不需要吧?你可以firebug之类的跟一下。
另外,建议楼主后续时间对网站前段进行一下优化,好多图片都是100多K,有不少可以压缩的,看了一下至少能减少300K之多(毕竟你的没有做cdn而是直接放在服务器上面,这样也减少服务器带宽压力不是~)。同时,类似的图片建议整合成一张大图,也减少请求次数从一定程度上。
为什么访问网站获取请求以后还要再次获取一下请求?
GET www.youyax.com
200 OK
youyax.com
16.4 KB
180.153.223.74:80
GET #
200 OK
youyax.com
16.4 KB
180.153.223.74:80
第二次获取的是www.youyax.com/#
两次内容一样,都有十几K。第二次的应该不需要吧?你可以firebug之类的跟一下。
另外,建议楼主后续时间对网站前段进行一下优化,好多图片都是100多K,有不少可以压缩的,看了一下至少能减少300K之多(毕竟你的没有做cdn而是直接放在服务器上面,这样也减少服务器带宽压力不是~)。同时,类似的图片建议整合成一张大图,也减少请求次数从一定程度上。
你说的是官网主页?不懂你那些怎么出来的。
话说就目前来说,还看不出什么性能
期待一些著名的流量大的网站采用去二次开发
支持楼主,能开源的项目都是好项目
网址是多少啊
哈哈,这个很需要啊,分享是互联网的精髓啊
网址是多少啊
www.youyax.com 新更新版还加入了敏感词过滤
为什么访问网站获取请求以后还要再次获取一下请求?
GET www.youyax.com
200 OK
youyax.com
16.4 KB
180.153.223.74:80
GET #
200 OK
youyax.com
16.4 KB
180.153.223.74:80
第二次获取的是www.youyax.com/#
两次内容一样,都有十几K。第二次的应该不需要吧?你可以firebug之类的跟一下。
另外,建议楼主后续时间对网站前段进行一下优化,好多图片都是100多K,有不少可以压缩的,看了一下至少能减少300K之多(毕竟你的没有做cdn而是直接放在服务器上面,这样也减少服务器带宽压力不是~)。同时,类似的图片建议整合成一张大图,也减少请求次数从一定程度上。
你说的是官网主页?不懂你那些怎么出来的。
话说就目前来说,还看不出什么性能
期待一些著名的流量大的网站采用去二次开发
就是官网首页啊,你自己firebug跟一下就是了??
Request URL:http://www.youyax.com/#
Request Method:GET
Status Code:200 OK
首页和论坛的架构没关系的。单独的一个php文件,
话说看了开源软件评选,还是那么不景气啊,完败
也可以看出现在开源的东西最流行的还是
javascript,jquery插件
你好,我安装后,界面见截图,无法发帖。求帮助

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Alipay PHP...

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Article discusses essential security features in frameworks to protect against vulnerabilities, including input validation, authentication, and regular updates.

The article discusses adding custom functionality to frameworks, focusing on understanding architecture, identifying extension points, and best practices for integration and debugging.

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

An official introduction to the non-blocking feature of ReactPHP in-depth interpretation of ReactPHP's non-blocking feature has aroused many developers' questions: "ReactPHPisnon-blockingbydefault...

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.
