NukeViet CMS is multi Content Management System. NukeViet CMS is the 1st open source content management system in Vietnam. NukeViet was awarded the Vietnam Talent 2011, the Ministry of Education and Training Vietnam officially encouraged to use.

Overview

Introduction about NukeViet

NukeViet is the first opensource CMS in Vietnam. The lastest version - NukeViet 4 coding ground up support lastest web technologies, include reponsive web design (use HTML 5, CSS 3, Composer, XTemplate), jQuery, Ajax...) enables you to build websites and online applications rapidly.

With it own core libraries built in, NukeViet 4 is cross platforms and frameworks independent. By basic knowledge of PHP and MySQL, you can easily extend NukeViet for your purposes.

NukeViet core is simply but powerful. It supports abstract modules which can be duplicate. So, it helps you create automatically many modules without any line of code from existing abstract modules.

NukeViet supports installing automatically modules, blocks, themes at Admin Control Panel and supports packing features which allow you to share your modules to web- community.

NukeViet fully supports multi-languages for internationalization and localization. Not only multi-interface languages but also multi-database languages are supported. NukeViet supports you to build new languages which are not distributed by NukeViet.

Detailed information about Nukeviet at Wikipedia Encyclopedia: http://vi.wikipedia.org/wiki/NukeViet

Licensing

NukeViet is released under GNU/GPL version 2 or any later version.

See LICENSE for the full license.

NukeViet official website

Community

NukeViet Centre for Research and Development

VIETNAM OPEN SOURCE DEVELOPMENT JOINT STOCK COMPANY (VINADES.,JSC)

Website: http://vinades.vn | http://nukeviet.vn | http://nukeviet.com

Head Office:

  • Room 1706 - CT2 Nang Huong Building, 583 Nguyen Trai st, Ha Dong dist, Hanoi, Vietnam.
  • Phone: +84-24-85872007, Fax: +84-24-35500914, Email: contact (at) vinades.vn
