Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

change website to public view

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
3 Replies
2019 Tampilan
Avatar
Nur Qistina Alin binti abd Halim

how to change my login website to public view because if they want to acesss they need to login so how to change into public view?

0
Avatar
Buang
Avatar
Piyush H
Jawaban Terbai

To make your Odoo website publicly viewable:

  1. Publish the Website: In the Website app, ensure your website is published.
  2. Publish Pages: Go to Website > Site > Pages and publish the specific pages you want public.
  3. Check User Rights: Ensure public users have the necessary access rights (usually default).

0
Avatar
Buang
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Jawaban Terbai

Hi,


If your Odoo website is asking users to log in before viewing, you can make it publicly accessible by following these steps:

How to Make Your Odoo Website Public (No Login Required):

    Activate Developer Mode

        Go to Settings > Activate Developer Mode (or add ?debug=1 to the URL).

    Ensure Pages Are Published

        Go to Website > Site > Pages

        Open the page you want to make public.

        Make sure the "Published" toggle is on (green).

    Allow Public Access in Routes (for developers)

        If the page is created via a Python controller, ensure the route uses:

@http.route('/your-page', type='http', auth='public', website=True)


Hope it helps

0
Avatar
Buang
Avatar
DataInteger Consultancy Services LLP
Jawaban Terbai
Step-by-Step: Make Website Public


1. Set the Website Page(s) to Be Public

  1. Go to Website → Site → Pages .
  2. Open the page you want to make public.
  3. Check the “Published” status is Enabled .
  4. Click on the “Edit” button (if needed), then ensure the page is saved and accessible.


2. Adjust Access Rights

Ensure public access is not restricted by backend ACLs (Access Control Lists):

  • Go to Settings → Technical → Security → Access Control Lists
  • Look for models like:
    • website.page
    • website.menu
    • Any custom models you're displaying

➡ Ensure there is a group: Public or Portal with Read access.

If not:

  • Click Create
    • Model: eg website.page
    • Group: Public
    • Permissions: Check Read


3. Check Controllers (Developers Only)

If you have custom code in a controller that requires login , make sure it does not include this:

@http.route('/your_url', auth='user')

Instead, change to:

@http.route('/your_url', auth='public')


4. Remove Redirects to Login

Check whether login redirection is forced:

  1. Go to Website → Configuration → Settings
  2. Make sure there's no force login or authentication module requiring login for homepage.


5. Clear Cache

Once you've made all changes:

  • Go to Website → click on ⚙️ (Settings) → Clear Cache
  • OR restart Odoo service if using custom deployment.


Test:

Open the site in an incognito/private browser window. You should now see the homepage or public pages without being asked to login.

Important Notes:
  • This will not expose internal modules (like Sales, Inventory, etc.) — only pages meant for the website frontend.
  • Be careful exposing sensitive data. Use groups and access rules for any dynamic content shown to the public.


Thanks & Regards,

Email: contact@datainteger.com

-1
Avatar
Buang
Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now