Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

Frustrated with upgrade to Odoo 18.0

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
configuration
5 Risposte
7747 Visualizzazioni
Avatar
Ranjan Bhattacharya

(fyi - no question in this post)

As a professional photographer running a thriving business, I rely heavily on my website to connect with clients and showcase my work. When Odoo 18 was released, I was hopeful that the upgrade would enhance my website’s functionality. Unfortunately, the reality has been nothing short of a nightmare.

The moment I upgraded to Odoo 18, everything went haywire. My website’s entire format was changed, undoing months of hard work on design and user experience. Worse, I cannot even update my phone number in the header, leaving potential clients unable to reach me.

The frustration doesn’t end there. All the images on my website had to be reuploaded, along with their details, because the upgrade altered the format. As if this wasn’t enough, I discovered that no photographic themes are available in the portal, making it impossible for me to present my work professionally.

Adding salt to the wound, my Google Ads campaigns are running, and I’m losing money every single day because my website isn’t functioning properly. For a small business owner like me, this isn’t just an inconvenience—it’s a financial crisis.

I am at a loss for what to do next. The lack of support and the disruption caused by the Odoo 18 upgrade have left me feeling helpless. My message to Odoo: please listen to your users and provide practical solutions to these problems. Businesses like mine depend on your platform, and any failure on your part has far-reaching consequences.

For anyone considering an upgrade to Odoo 18, proceed with extreme caution. I hope my experience serves as a warning and sparks a conversation about the importance of seamless transitions and user support in the software industry.

4
Avatar
Abbandona
Prince Bhanwra

Odoo upgrades are pain always. I have no customizations and still it takes me days before odoo is working properly after upgrade. It should be a smooth experience, just like other saas companies.

Peter Gilgen

i had a similar Problem.
in my case it was because the entire "old" filestore directory was nested inside the new filestore directory. Instead of placing the database’s storage files directly under

…/filestore/Test_live2/
they ended up under
…/filestore/Test_live2/filestore/


i fixed the Problem with:

# Change into the directory containing the misplaced 'filestore' folder

cd /var/lib/docker/volumes/odoo18_odoo-data/_data/filestore/Test_live2

# Enable globbing to include hidden files in patterns

shopt -s dotglob

# Merge all files and directories from 'filestore' into the current directory

rsync -a filestore/ .

# Disable dotglob to restore default behavior

shopt -u dotglob

# Remove the now-empty 'filestore' directory

rm -rf filestore



Avatar
Alice Van Mierlo
Risposta migliore

I totally feel the frustration... Today there was an upgrade announced in Odoo, and since then we are unable to use Odoo POS for restaurant... Our 3 coffee shops have to run without a POS! The answer from Odoo... yes it seems that there is a bug, raise a ticket! No timeline for the bug to be fixed! Completely unbelievable! 

1
Avatar
Abbandona
Avatar
Christian
Risposta migliore

Odoo support is somewhat frustrating. Today I had to keep my store without POS, I handle more than 140 products and the day has been chaos. Still no solution and my day at the store is not over yet x.x


0
Avatar
Abbandona
Avatar
Eva@Ybo Services
Risposta migliore

Odoo online does force you to first upgrade in test and also is very clear that you have to test it before doing the upgrade on production system. So, you cannot blame Odoo, if you do not follow the clear rules given.

Sometimes, the changes between versions are technically more than what can be seen on the screen.

Hope it is a good lesson for all to have test scripts ready and to not hesitate to contact Odoo, if the test upgrade does not work.

Good Luck!

Eva P.

0
Avatar
Abbandona
Avatar
Ranjan Bhattacharya
Autore Risposta migliore

Hi,

Thank you for your response and for sharing your experience.

Unfortunately, I did not test the upgrade in a staging environment beforehand. I directly upgraded my live database, which I now realize might have been a mistake. The missing images seem to be related to a new file store format introduced during the upgrade. I had to reupload all the images manually, which took a lot of time and effort.

My implementation is cloud-based, not on-premise. I relied on the assumption that the upgrade process would be seamless, similar to previous experiences with Odoo. However, this time, it has caused significant issues:

  1. My website has become very slow.
  2. Customizations and configurations were disrupted.
  3. The new themes available are not suitable for photography businesses like mine.

If you have any tips or steps that helped you ensure a smooth upgrade, I’d greatly appreciate your guidance. Specifically, I’d like to know how you prepared your database and ensured the file store transition was seamless.

Thank you again for your support!

Best regards,

Ranjan Bhattacharya

[Website: www.ranjanb.com]

[Phone: 9830019666]

0
Avatar
Abbandona
Niyas Raphy (Walnut Software Solutions)

The procedure normally is to test and ensure everything okay in staging and then if staging is okay, apply it in live

in your case what does odoo support says regarding this issues ?

Avatar
Niyas Raphy (Walnut Software Solutions)
Risposta migliore

Hi,
Couple of days before we smoothly migrated our website: https://www.walnutit.com to 18.0 from 17.0 and things went fine without any issues.

Didn't you got chance to check the upgrade as a test first or directly upgraded the live db ? The missing images due to missing file store ? It was an on premise implementation or ?

Thanks

0
Avatar
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
Installation Odoo 17 Community
configuration
Avatar
Avatar
1
nov 25
1045
Multiple trading names under one legal entity
configuration
Avatar
0
nov 25
45
Odoo Lot Location Missing After Partial Stock Move
configuration
Avatar
0
nov 25
3
Adding a new security group to an existing module
configuration
Avatar
0
nov 25
6
Multiple trading names from single legal entity
configuration
Avatar
Avatar
1
nov 25
247
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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