Comments
  • [ Blocks ] Tạo ID hoặc CLASS để riêng biệt hoá từng block

    [ Blocks ] Tạo ID hoặc CLASS để riêng biệt hoá từng block

    Trong Nuke, một block có thể được dùng nhiều lần với các cấu hình khác nhau. Điều này dẫn tới các block dùng JS thì các selector bị rối, sinh ra lỗi. https://github.com/nukeviet/module-shops/issues/399 https://github.com/nukeviet/module-shops/issues/424

    Vậy thiết nghĩ khi block sinh ra, bản thân nó nên mang một "unique" id hoặc class, từ đó người viết block có thể linh hoạt, không chỉ với JS mà CSS cũng có thể điều chỉnh được thuận tiện hơn.

    opened by anhyeuviolet 25
  • [Góp ý] Gọi JS với theme khác default

    [Góp ý] Gọi JS với theme khác default

    Hiện tại các JS được đóng kèm với themes thay vì modules như trước. Vậy sẽ phát sinh là một trang nào đó dùng modules ABC chẳng hạn, thì chỉ có abc.js trong theme default mà thôi. Giả như người dùng cài một theme mới, modern chẳng hạn, thì hẳn nhiên theme này không có JS cho modules ABC đó thì cũng chịu chết vì nó không linh hoạt kiểm tra và gọi JS từ default như với TPL. Có phương án nào cho vụ này chưa ạ ? Điển hình như có một bạn test shop với theme riêng thì thiếu shops.js sinh lỗi.

    question (hỏi) 
    opened by anhyeuviolet 17
  • Phân quyền xoá sửa bài cho Quản trị

    Phân quyền xoá sửa bài cho Quản trị

    Hiện tại các quản trị có thể xoá, sửa bài của nhau kể cả bài của Quản trị tối cao. Cần sửa lại là: Bài của quản trị nào thì chỉ người quản trị đó mới có quyền sửa, xoá Chỉ Admin tối cao mới có quyền xoá sửa bài của quản trị cấp dưới mà thôi.

    future (tương lai) 
    opened by truongemcom 16
  • News: layout for detail #2404; Fix category block

    News: layout for detail #2404; Fix category block

    • Fix add/remove additional block of category function. Remove non necessary variable.
    • Update for #2404. Usable for both Backend and Front-end.

    Upgrade new function: Select layout. FYI.

    $array_modlang_update = array();
    $nv_update_config['formodule'] = 'news';
    // Lay danh sach ngon ngu
    $result = $db->query("SELECT lang FROM " . $db_config['prefix'] . "_setup_language WHERE setup=1");
    while (list ($_tmp) = $result->fetch(PDO::FETCH_NUM)) {
        $array_modlang_update[$_tmp] = array(
            "lang" => $_tmp,
            "mod" => array()
        );
        
        // Get all module
        $result1 = $db->query("SELECT title, module_data FROM " . $db_config['prefix'] . "_" . $_tmp . "_modules WHERE module_file=" . $db->quote($nv_update_config['formodule']));
        while (list ($_modt, $_modd) = $result1->fetch(PDO::FETCH_NUM)) {
            $array_modlang_update[$_tmp]['mod'][] = array(
                "module_title" => $_modt,
                "module_data" => $_modd
            );
        }
    }
    foreach ($array_modlang_update as $lang => $array_mod) {
        foreach ($array_mod['mod'] as $module_info) {
            $table_prefix = $db_config['prefix'] . "_" . $lang . "_" . $module_info['module_data'];
    		
    		// Layout
            try {
                $db->query("ALTER TABLE " . $db_config['prefix'] . "_" . $lang . "_" . $module_info['module_data'] . "_rows ADD `layout_func` varchar(100) DEFAULT '' AFTER `click_rating`");
            } catch (PDOException $e) {
                //
            }
    		
    		$uquery = $db->query("SELECT title, module_data FROM " . $db_config['prefix'] . "_" . $lang . "_modules WHERE module_file = 'news'");
    		while (list ($mod, $module_info['module_data']) = $uquery->fetch(3)) {
    			$nquery = $db->query("SELECT catid FROM " . $db_config['prefix'] . "_" . $lang . "_" . $module_info['module_data'] . "_cat");
    			while (list ($catid) = $nquery->fetch(3)) {
    				try {
    					$db->query("ALTER TABLE " . $db_config['prefix'] . "_" . $lang . "_" . $module_info['module_data'] . "_" . $catid . " ADD `layout_func` varchar(100) DEFAULT '' AFTER `click_rating`");
    				} catch (PDOException $e) {
    					//
    				}
    			}
    		}
    		
    	}
    }
    
    
    opened by anhyeuviolet 14
  • Vấn đề các button share bản tin của news

    Vấn đề các button share bản tin của news

    Các button này được chạy đồng thời với HTML trước khi các file javascript của hệ thống chạy. Việc này khiến cho các lệnh thực thi tức thời của JS bị đình trệ lại, dẫn đến trang thể hiện không đúng như mong muốn. Đặc biệt khi các máy chủ của các button share đó bị die thì việc load trang của mình cũng gặp rắc rối. Vì vậy nên viết lại để các nút này chỉ được hiển thị sau khi các js hệ thống chạy xong.

    enhancement (cải tiến) 
    opened by anhtunguyen 14
  • NV 4.0.17 lỗi menu Global bootstrap

    NV 4.0.17 lỗi menu Global bootstrap

    Bản 4.0.17 cài trên localhost bị lỗi menu Global bootstrap: click vô Giới thiệu, Tin tức, Thành viên, Thống kê và Liên hệ nó không chạy, nó đơ ra. Nó không cho click sửa block menu site này, click vô đơ ra không có tác dụng. Còn Menu footer vẫn hoạt động bình thường.

    bug (lỗi) 
    opened by duongGitHub 14
  • Lỗi khi chọn chức năng

    Lỗi khi chọn chức năng "tự động resize hình ảnh nếu kích thước lớn hơn kích thước tối đa"

    Nếu cấu hình upload là tự động resize nếu kích thước lớn hơn kích thước tối đa thì khi upload hình từ máy tính lên nếu kích thước hình nhỏ hơn kích thước tối đa thì hình gốc sẽ bị resize chiều rộng với chiều rộng tối đa.

    opened by motcaiten 13
  • Lỗi trắng trang - Chức năng Extension NV 4.0.09

    Lỗi trắng trang - Chức năng Extension NV 4.0.09

    Cấu hình thử nghiệm XP SP3 Xampp 1.7.1 PHP Version 5.2.9 Apache/2.2.11 (Win32) DAV/2 mod_ssl/2.2.11 OpenSSL/0.9.8i PHP/5.2.9 MySQL client version: 5.0.51a PHP extension: mysql Chrome & Firefox latest.

    Mô tả : Khi Admin click vào các chức năng của " Mở rộng" ( Extension) thì đều trả về trắng trang.

    opened by anhyeuviolet 13
  • Góp ý chức năng quản lý tag, module news

    Góp ý chức năng quản lý tag, module news

    Hiện tại khi thêm bài viết mới, muốn sử dụng từ khóa đã có thì chỉ cần gõ 1, 2 ký tự đầu tiên thì hệ thống tự tìm kiếm và đề xuất các từ khóa đó. -> điều này rất tiện dụng

    Tuy nhiên, nếu ở mục quản lý tag có chức năng gắn tag đó vào bài viết cụ thể mà không cần phải sửa bài viết thì tuyệt. (Giống chức năng thêm bài viết vào topic)

    Thêm nữa, trong mục quản lý tag, cũng nên cho display miêu tả (description) của tag đó, để khi vào quản lý, nếu thấy tag nào chưa có mô tả, thì có thể sửa hoặc thêm vào ngay. Chứ nếu như hiện tại, muốn tìm tag nào chưa có mô tả để thêm vào thì cũng hơi bị lâu. Nếu chỉ có vài chục từ khóa như site nhỏ thì không sao, nhưng nếu nukeviet mà hướng đến báo điện tử thì việc này hơi gay go đấy

    Lại thêm phần tag tự động, cái này nên có hay không? vì nếu để tag tự động thì nó hiện ra vô số từ khóa đa số là vô nghĩa, mất công đi xóa, đặt biệt nếu khi tạo bài viết mà lỡ quên không chọn ít nhất một từ khóa trước khi lưu, thì ôi thôi, phải đi dọn các từ khóa vừa bị lưu tự động đó, sang bên phần quản lý tag thì nó đã sort theo alphabet rồi, không còn biết từ nào mới từ nào cũ nữa.

    Do đó theo mình, nếu ô này không có từ khóa nào thì nên remind nhắc nhỡ chọn một từ khóa cho bài viết, nếu sau đó mà vẫn không có từ khóa nào được chọn thì để trống. ... Và trong mục quản lý bài viết thì ở mỗi tiêu đề của mỗi bài chèn số lượng tag hiện có của bài viết đó giống phần quản lý topic, để có thể thêm vào khi cần. như thế sẽ giúp cho việc quản lý dễ dàng hơn

    enhancement (cải tiến) 
    opened by phongaz 13
  • [Góp ý] Theme default Nukeviet 4.21 đang là thảm họa của Nukeviet từ trước tới giờ

    [Góp ý] Theme default Nukeviet 4.21 đang là thảm họa của Nukeviet từ trước tới giờ

    Đề nghị các bạn nên thiết kế lại. Tôi thực sự không hiểu thẩm mỹ của các bạn đang đến đâu khi làm ra cái giao diện hiện tại nhưng không chấp nhận được một tý nào. Phong cách quê mùa. Phối màu thì không chấp nhận được.

    opened by dangdinhtu2014 12
  • Thêm tùy chỉnh tiêu đề site trong new bị lỗi nếu cuối cùng tiêu đề kết thúc bằng html

    Thêm tùy chỉnh tiêu đề site trong new bị lỗi nếu cuối cùng tiêu đề kết thúc bằng html

    Trên bản mới nhất Nuke đã thêm chứ năng tùy chỉnh tiêu đề title cho chuyên mục. Rât tốt cho seo. Tuy nhiên hiện tại đang bị lỗi.Khi mình thêm dữ liệu ở trường này. Thì tiêu đề site hiển thị chữ Page ( không hiển thị đúng) Và trên breadcrumbs cũng hiển thị Page. breadcrumbs nên hiển thị theo tên chuyên mục

    bug (lỗi) 
    opened by thucvinh 11
  • Không cập nhật được phiên bản 4.5.03 từ 4.4.0.6

    Không cập nhật được phiên bản 4.5.03 từ 4.4.0.6

    Mô tả lỗi Không tương thích phiên bản

    Thao tác dẫn đến lỗi Cập nhật bằng cách thủ công, download file upto về. cả 3 phiên bản đều báo không tương thich

    Kết quả mong đợi Muôn lên bản 4.5.03 từ bản 4.4.06

    opened by sondoan1204 1
  • Lỗi cài đặt NV 4.5.03

    Lỗi cài đặt NV 4.5.03

    Mô tả lỗi Khi tải NV về cài, mặc định cài đặt là tiếng Anh. Nếu chuyển cài đặt bằng tiếng Việt thì khi cài đặt xong bị lỗi: "Khi nhấp vào link bài viết thì ko vào đc nội dung bài viết mà ra trang chủ. Tạo bài viết mới cũng vậy...." Máy tính để bàn (vui lòng điền đầy đủ thông tin sau):

    Thông tin bổ sung Thêm bất kỳ thông tin nào khác về vấn đề ở đây.

    opened by vingheo 2
  • Bổ sung tính năng quản lý file mồ côi, file trùng lặp trong module upload để tiện xóa file khỏi hosting

    Bổ sung tính năng quản lý file mồ côi, file trùng lặp trong module upload để tiện xóa file khỏi hosting

    Hiện giờ NukeViet không có chức năng xóa các file "mồ côi" (file không được sử dụng trên thực tế) Các site lớn, nhiều admin, có người upload file tùy tiện, có người xóa bài nhưng không có thói quen tìm và xóa file khiến cho host (server) xuất hiện nhiều file rác. Do đó cần các tính năng:

    Quản lý file mồ côi

    File mồ côi là không được sử dụng trên thực tế. Hệ thống cần tìm, liệt kê toàn bộ các file mồ côi để cho phép người quản trị xóa toàn bộ hoặc xóa từng file, xóa theo kết quả lọc (thư mục, loại file, người upload...) hoặc xóa một số file được lựa chọn.

    image

    Các tính năng cần bổ sung:

    • [ ] Rà soát và quản lý các file mồ côi.
    • [ ] Tuỳ chọn hiển thị các file mồ côi trong trình quản lý file của NukeViet (module Upload)
    • [ ] Bổ sung 1 mục chung (Đặt tên là "Lọc toàn bộ file mồ côi", đặt phía trên thư mục upload) để hiển thị tất cả các file mồ côi (bên cạnh việc duyệt file mồ côi theo thư mục). Các thao tác quản lý file xử lý như là quản lý file trong thư mục thông thường:
    • Thao tác lọc và hiển thị file: image
    • Thao tác chọn và xóa file mồ côi: image

    Bổ sung tính năng sắp xếp theo dung lượng file

    Mục đích: Để tiện việc xóa các file dung lượng lớn image

    idea (ý tưởng) 
    opened by thehung 2
  • Em xin gửi tài liệu chuẩn tiếp cận tốt hơn cho người khuyết tật đặc biệt là khiếm thị! Mong là NukeViet sau này có thể phát triển hơn về chuẩn tiếp cận này

    Em xin gửi tài liệu chuẩn tiếp cận tốt hơn cho người khuyết tật đặc biệt là khiếm thị! Mong là NukeViet sau này có thể phát triển hơn về chuẩn tiếp cận này

    Yêu cầu tính năng của bạn có liên quan đến sự cố không? Làm ơn miêu tả. Chuẩn tiếp cận dành cho người khuyết... đặc biệt là người khiếm thị

    Mô tả giải pháp bạn muốn Chuẩn WCAG dành cho NukeViet

    Thông tin bổ sung Tài liệu (Dịch qua hơi sai 1 tí, mong là các anh sẽ hiểu) Accessibility Standards & Accessibility Testing- VN (1).pdf

    opened by loilarryhttn 1
  • Lỗi khi điền alias đằng sau topic của module news -> trắng trang

    Lỗi khi điền alias đằng sau topic của module news -> trắng trang

    Mô tả lỗi Lỗi khi điền alias đằng sau topic của module news

    Thao tác dẫn đến lỗi Các bước để thấy lỗi:

    1. Đi tới domain/news/topic/ thì được
    2. Thêm alias đằng sau thì lỗi trắng trang, ví dụ: domain/news/topic/ha-noi/

    Thông tin bổ sung Hiện tại em thử trên ver 4.5.01 thì báo lỗi.

    opened by nctoon2308 1
