Change Password Issue - Printable Version +- CoreBOSBB (https://discussions.corebos.org) +-- Forum: Support (https://discussions.corebos.org/forumdisplay.php?fid=17) +--- Forum: Administrator Support (https://discussions.corebos.org/forumdisplay.php?fid=8) +--- Thread: Change Password Issue (/showthread.php?tid=589) |
Change Password Issue - rslemer - 03-06-2017 In my installation, when the administrator change a user password this problem occurs When the user first logs in, the screen is duplicated and rollup, down until continually RE: Change Password Issue - joebordes - 03-06-2017 I think we fixed this one some time ago. I just tried on the latest release and it didn't happen. Is this install up to date? RE: Change Password Issue - rslemer - 03-07-2017 Yes, i click on apply all in corebos Updater Is possible check ( in log or another way ) if system was updated correctly ? RE: Change Password Issue - joebordes - 03-07-2017 Updating coreBOS is a two step process. First you update your code, then you apply coreBOS updater. In other words, coreBOS updater DOES NOT update your code, it ONLY updates the database. It is your responsibility to update the code. Preferably using git http://corebos.org/documentation/doku.php?id=en:devel:corebosupdater RE: Change Password Issue - rslemer - 03-07-2017 ah ok ... I'm not familiar with git Is there any cake recipe to upgrade the corebos? RE: Change Password Issue - joebordes - 03-08-2017 You really should use git, it makes everything much easier and you really only need a handful of commands. The general idea is: - you download corebos using git: git clone - you update your code: git pull - you apply database changes: corebos updater Have a look at this vĂdeo: https://plus.google.com/+JoeBordes/posts/aGAgcdNoGMD You could try downloading corebos and overwriting all your files. That should work. Please make copies before doing this !! Let us know how it goes and ask for help as you need. RE: Change Password Issue - rslemer - 03-09-2017 For new installation worked fine. But when first installed with unzip files, is there any way to upgrade thru git ? RE: Change Password Issue - joebordes - 03-09-2017 This is a little more tricky, but not much. The steps are like this: - get a fresh copy of the project: git clone, let say you name this "uptodatecorebos", so it would be: Code: git clone https://github.com/tsolucio/corebos uptodatecorebos - copy from you production install, into this new directory: storage test/logo user_privileges (overwrite any existing files) config.inc.php and any non standard modules that you may have: for example, PDFMaker would require that you copy: modules/PDFMaker Smarty/templates/PDFMaker if you have others, then you copy their directories - now move your production install, let's suppose you have your production install in a directory called "corebos", you would do Code: mv corebos savemycorebos - now move the new directory to where the production one was: Code: mv uptodatecorebos corebos now you should be able to login and load and apply all the coreBOS updater changesets and have everything up to date and under git version control Please make a backup of everything before starting let us know how it goes RE: Change Password Issue - rslemer - 03-11-2017 Worked, only when I removed SQL Reports module. Thanks! RE: Change Password Issue - rslemer - 03-12-2017 (03-06-2017, 09:33 PM)joebordes Wrote: I think we fixed this one some time ago. I just tried on the latest release and it didn't happen. Is this install up to date? Never mind, in corebos 7 is worked fine ... Thanks |