Community moderators have prevented the ability to post new answers.
You can use Confluence Command Line Interface action in a job scheduler or automation script to do something like:
confluence --action exportSpace --space "myspacekey" --file "myspacekey.pdf" --exportType "PDF"
Or you can use the runFromSql action to use a query of the Confluence database to select all or a subset of spaces or use run to run a file of specific space exports.
Example for all global (non personal) spaces:
confluence --action runFromSql --sql "select 'exportSpace' as action, spaceKey as space, 'output/' || spaceKey || '.pdf' as file, 'PDF' as \"exportType\" from spaces where spacetype = 'global'" --host "localhost" --driver "postgresql" --database "confluence-3.4.0"
Without knowing the specifics, I'd suggest you write...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.