Releases(4.5.03)
  • 4.5.03(Dec 24, 2022)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-5-03-710.html

    Checksum nukeviet4.5.03setup.zip: MD5: e873a919e0f7b9dcf52fe665049e4801 SHA1: 981a27a8a6a5e84a8cc3d244b405a9a424f85f5b SHA-256: e19a42708e7d99f8474e32bf37bea36db396f0339a99c3eb81462c11023fac9d

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.5.03setup.zip(11.06 MB)
  • 4.4.06(Dec 22, 2022)

  • 4.5.02(Jun 20, 2022)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-5-02-708.html

    Checksum nukeviet4.5.02setup.zip: MD5: F5E347F3563F844F56708A6750AA2BB8 SHA1: 38216EE1FEBA4A2C26E2720F5A74CD29F95B3AB9 SHA-256: C9DB61736721B92F979F70D5830BA78B4047A28130CE1ABD9300BF0DF168F482

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.5.02setup.zip(10.88 MB)
  • 4.4.05(Jun 20, 2022)

  • 4.5.01(Nov 6, 2021)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-5-01-684.html

    Checksum nukeviet4.5.01setup.zip: MD5: A8806966D217204A7002B5BFDAABA289 SHA1: 17972CC2A573C10C03C4861C665F0712CEB4661C SHA-256: 2C707605DE2B688203D2AF7E5FCA0794E2C3D06041CF9A2973DF0BB3F042C71B

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.5.01setup.zip(10.85 MB)
  • 4.4.04(Nov 6, 2021)

  • 4.5.00(Jul 17, 2021)

  • 4.4.03(Jul 17, 2021)

  • 4.4.02(Jun 22, 2020)

  • 4.4.01(Jun 13, 2020)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-4-00-621.html

    Checksum nukeviet4.4.01setup.zip: MD5: F300208FCC9BA5B57FD5DA71D98A10F0 SHA1: 3E218594119AA3389466C1D5639538C63BD9CDC3 SHA-256: 4CBE603F8AE4609C2692E02B9F1CB49B0B8E2A91006802B94E01EB489C6812B1

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.4.01setup.zip(11.41 MB)
  • 4.4.00(Apr 29, 2020)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-4-00-621.html

    Checksum nukeviet4.4.00setup.zip: MD5: A17EC2ADE37818FBC467000B4A1F5BFD SHA1: 849B0F24192FC54267D9A16B9CD054DA763D0964 SHA-256: 298C7E4A5F5ADEBB98EC2B7FDB29B37DADCC98D298E3ABE0D4236A381112F910

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.4.00setup.zip(11.41 MB)
  • 4.3.08(Dec 28, 2019)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-08-613.html

    Checksum nukeviet4.3.08setup.zip: MD5: 8915D4E64DFD533B1664556BB2D21795 SHA1: D1D16926B68508601A128ABE071A9C34FAF04CD9 SHA-256: 52AB464A471D55E9E808B038909B4BDC891B4EFAEFFAE649225800C8850308A6

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.08setup.zip(11.33 MB)
  • 4.3.07(Sep 21, 2019)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-07-599.html

    Checksum nukeviet4.3.07setup.zip: MD5: D38BFB70A3AE21AEFA6DB5310F532BEB SHA1: F4E7AD337A801D0F2A7BB177432C27CB8A8E7CD0 SHA-256: C44A41D53FBD90C137E8A99E1DE9EC444A8B6351CC11EE0C5348DC03C90E5377

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.07setup.zip(11.36 MB)
  • 4.3.06(Jun 21, 2019)

    Xem thông báo phát hành: https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-06-597.html

    Checksum nukeviet4.3.06setup.zip: MD5: 2989D621C13009D1B4825083A69050C4 SHA1: B9A803C40E31F4D8C3F7A215F184F51D926E3914 SHA-256: 1C9BA0CC9AA4C86F51BB44A186B756681864572376D3C8FACA62772B3FEE60F5

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.06setup.zip(11.33 MB)
  • 4.3.05(Mar 15, 2019)

    Xem thông báo phát hành: https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-05-593.html

    Checksum nukeviet4.3.05setup.zip: MD5: 2A6CEEFCC66577D32BBEC6B4478B297C SHA1: 847FC450C213302C4C77D2FE6E9470A2F63E1595 SHA-256: 16FF487678B79BA46D88ECD1879CC504A7BC72A734F321B8B79D3E492601B1A8

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.05setup.zip(11.32 MB)
  • 4.3.04(Nov 16, 2018)

    Xem thông báo phát hành: https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-04-584.html

    Checksum nukeviet4.3.04setup.zip: MD5: 5F9D03AE0C4F0C0E05B71CEA5B7F0BA3 SHA1: 8582EB5720242B74F6A870FFBCFFF455B4283609 SHA-256: DF3B8967F10AB89F7108F89EDFDC349292C28E7339531D92514554690CB9B851

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.04setup.zip(11.31 MB)
  • 4.3.03(Aug 6, 2018)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-03-578.html

    Checksum nukeviet4.3.03setup.zip: MD5: 65C7A9E3C2E9661A239FC3450138B6AF SHA1: 0EB61DAA7256D48B6E6E41843465BDB14BAA73E4 SHA-256: FE2786E503E3657C8E572CFF1834BC429ECDB7C055DFB234218F06726A09D6B0

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.03setup.zip(11.90 MB)
  • 4.3.02(May 2, 2018)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-02-562.html

    Checksum nukeviet4.3.02setup.zip: MD5: 575503A1C771E9C6F1D20B7D72D44255 SHA1: DD773CBBC2BD3758F12EE1250B0A2F6D3F092A29 SHA-256: A7969CDE70A3D5E1E88930B81ED9C3DD0349092109939866DD835387168BDDA6

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.02setup.zip(11.90 MB)
  • 4.3.01(Feb 1, 2018)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-01-554.html

    Checksum nukeviet4.3.01setup.zip: MD5: FA9622CB43BE651EF01409666CF0CA45 SHA1: 5763CA15689E16A45F28BDF9058A559DA7E4150C SHA-256: 348EE013D2BD284C9D4E8AC4107A2AC18F61FB291E9984D097C9FBFF93194186

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.01setup.zip(11.83 MB)
  • 4.3.00(Nov 9, 2017)

    Xem thông báo phát hành https://nukeviet.vn/vi/news/Tin-tuc/thong-bao-phat-hanh-nukeviet-4-3-00-538.html

    Checksum nukeviet4.3.00setup.zip: MD5: A18A0B9055AA3C39350C96F16735E27A SHA1: 3E8FC5890CFA1CE422B40DDECDF991BA62BE2DBB SHA-256: 592DE7E38026F6BC12CD46B2368D38CCB77420009B0EA445D434039B3A73FE9F

    Source code(tar.gz)
    Source code(zip)
    nukeviet4.3.00setup.zip(11.83 MB)
  • 4.2.01(Aug 5, 2017)

  • 4.2.00(Jul 22, 2017)

  • 4.0.29(May 19, 2016)

  • 4.0.28(Apr 28, 2016)

  • 4.0.27(Feb 24, 2016)

  • 4.0.22(Aug 6, 2015)

    Phiên bản thử nghiệm diện rộng thứ 6 của NukeViet 4.0. Nếu không có lỗi nghiêm trọng, đây sẽ là phiên bản thử nghiệm cuối cùng.

    • Phiên bản này tiếp tục là bản thử nghiệm bổ sung thứ 3. Dự kiến là bản thử nghiệm cuối cùng của NukeViet.
    • Mời các bạn tiếp tục thử nghiệm và phát hiện lỗi. Đặc biệt là các lỗi đã được báo cáo là đã được fix: https://github.com/nukeviet/nukeviet/issues?q=is%3Aissue+is%3Aclosed
    • Lưu ý kiểm tra và đối chiếu với các lỗi đã được báo cáo nhưng chưa được sửa trong phiên bản này để tránh báo lỗi mới trùng với lỗi đã được báo: https://github.com/nukeviet/nukeviet/issues
    • Xem bài giới thiệu về NukeViet 4.0 Open beta 8 và Trao đổi trên diễn đàn tại đây: http://forum.nukeviet.vn/viewtopic.php?f=3&t=36140
    Source code(tar.gz)
    Source code(zip)
