0

I am making a reseller hosting, for my own clients, but now I want to store my user-backups on a different host. So use a cronjob to do this.

But now my cronjob asks me for a Remote path to store the backups on.

I just want them in the /backups folder, but I guess I can't just fill in /backups in the remote path?

So how can I see what the full pathname is?

My idea was to create a .php file, and echo the remote path with some code.

I can't find the code on the internet so I asked it here.

Thijs Kempers
  • 459
  • 6
  • 17

1 Answers1

1

If you need a path of a other machine with PHP, then thats do the trick:

echo __FILE__; // Full Filename
// OR
echo basedir( __FILE__ ); // Only the Path
A. Blub
  • 792
  • 1
  • 5
  • 10