Search found 65 matches

by mrperl
Mar 09, 2011 8:10 am
Forum: XFileSharing Pro
Topic: french translation corrected
Replies: 4
Views: 2895

Re: french translation corrected

I still see a lot of English words towards the end of the file, especially the new phrases introduced in 1.6, 1.7 and 1.8.
by mrperl
Mar 08, 2011 2:18 am
Forum: XFileSharing Pro
Topic: french translation corrected
Replies: 4
Views: 2895

Re: french translation corrected

Thanks!

Is this French translation neutral, or more Quebecois?
by mrperl
Mar 08, 2011 2:02 am
Forum: XFileSharing Pro
Topic: invalid user error
Replies: 6
Views: 3635

Re: invalid user error

1) Does the email or userid contain special characters? (The .htaccess file doesn't like that, for example.)

2) Do you have a screenshot?

mrperl
by mrperl
Mar 08, 2011 1:58 am
Forum: XFileSharing Pro
Topic: error with login
Replies: 2
Views: 1951

Re: error with login

The 2 most common cookie problems are:

1) Make sure the time and timezone on your servers and testing PCs is correct.
2) Make sure the domain used for your cookie matches your website.

Usually if your web site is www.example.com, your cookie should have a domain of .example.com

mrperl
by mrperl
Feb 21, 2011 9:24 am
Forum: XFileSharing Pro
Topic: XFS Pro mod_perl request poll
Replies: 16
Views: 5872

Re: XFS Pro mod_perl request poll

I have been doing more testing using Modperl::PerlRun on the fileserver. If you use multiple fs configurations on the same machine in different directories, then PerlRun confuses $c in XFSConfig.pm, so api.cgi fails on fs_key (ie. wrong configuration parameters are loaded even if in different subdir...
by mrperl
Oct 30, 2010 8:55 am
Forum: XFileSharing Pro
Topic: Distribution of files on servers
Replies: 10
Views: 2952

Re: Distribution of files on servers

My understanding is that different upload sessions load balance across different fs servers, but not files within a session.

One solution is to set max files of 3 per upload session.

Another is to make your site busier so that it will all average out. :)
by mrperl
Oct 30, 2010 8:50 am
Forum: XFileSharing Pro
Topic: Error: cant open file at Modules/XUpload.pm line 91.
Replies: 3
Views: 2530

Re: Error: cant open file at Modules/XUpload.pm line 91.

> open(FILE,$file->{file_tmp})||die"cant open file";

That error means you can't write to a temp file, so check your temp_dir setting.
by mrperl
Oct 19, 2010 1:22 pm
Forum: XFileSharing Pro
Topic: bug in 1.8: htdocs_tmp_dir not used in upload.cgi for status
Replies: 2
Views: 2197

Re: bug in 1.8: htdocs_tmp_dir not used in upload.cgi for st

ok, to fix this problem, comment out this line in index.cgi:

# $server->{srv_htdocs_url}=~s/\/(\w+)$//;

mrperl
by mrperl
Oct 19, 2010 1:17 pm
Forum: XFileSharing Pro
Topic: Skipped countdown
Replies: 3
Views: 7605

Re: Skipped countdown

If the countdown (progress bar) never works, then it's a problem with your configuration where tmp/status.html cannot be found. If the countdown works sometimes, but not other times, then try: - disabling ModPerl::Registry (if enabled) - restarting your web server - restarting your web browser. (Whe...
by mrperl
Oct 10, 2010 12:42 pm
Forum: XFileSharing Pro
Topic: XFS Pro mod_perl request poll
Replies: 16
Views: 5872

Re: XFS Pro mod_perl request poll

The author modified the XFS Pro 1.8 files in FS-dist, so it is ModPerl-compatible. It is working for me on a fileserver (fs) with this config: Alias /app /var/www/perl <Directory /var/www/perl> SetHandler perl-script PerlResponseHandler ModPerl::Registry PerlOptions +ParseHeaders Options +ExecCGI </...
by mrperl
Sep 25, 2010 11:47 pm
Forum: XFileSharing Pro
Topic: bug in 1.8: htdocs_tmp_dir not used in upload.cgi for status
Replies: 2
Views: 2197

bug in 1.8: htdocs_tmp_dir not used in upload.cgi for status

status.html is not found by upload.cgi if you change the html directory. htdocs_tmp_dir is not used to help find status.html. For example: XFSConfig.pm: htdocs_tmp_dir => '/var/www/html/xfs/tmp', When a user does an upload, a message is briefly displayed saying that status.html is not found. Moving ...
by mrperl
Sep 25, 2010 10:43 am
Forum: XFileSharing Pro
Topic: 1.9 Suggestions
Replies: 26
Views: 8793

Re: 1.9 Suggestions - captcha refresh

There needs to be a link or button to force display of a new captcha in case the user can't read the one currently displayed. The filled in fields need to be remembered as the captcha is changed.
by mrperl
Sep 25, 2010 10:11 am
Forum: XFileSharing Pro
Topic: 1.9 Suggestions
Replies: 26
Views: 8793

Re: 1.9 Suggestions - force username to be email

It would be nice if there was an option to just use a registered user's email as the username. Most online products that I've worked on eventually dump username and just use email as the username since it's unique and the user can almost always remember it. (For now I have hacked up register.html, m...
by mrperl
Sep 25, 2010 8:37 am
Forum: XFileSharing Pro
Topic: bug in 1.8: cookie lang correct, language property wrong
Replies: 0
Views: 1681

bug in 1.8: cookie lang correct, language property wrong

Hi Alex.

Sometimes I see the wrong language in $ses->{language}, but the cookie lang is correct:

'cookies' => {
'lang' => 'indonesia',
[...]
},
[...]
'language' => 'english',

mrperl.
by mrperl
Sep 23, 2010 11:17 am
Forum: XFileSharing Pro
Topic: Do i fit the requirements with Perl LWP module
Replies: 4
Views: 3083

Re: Do i fit the requirements with Perl LWP module?

If yum is available on your system (CentOS and RedHat linux users), then you can easily install LWP with the following command:

yum install perl-libwww-perl