Owner
NukeViet
NukeViet Open Source
NukeViet
Fully CMS - Multi Language Content Management System - Laravel

Fully CMS Laravel 5.1 Content Managment System not stable! Features Laravel 5.1 Bootstrap Authentication Sentinel Ckeditor Bootstrap Code Prettify Fil

Sefa Karagöz 479 Dec 22, 2022
ExpressionEngine is a mature, flexible, secure, free open-source content management system.

ExpressionEngine is a flexible, feature-rich, free open-source content management platform that empowers hundreds of thousands of individuals and organizations around the world to easily manage their web site.

ExpressionEngine 366 Mar 29, 2022
Baicloud CMS is a lightweight content management system (CMS) based on PHP and MySQL and running on Linux, windows and other platforms

BaiCloud-cms About BaiCloud-cms is a powerful open source CMS that allows you to create professional websites and scalable web applications. Visit the

null 5 Aug 15, 2022
A Concrete CMS package to add interfaces to translate multilingual content. You can translate content manually, or use cloud API.

Concrete CMS add-on: Macareux Content Translator Concrete CMS has powerful features to manage multilingual content by its default. You can add languag

株式会社マカルーデジタル 3 Nov 28, 2022
ExpressionEngine is a flexible, feature-rich, free open-source content management platform that empowers hundreds of thousands of individuals and organizations around the world to easily manage their web site.

