|
|
Subject: Re: uploading images side-effect - msg#00849
List: web.interchange.users
Mike:
How do I go about getting the new version of this file?
Paul
Mike Heins wrote:
> Quoting Mike Heins (mikeh@xxxxxxxxxxxx):
> > Quoting Marcel Montes (marcel@xxxxxxxxxxxxx):
> > > After uploading images in the admin interface of the construct demo when
> > > it returns
> > > to the item edit page, several fields are erased (Long description, and
> > > size for instance)
> > >
> > > (RedHat 7, MySQL)
> >
> > Cannot duplicate.
>
> Oops, yes I can when "new file name" option is selected. Found and
> fixed in CVS in the file lib/UI/vars/UI_STD_DBEDIT_TABLE.
>
> Elaboration for the source-curious: the $override variable was defined
> "my" outside the loop, so every field after the image one was
> trashed. Moving "my $override" inside the for(@cols) loop
> fixes it.
>
> --
> Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056
> phone +1.513.523.7621 fax 7501 <heins@xxxxxxxxxx>
>
> Clothes make the man. Naked people have little or no influence on
> society. -- Mark Twain
>
> _______________________________________________
> Interchange-users mailing list
> Interchange-users@xxxxxxxxxxxxxxxx
> http://www.minivend.com/mailman/listinfo/interchange-users
Was this page helpful?
Thread at a glance:
Previous Message by Date:
click to view message preview
Re: uploading images side-effect
Quoting Mike Heins (mikeh@xxxxxxxxxxxx):
> Quoting Marcel Montes (marcel@xxxxxxxxxxxxx):
> > After uploading images in the admin interface of the construct demo when
> > it returns
> > to the item edit page, several fields are erased (Long description, and
> > size for instance)
> >
> > (RedHat 7, MySQL)
>
> Cannot duplicate.
Oops, yes I can when "new file name" option is selected. Found and
fixed in CVS in the file lib/UI/vars/UI_STD_DBEDIT_TABLE.
Elaboration for the source-curious: the $override variable was defined
"my" outside the loop, so every field after the image one was
trashed. Moving "my $override" inside the for(@cols) loop
fixes it.
--
Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056
phone +1.513.523.7621 fax 7501 <heins@xxxxxxxxxx>
Clothes make the man. Naked people have little or no influence on
society. -- Mark Twain
Next Message by Date:
click to view message preview
Re: Bad counter magic?
On 28 Nov, Mike Heins wrote:
> Quoting jojo@xxxxxxxxxxxxxx (jojo@xxxxxxxxxxxxxx):
>> Hi list,
>>
>> I stress my apache and IC Server with
>>
>> #ifdef TRAFFIC =~ /high/i
>> Message High traffic settings.
>> HouseKeeping 60
>> MaxServers 10
>> PIDcheck 300
>> #endif
>>
>
> Jojo,
>
> If this is what you are running, on BSD, then you are going
> to have all sorts of problems. You should run:
>
> HouseKeeping 1
> MaxServers 0
>
> to have any chance at all of the thing working.
Yes! I know!
BTW:
I´ve follow your suggestions from your e-mail
---------snip---------
Message-ID: <20001015230806.A5812@xxxxxxxxxxxxxxxxx>
---------snip---------
and I´ve make a report (Bugzilla).
> The problem you are having with the ip_addr_counter is because
> your ab program is creating so many new sessions that Interchange
> is not allowing access. That is one of the robot defenses. If you
> want to run the stress test, you are going to have to set
> RobotLimit to 0 to disable it.
Thanks! I will try it.
Joachim
BTW2:
I´m able to use my little dirty solution with MV Version 3.xx, Version
4.xx, HouseKeeping > 10 and MaxServers > 0.
--
Hans-Joachim Leidinger
buch online jojo@xxxxxxxxxxxxxx
Munscheidstr. 14 FAX: +49 209 1671441
45886 Gelsenkirchen FAX: 0209 1671441
Previous Message by Thread:
click to view message preview
Re: uploading images side-effect
Quoting Mike Heins (mikeh@xxxxxxxxxxxx):
> Quoting Marcel Montes (marcel@xxxxxxxxxxxxx):
> > After uploading images in the admin interface of the construct demo when
> > it returns
> > to the item edit page, several fields are erased (Long description, and
> > size for instance)
> >
> > (RedHat 7, MySQL)
>
> Cannot duplicate.
Oops, yes I can when "new file name" option is selected. Found and
fixed in CVS in the file lib/UI/vars/UI_STD_DBEDIT_TABLE.
Elaboration for the source-curious: the $override variable was defined
"my" outside the loop, so every field after the image one was
trashed. Moving "my $override" inside the for(@cols) loop
fixes it.
--
Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056
phone +1.513.523.7621 fax 7501 <heins@xxxxxxxxxx>
Clothes make the man. Naked people have little or no influence on
society. -- Mark Twain
Next Message by Thread:
click to view message preview
Re: uploading images side-effect
from http://developer.akopia.com/cgi-bin/ic/download.html
------------------------------snip------------------------------
Or access the Interchange CVS repository:
export CVSROOT=:pserver:anon_cvs@xxxxxxxxxxxxxx:/anon_cvs/repository
cvs login
Password: anon_cvs
cvs checkout -P interchange
csh or tcsh users should use the following line in place of the
first line above:
setenv CVSROOT :pserver:anon_cvs@xxxxxxxxxxxxxx:/anon_cvs/repository
This will create an interchange/ directory in your current directory.
Later, from inside the interchange/ directory you
can type:
cvs update -dP .
And your sources will be updated to the latest available.
Note that if you frequently use CVS, it may be helpful to create
a .cvsrc file in your home directory with
commonly-used options such as these:
cvs -z3
diff -u
update -Pd
checkout -P
This directs CVS to (1) automatically compress all data communicated
between you and our server (saving
bandwidth); (2) show context-sensitive diffs; (3) prune empty directories
and create any new directories added to
the repository since your checkout; and (4) prune empty directories
during your checkouts. (Thanks to Stefan
Hornburg for the suggestion.)
------------------------------snip------------------------------
Paul R Stearns wrote:
Mike:
How do I go about getting the new version of this file?
Paul
Mike Heins wrote:
> Quoting Mike Heins (mikeh@xxxxxxxxxxxx):
> > Quoting Marcel Montes (marcel@xxxxxxxxxxxxx):
> > > After uploading images in the admin interface of the construct
demo when
> > > it returns
> > > to the item edit page, several fields are erased (Long description,
and
> > > size for instance)
> > >
> > > (RedHat 7, MySQL)
> >
> > Cannot duplicate.
>
> Oops, yes I can when "new file name" option is selected. Found
and
> fixed in CVS in the file lib/UI/vars/UI_STD_DBEDIT_TABLE.
>
> Elaboration for the source-curious: the $override variable was defined
> "my" outside the loop, so every field after the image one was
> trashed. Moving "my $override" inside the for(@cols) loop
> fixes it.
>
> --
> Akopia, Inc., 131 Willow Lane, Floor 2, Oxford, OH 45056
> phone +1.513.523.7621 fax 7501 <heins@xxxxxxxxxx>
>
> Clothes make the man. Naked people have little or no influence
on
> society. -- Mark Twain
>
> _______________________________________________
> Interchange-users mailing list
> Interchange-users@xxxxxxxxxxxxxxxx
> http://www.minivend.com/mailman/listinfo/interchange-users
_______________________________________________
Interchange-users mailing list
Interchange-users@xxxxxxxxxxxxxxxx
http://www.minivend.com/mailman/listinfo/interchange-users
--
Marcel Montes [marcel(at)multimake(dot)com] - Programmer
"If our brain were so simple that we could understand it,
we would be so stupid that we couldn't do so"
-------------------------- EOF ----------------------------
|
|