Testing: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
|||
| Line 11: | Line 11: | ||
== user client node == | == user client node == | ||
=== browser issue === | |||
* browser version: [[Check Browser Compatibility]] | |||
* clear browser cache | |||
* clear server cache ex: [http://www.smarty.net/manual/en/caching.php Smarty Caching] | ** client temporary files | ||
** clear server cache ex: [http://www.smarty.net/manual/en/caching.php Smarty Caching] | |||
=== plugins issue === | |||
* [http://www.adobe.com/software/flash/about/ Test your Adobe Flash Player installation] | |||
* [http://www.adobe.com/shockwave/welcome/ Adobe - Test Adobe Shockwave Player] | |||
* test java... | |||
== local node (if you can login the server via SSH or Remote desktop service) == | == local node (if you can login the server via SSH or Remote desktop service) == | ||
Revision as of 14:00, 15 February 2011
Web site design and development process
- Information gathering: Research surveys
- Planning: Before you start to build a website, Content development strategy | Register domain name, Choose web hosting | Information architecture | Data model: Data type, Data flow | Documentation: Request For Proposal | Licensing
- Design: CSS tools, Free fonts, Free photos, Emoji & icons
- Testing & delivery: Usability test, check browser compatibility | Web testing | Speed up websites: Web Ping, Software acceptance test plan | Promote your web
- Maintenance: Site backup & restore test, Software update (OS patch or CMS security update)
- Need help? Community, I need inspiration, Web design glossary
remote node
browser
- connect to http://ip:80
- or use the website monitoring services: Web Ping
Validation service
Validator: Check Markup or CSS syntax
user client node
browser issue
- browser version: Check Browser Compatibility
- clear browser cache
- client temporary files
- clear server cache ex: Smarty Caching
plugins issue
local node (if you can login the server via SSH or Remote desktop service)
check the service port
telnet
- telnet localhost 80
- get (get & space)
netstat ex: find MySQL 3306 port
- netstat -a | find "3306"
tools
- PFPortCheck Program: check TCP/UDP port from localhost(where you installed the program) to portforward.com
check the server/service logs
- Apache HTTP server log: /etc/httpd/logs (location was set up in the configuration file /etc/httpd/conf/httpd.conf)
- access.log
- error.log - record when the apache service restarted/stopped
- MySQL Server Logs: /var/log/mysql.log (location was set up in the configuration file /etc/my.cnf or my.ini)
- PHP log: check the configuration file: /etc/php.ini (the location of configuration file can be verified by phpinfo() )
- unmark theese lines in the php.ini
log_errors = On error_log = "php_error.log"
- Microsoft Internet Information Services (IIS) log (記錄檔)
- C:\WINDOWS\system32\LogFiles\
- Microsoft Windows
- XP / Vista: 控制台 --> 系統管理工具 --> 事件檢視器
find match string
- grep 'string' filename -r
- Comment Syntax
- 設定中斷點