| View previous topic :: View next topic |
| Author |
Message |
jaketp
Joined: 25 Nov 2008 Posts: 7
|
Posted: Nov 25, 2008 3:39 am Post subject: Pre Sales Question |
|
|
I have a few pre-sales question
1. FTP Upload : If the file on to be uploaded via FTP is on 'localhost' is it copied or is a symbolic link is created ?
I presume the file is copied
2. If the file is copied can it be changed so that a symbolic link is created to the file ?
Regards
Jake |
|
| Back to top |
|
 |
jaketp
Joined: 25 Nov 2008 Posts: 7
|
Posted: Dec 02, 2008 7:01 am Post subject: |
|
|
| Knock Knock .... anyone there ???? |
|
| Back to top |
|
 |
admin Site Admin

Joined: 22 Mar 2006 Posts: 1493
|
Posted: Dec 02, 2008 7:39 am Post subject: |
|
|
1. No, there's no ftp upload possiblity right now. However, if you have some files already on server, you can copy them to UploadImport folder and then import into xfs.
2. Not sure what you mean. Copied? What symlink? What for? |
|
| Back to top |
|
 |
jaketp
Joined: 25 Nov 2008 Posts: 7
|
Posted: Dec 03, 2008 6:25 am Post subject: |
|
|
No probs for the second question .... UploadImport will do fine
Anyway I have few other questions
1. Do u supply the API to integrate a payment processor other than paypal, AlertPay or 2Checkout like CCBill, Epoch or VXSBill ?
XFS Pro has Multiple Server Support
2. Is it possible to assign separate serving URL for Anonymous, Registered and Premium ? Even though all the URLs are served from the same server.
e.g.
Free User URL
| Code: | ww1.example.com/00000/testfile.zip.html
|
Registered User URL
| Code: | ww2.example.com/00000/testfile.zip.html
|
Premium User URL
| Code: | ww3.example.com/00000/testfile.zip.html
|
Jake |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2133 Location: UFO Lab
|
Posted: Dec 03, 2008 8:28 am Post subject: |
|
|
1. No, don't have anything like this.
2. Hmm...possible since ww*.example.com will follow to one same site, but not sure why you need this. |
|
| Back to top |
|
 |
jaketp
Joined: 25 Nov 2008 Posts: 7
|
Posted: Dec 03, 2008 1:51 pm Post subject: |
|
|
I think adding new billers can be worked out some how....
Well each of the ww*.example.com domains will be mapped to a different network card on the server. Each of the network card will be throttled to different speeds. XFS Pro supports throttling but it will hog a lot of ram once the number of users increase |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2133 Location: UFO Lab
|
Posted: Dec 03, 2008 2:47 pm Post subject: |
|
|
Try this hack: in index.cgi find
| Code: | | $_->{download_link}=~s/\&/&/gs; |
and add below:
| Code: | if($ses->getUser && $ses->getUser->{premium})
{
$_->{download_link}=~s/www/ww3/;
}
elsif($ses->getUser)
{
$_->{download_link}=~s/www/ww2/;
}
else
{
$_->{download_link}=~s/www/ww1/;
} |
If your site url is 'www.site.com' then this code will replace www with ww* accordingly.
Haven't tested it but should work. |
|
| Back to top |
|
 |
jaketp
Joined: 25 Nov 2008 Posts: 7
|
Posted: Dec 05, 2008 12:13 am Post subject: |
|
|
| Thx for the help guys ..... just bought the script. |
|
| Back to top |
|
 |
jaketp
Joined: 25 Nov 2008 Posts: 7
|
Posted: Dec 08, 2008 1:01 am Post subject: Not Received the script as yet |
|
|
| i places an order on the 4th of december with the order id 1228378645-4206-186480. Please can you look into it ? |
|
| Back to top |
|
 |
jaketp
Joined: 25 Nov 2008 Posts: 7
|
Posted: Dec 08, 2008 8:56 am Post subject: |
|
|
Thx Pilgrim received the script  |
|
| Back to top |
|
 |
|