Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 05-27-2004 01:15:17

kaz
Member
Registered: 05-19-2004
Posts: 583

"data Submitted Is Invalid" ?

can anyone advise why all attempts to checkout result in this "processing error":





i get this for all forms of payment

the form fields seem to be populated properly


the store is at 


Kevin Zaleski -  -

Offline

 

#2 05-27-2004 08:34:21

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

Yes, I already had this problem the first times myself.

Assuming your hosting service is using Win2k Server. Ask your ISP to put your folders permission to : POWER_USERS (which is equivalent to : 755 in linux) on your folders and also ask for permissions : Read/Write on your files (which is equivalent to : 644 - which is high enough in Win2k Server).

Althought, if your hosting service is using Linux, simply right-click on the cgi-bin folder in your FTP and set the CHMOD to : 755. Then, right-click on data and media folder, CHMOD it to : 777.

That will fix the problem.


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#3 05-27-2004 15:27:34

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

i'm on linux and did the chmods you suggested but it did not fix the problem

drwxr-xr-x   6 545      1180         1024 Aug  4  2003 cgi-bin
drwxrwxrwx   9 545      1180         1024 Jun 17  2003 data
drwxrwxrwx   6 545      1180         1024 Jul 29  2003 media

any other suggetions?
perhaps some specific files/dirs under these?
(nothing under these directories is writeable by others,
so adding write permission to these directories would only affect new files)


Kevin Zaleski -  -

Offline

 

#4 05-27-2004 16:01:05

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

Here's what I have.

There's three rows from the FTP for the cgi-bin folder.

First row - Owner :

Read
Write
Execute/List

Second row - Group :

Read
Execute/List

Third row - Public:

Read
Execute/List

--------------------------

For the data folder :

Checked them all.

--------------------------

On media folder :

Checked them all too.


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#5 05-27-2004 17:44:14

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

hi nav,

that sounds like exactly what i have:

drwxr-xr-x 6 545 1180 1024 Aug 4 2003 cgi-bin
drwxrwxrwx 9 545 1180 1024 Jun 17 2003 data
drwxrwxrwx 6 545 1180 1024 Jul 29 2003 media

still not working, though


Kevin Zaleski -  -

Offline

 

#6 05-27-2004 20:28:29

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

can someone please post or email me a list of permission settings?

if you are on a linux system:
cd $HOME
find ccp51 -print | xargs ls -l > out.txt


out.txt will contain a directory listing showing permissions for all files/dirs


it sounds like some permission problem, i will look through them manaully if i have to as i am stuck worthless now

thanks in advance


Kevin Zaleski -  -

Offline

 

#7 05-27-2004 22:00:17

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

And there you go :



Click on the boxes until you see 755 then do the same on your FTP for your folders. As for your files, check on the boxes until you see 777.


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#8 05-27-2004 23:25:07

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

i'm fluent with chmod, i'm trying to figure out what files or dirs need to be changed if this problem persists with the main directories set correctly:

drwxr-xr-x   6 545      1180         1024 Aug  4  2003 cgi-bin
drwxrwxrwx   9 545      1180         1024 Jun 17  2003 data
drwxrwxrwx   6 545      1180         1024 Jul 29  2003 media

clearly CCP does not require that ALL files under these directories be 777
(and in fact things will break if i change scripts to be 777),
so i was hoping to get a list of files and associated permissions
since i have not gotten any other clues about what to look for

so far all i have is a suggestion that some permission is wrong somewhere,
and since the main directory permissions appear to be set correctly
that suggests that perhaps some file under one of these directories may have incorrct permissions (kinda hard to believe since this was a tar-based install)


Kevin Zaleski -  -

Offline

 

#9 05-28-2004 06:51:04

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

Cgi-bin : -rwxr-xr-x
Data : -rwxrwxrwx
Media : -rwxrwxrwx


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#10 05-28-2004 09:33:27

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

i have the permissions set correctly for the main directories, i was asking someone to give me a list of the underlying files/dirs and their associated persmissions

the easiest way to do this is

cd $HOME; find ccp51 -print | xargs ls -l > out.txt


out.txt will contain a directory listing showing permissions for all files/dirs in subdirectories


Kevin Zaleski -  -

Offline

 

#11 05-28-2004 09:44:10

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

Good to know. Althought, I cannot find any documentations from Google that explains this type of procedure. If you have a link, for future reference, that would help a lot. smile


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#12 05-28-2004 09:50:58

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

telnet yourdomain.com

then login and run the command above


Kevin Zaleski -  -

Offline

 

#13 05-28-2004 09:52:19

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

I should of asked for IIS or Apache configurations since I'm not very familiar with Telnet. Do you have alternative functions this forum could use for future reference ?


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#14 05-28-2004 09:56:10

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

some ftp programs support recursive listings (such as  or you could install various scripts that display such info
(see  for a great collection of mostly free tools)

telnet is the simplest way:

start - run - telnet yourdomain.com

run the command and you can fetch the output file via ftp


Kevin Zaleski -  -

Offline

 

#15 05-28-2004 10:04:10

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

Thanks for the URL but these are just theories. Do you have any technical ones ?

Also, there's an error on your first URL link. wink


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#16 05-28-2004 10:30:10

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

not sure what you mean by "theories" - shell commands such as mentioned have been in use a ling time

the forum included the parenthesis in the URL,
the correct url is
although i might have been thinking of another of their products


Kevin Zaleski -  -

Offline

 

#17 05-28-2004 10:33:20

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

What I means is there are no technical commands showed about how to set the folders permissions from IIS or Apache Servers (also for Linux ISPs - that could be useful).

Do you know any URLs that explains - in technical ways on how to set each types of permissions ?


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#18 05-28-2004 11:42:30

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

you use chmod

you posted a link above with a chmod tutorial,
from telnet you just enter the numeric equivalent

chmod 755 cgi-bin
chmod 777 data 


Kevin Zaleski -  -

Offline

 

#19 05-28-2004 11:49:05

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

The link I posted above is for the customers side. Do you know any technical URLs for ' server side ' ?


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#20 05-28-2004 11:55:28

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

there's no difference for 'server side' for the linux/apache systems i use

i have no experience with iis


Kevin Zaleski -  -

Offline

 

#21 05-28-2004 11:56:50

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?

Ok, thanks.


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

#22 05-28-2004 19:19:25

kaz
Member
Registered: 05-19-2004
Posts: 583

Re: "data Submitted Is Invalid" ?

THE SOLUTION - After enhaustive investigation the problem turned out to have been introduced by my FTP program.  I had fetched the CCP tables from my website so that I could do some global replacements quickly on my PC, then copied them back to the site.  Well WS_FTP interpreted .CSV files as data files that should be uploaded in BINARY mode (not ASCII mode). 

Apparently that had an adverse effect on some table(s) needed to checkout (but not on any of the other tables!?)

Refetching the tables and reuploading them in ASCII mode fixed the problem.


Kevin Zaleski -  -

Offline

 

#23 05-29-2004 08:38:21

nav
Banned
Registered: 04-07-2004
Posts: 666

Re: "data Submitted Is Invalid" ?



Well WS_FTP interpreted .CSV files as data files that should be uploaded in BINARY mode (not ASCII mode).

If you use LeapFTP, no binary or ASCII has to be configured. All file structrures are automaticly detected.


______________________________________________

THIS USER HAS BEEN BANNED FROM THIS FORUM.

If this post contains any language related to
code samples, advice, etc., please read this
entire thread before making a decision to use
this post as a basis for any change to your
software installation.
______________________________________________

Offline

 

Board footer