ExpressionEngine CMS ExpressionEngine is a mature, flexible, secure, free open-source content management system. It is beloved by designers for giving

ExpressionEngine 412 Dec 27, 2022
Sulu is an open-source content management platform based on the Symfony PHP framework

This repository is no longer the recommended way to start a sulu project. Please have a look at the documentation to find out how to start a new proje

Sulu CMS 623 Nov 12, 2022
BaiCloud-cms is a powerful open source CMS that allows you to create professional websites and scalable web applications. Visit the project website for more information.

BaiCloud-cms About BaiCloud-cms is a powerful open source CMS that allows you to create professional websites and scalable web applications. Visit the

null 5 Aug 15, 2022
Fork is an easy to use open source CMS using Symfony Components.

Installation Make sure you have composer installed. Run composer create-project forkcms/forkcms . in your document root. Browse to your website Follow

Fork CMS 1.1k Dec 8, 2022
PHPVibe Open source video CMS / Video Sharing CMS / Youtube Api v3 / Video Embeds

PHPVibe Video CMS Free Video Sharing CMS The modern choice of design inspired by Youtube and a social videos sharing module that may just cut it for y

MediaVibe 71 Dec 18, 2022
Amila Laravel CMS - Free, open-source Simple Bootstrap Laravel CMS

