WordPress database error: [Can't create/write to file '/tmp/#sql-temptable-4db-190f68-25.MAI' (Errcode: 28 "No space left on device")]SELECT p.* FROM wp_mdb_forum_posts AS p LEFT JOIN wp_mdb_forum_posts AS q ON( q.Id = p.ParentId AND p.Id = q.AcceptedAnswerId ) WHERE p.PostTypeId = 2 AND p.ParentId = 58045 GROUP BY p.Id ORDER BY CASE WHEN q.Id IS NOT NULL THEN 1 ELSE 0 END DESC, p.UpvoteCount DESC, p.CreationDate ASC
Topic: Determine current MDB-Pro version
Closed
This topic is closed.
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Closed
- User: Pro
- Premium support: No
- Technology: MDB Angular
- MDB Version: -
- Device: -
- Browser: -
- OS: -
- Provided sample code: No
- Provided link: No
Damian Gemza staff commented 7 years ago
You're able to determine it by checking node_modules/ng-uikit-pro-standard/package.json version file (from 6.1.1 version), or by checking node_modules/ng-mdb-pro/package.json version file (only before 6.1.1 release). If you're using our zip's, unpack it, and check package.json from root directory of your archive. Best Regards, DamianLouw pro commented 7 years ago
Thank you for this. I see I'm on 6.0.2, so how do I upgrade to 6.1.1? Consider that the "ng update @angular/cli" command fails with "404" , and I apply the workaround (Registry returned 404 for GET on https://registry.npmjs.org/ng-mdb-pro ) post by removing mdb-pro from the package list for the failed "ng upgrade" process. ? Regards.Damian Gemza staff commented 7 years ago
Dear Louw, ng update updates only your angular stuff. When you need to update our library, please type npm remove ng-mdb-pro and do npm install git+https://oauth2:your-token@git.mdbootstrap.com/mdb/angular/ng-uikit-pro-standard.git --saveLouw pro commented 7 years ago
Hi Damian, I've managed to upgrade to 6.1.1, but my build now is breaking with "error TS2307: Cannot find module 'ng-mdb-pro/pro'. Where can I find the documentation to upgrade to 6.1.1 of MDB-Pro? This I have to change in my project ? Regards JanDamian Gemza staff commented 7 years ago
Dear Louw, Every ng-mdb-pro should be now ng-uikit-pro-standard. And if you're importing some components / directives / services / interfaces from our library into your component, the import path should look like following: import { something } from 'ng-uikit-pro-standard' instead of import { something } from 'ng-mdb-pro/pro/something'. Please read one more time out 5min-quickstart guide. There's everything that you should know: https://mdbootstrap.com/angular/5min-quickstart/ Best Regards, DamianLouw pro commented 7 years ago
Damian, Thank you for your assistance. Will go through the startup instruction again. Regards