Laravel-Backpack/BackupManager

error con dump

danteCortes opened this issue · 2 comments

Creo que a tu repositorio le falta mucha documentación.

Que hago cuando me sale este error?

Backup failed because: The dump process failed with exitcode 1 : General error : "'" no se reconoce como un comando interno o externo,
programa o archivo por lotes ejecutable.

ya agregué la clave dump en la conección:
'pgsql' => [
'driver' => 'pgsql',
'host' => env('DB_HOST', '127.0.0.1'),
'port' => env('DB_PORT', '5432'),
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
'charset' => 'utf8',
'prefix' => '',
'prefix_indexes' => true,
'schema' => 'public',
'sslmode' => 'prefer',
'dump' => [
'dump_binary_path' => '/C:/Program Files/PostgreSQL/10/bin/',
'use_single_transaction',
'timeout' => 60 * 5,
]
],
espero puedas ayudarme.

Hello there! Thanks for opening your first issue on this repo!
Just a heads-up: Here at Backpack we use Github Issues only for tracking bugs. Talk about new features is also acceptable. This helps a lot in keeping our focus on improving Backpack. If you issue is not a bug/feature, please help us out by closing the issue yourself and posting in the appropriate medium (see below). If you're not sure where it fits, it's ok, a community member will probably reply to help you with that.
Backpack communication mediums:

  • Bug Reports, Feature Requests - Github Issues (here);
  • Quick help (How do I do X) - Gitter Chatroom;
  • Long questions (I have done X and Y and it won't do Z wtf) - Stackoverflow, using the backpack-for-laravel tag;

Please keep in mind Backpack offers no official / paid support. Whatever help you receive here, on Gitter, Slack or Stackoverflow is thanks to our awesome awesome community members, who give up some of their time to help their peers. If you want to join our community, just start pitching in. We take pride in being a welcoming bunch.
Thank you!
-- Justin Case The Backpack Robot

Hi @danteCortes ,

Haven't used this to backup PosgreSQL myself. I'm afraid I can't help you.

But this is just an interface for https://github.com/spatie/laravel-backup . Check that the command-line backup works, like instructed in their documentation. If it does, so will the interface.

Cheers!