Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
wordpress:start [2016/04/04 08:11] samarn |
wordpress:start [2016/08/03 09:05] (current) samarn [WordPress] |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== WordPress ====== | ====== WordPress ====== | ||
+ | |||
* [[plugins|ปลั๊กอิน]] | * [[plugins|ปลั๊กอิน]] | ||
+ | * [[qa|ถามตอบเกี่ยวกับ WordPress]] | ||
+ | |||
---- | ---- | ||
* [[image-do-not-show-in-media-library|ภาพไม่แสดงใน Media Library]] | * [[image-do-not-show-in-media-library|ภาพไม่แสดงใน Media Library]] | ||
* [[change-user-name-of-admin|เปลี่ยนชื่อผู้ใช้ของ Admin]] | * [[change-user-name-of-admin|เปลี่ยนชื่อผู้ใช้ของ Admin]] | ||
+ | * [[synchronize|การทำให้มีไฟล์เหมือนกัน]] | ||
+ | * [[https://wordpress.org/plugins/new-user-approve/|ปลั๊กอินสำหรับอนุมัติผู้ใช้]] | ||
---- | ---- | ||
+ | * [[wordpress-path|url ต่าง ๆ ของ WordPress]] | ||
+ | ---- | ||
+ | ====== ข้อผิดพลาด ====== | ||
+ | |||
+ | *[[cant-upload-files|ไม่สามารถอัพโหลดไฟล์ได้]] | ||
+ | |||
+ | ---- | ||
+ | |||
เกี่ยวกับการใช้ Xampp เป็น WebServer | เกี่ยวกับการใช้ Xampp เป็น WebServer | ||
Line 20: | Line 33: | ||
* AppServ | * AppServ | ||
* Xampp | * Xampp | ||
+ | |||
+ | ---- | ||
+ | |||
+ | **การทำ Virtual Host บน WampServer** | ||
+ | |||
+ | - เปิดไฟล์ httpd.conf แล้วไปลบ # ที่บรรทัด LoadModule vhost_alias_module modules/mod_vhost_alias.so | ||
+ | - ไฟล์ httpd.conf ลบ # หน้า Include conf/extra/httpd-vhosts.conf ออก | ||
+ | - เปิดไฟล์ httpd-vhosts.conf แล้วเพิ่มโค้ดตามด้านล่าง \\ โดยชุดแรก สำหรับ localhost ส่วนชุดที่ 2 สำหรับ wordpress.localhost โดยให้สร้างโฟลเดอร์ตามที่ระบุไว้ใน wordpress.localhost ด้วย | ||
+ | - เปิดไฟล์ hosts เพิ่มบรรทัด 127.0.0.1 wordpress.localhost | ||
+ | - restart service ของ Apache ใหม่ | ||
+ | - พิมพ์ url ตามโดเมนที่สร้างเอาไว้ | ||
+ | |||
+ | <VirtualHost *:80> | ||
+ | DocumentRoot "C:/wamp/www" | ||
+ | ServerName localhost | ||
+ | <Directory "C:/wamp/www"> | ||
+ | Options Indexes | ||
+ | Require all granted | ||
+ | </Directory> | ||
+ | </VirtualHost> | ||
+ | |||
+ | |||
+ | <VirtualHost *:80> | ||
+ | DocumentRoot "C:/web/htdocs" | ||
+ | ServerName wordpress.localhost | ||
+ | <Directory "C:/web/htdocs"> | ||
+ | Options Indexes | ||
+ | Require all granted | ||
+ | </Directory> | ||
+ | </VirtualHost> | ||
+ | ===== ข้อมูลเพิ่มเติมเกี่ยวกับ การทำ Virtual host ===== | ||
+ | |||
+ | * [[https://httpd.apache.org/docs/2.4/vhosts/mass.html|Dynamically Configured Mass Virtual Hosting]] | ||
+ | * [[https://httpd.apache.org/docs/2.4/mod/mod_vhost_alias.html|Apache Module mod_vhost_alias]] |