Simple Bootstrap Laravel CMS. Support Laravel 8.x Can integrate into any existing Laravel project. Only add few database tables with prefixes, not affect your existing database tables. Support Laravel 7.x & Laravel 6.x & Laravel 5.x & MySql & PostgreSql - Amila Laravel CMS

Alex Zeng 96 Sep 6, 2022
Soosyze CMS is a minimalist content management system in PHP, without database to create and manage your website easily

Soosyze CMS is a content management system without a database. It's easy to create and manage you

Soosyze 41 Jan 6, 2023
e107 Bootstrap CMS (Content Management System) v2 with PHP, MySQL, HTML5, jQuery and Twitter Bootstrap

e107 is a free and open-source content management system (CMS) which allows you to manage and publish your content online with ease. Developers can save time in building websites and powerful online applications. Users can avoid programming completely! Blogs, websites, intranets – e107 does it all.

e107 Content Management System 298 Dec 17, 2022
phpReel is a free, MIT open-source subscription-based video streaming service that lets you create your platform for distributing video content in the form of movies or series.

phpReel is a free, MIT open-source subscription-based video streaming service that lets you create your platform for distributing video content in the form of movies or series.

null 118 Dec 14, 2022
The repository for Coaster CMS (coastercms.org), a full featured, Laravel based Content Management System

