|
Google-ble sitemap of your hosting clients' sites
|
| Author |
Message |
fred
Junior Member

Posts: 10
Joined: Aug 2009
Reputation: 0
|
Google-ble sitemap of your hosting clients' sites
Code:
#!/usr/bin/perl
@dirs = `find /var/www/virtual|grep viralhosts.com\$`;
open(F, ">/var/www/ispcp/gui/sites.html");
print F "<html><body>";
foreach(@dirs) {
chomp;
/.*\/(.*)$/;
print F "<a href='http://$1'>$1</a><br>";
}
print F "</body></html";
close F;
http://yourhost.com/sites.html shows all your client sites.
|
|
| 08-22-2009 09:37 PM |
|
Top44
Member
  
Posts: 269
Joined: Sep 2007
Reputation: 1
|
RE: Google-ble sitemap of your hosting clients' sites
Hi,
did not work, recoded it to :
Code:
#!/usr/bin/perl
@dirs = `ls /var/www/virtual`;
open(F, ">/var/www/ispcp/gui/sites.html");
print F "<html>\n<body>";
foreach(@dirs) {
chomp;
/.*\/(.*)$/;
print F "<a href='http://$_'>$_</a><br>\n";
}
print F "</body>\n</html>";
close F;
greets
Bielefeld! - Die stadt die nicht Existiert
(This post was last modified: 01-25-2010 08:50 PM by Top44.)
|
|
| 01-22-2010 06:35 AM |
|