Mike Schaekermann
Mike Schaekermann
I also encounter this problem when I create a backup from my staging database and try to restore it into my local development database. Is there a recommended work-around for...
I tried to use the new connector both with `django-dbbackup=3.1.3` and the `pgrestore` fork. However, I got an error `No module named postgres` even after manually installing it with `pip...
I set the following in `settings.py` with the user, password and host of my default database: ``` DBBACKUP_CONNECTORS = { 'default': { 'USER': 'backupuser', 'PASSWORD': 'backuppassword', 'HOST': 'backuphost', 'CONNECTOR': 'dbbackup.db.postgres.PgDumpBinaryConnector',...
The code in this repository is not a stand-alone web application. It is just a library for the time series viewer that was integrated into a separate web application. Once...
@tzyganu thanks for looking into the pull request so quickly. You're right. The code is not cleanly encapsulated for FLAT + NOT TREE entities only. This is true for both...
@tzyganu thank you! This should be sufficient in order to restrict the mass copy to store view feature to entites of type FLAT + NOT TREE + ENABLED BY STORE....
@tzyganu for the preview feature, I would like to have two different files for ENABLED BY STORE: YES and NO. Is there an inverse option of store, e.g. something like...
Oh nice! Thanks for that hint!
Actually, there already seems to be a method fulfilling that purpose: ``` php /** * check if the entity is not store related * * @access public * @return bool...
I have the same question. I have an existing SSL certificate that I would like to use. My first attempt at this was to manually add a HTTPS 443 listener...