The repository for Coaster CMS (coastercms.org) a Laravel based Content Management System with advanced features and Physical Web integration. Table o

Coaster CMS 392 Dec 23, 2022
A small CMS for SaaS - A tiny content management system

Fervoare CMS A tiny content management system Project created in 2012 and ported to GitHub in 2021. Getting started Assuming you have installed a LAMP

Mark Jivko 3 Oct 1, 2022
Simple Content Management System (CMS) Blog Using Codeigniter with Hierarchical Model View Controller (HMVC) Architectural

Simple Content Management System (CMS) Blog Using Codeigniter with Hierarchical Model View Controller (HMVC) Architectural This is my source code trai

Simon Montaño 1 Oct 28, 2021
Coaster CMS a full featured, Laravel based Content Management System

The repository for Coaster CMS (coastercms.org) a Laravel based Content Management System with advanced features and Physical Web integration. Table o

Coaster CMS 392 Dec 23, 2022
Charcoal Content Management System (CMS) Module

Charcoal CMS The CMS Charcoal Module (Content Management System). Provides basic objects to build a website. Notably, Section (or page), News, Event a

Locomotive 44 Sep 12, 2022
Twill is an open source CMS toolkit for Laravel that helps developers rapidly create a custom admin console that is intuitive, powerful and flexible. /// Chat with us and others on Spectrum: https://spectrum.chat/twill

About Twill Twill is an open source Laravel package that helps developers rapidly create a custom CMS that is beautiful, powerful, and flexible. By st

AREA 17 3k Jan 6, 2023