The eAuction Support Forums
https://www.everyscript.de/cgi-bin/yabb/YaBB.pl
eAuction 1.6.1.x >> Start Up and more >> Some questions after install on WinXP
https://www.everyscript.de/cgi-bin/yabb/YaBB.pl?num=1113253040

Message started by cougar694u on 04/11/05 at 22:57:20

Title: Some questions after install on WinXP
Post by cougar694u on 04/11/05 at 22:57:20

Im very impressed with this script.  I'm going to be using it in a car forum.

Anyway, I'm currently testing this on a WinXP system with IIS 5.  It's up and running, however, I get this when I go to the eauction.pl:
http://www.2kmotors.com/luke/pics/eauctions/eAuction161.jpg

I didn't change anything in the config.pl, just left it alone.  Any suggestions?

IIS's directory is c:\inetpub\wwwroot\, and I created eauction161 in there (c:\inetpub\wwwroot\eauction161) as you can see in the browser's address field.

As you can also see, I tried searching before posting ;D

What else can I try?

Title: Re: Some questions after install on WinXP
Post by Ronnie on 04/11/05 at 23:31:09

Hi - I'm new at this too.  I suggest that you go back and check how you configured your file.  Make sure that there are no added characters.  The concantination indicates that there seems to be a default item that is receiving text from the configuration file.  I think the problem might be with the forward slash.  -  Good Luck...Ronnie

Title: Re: Some questions after install on WinXP
Post by Dieter Werner on 04/12/05 at 00:17:16

The 'prereg' error will disappear as soon as you register a user.
The other errors - hmmm - no idea yet ...
but I developed the script under WinXP.

Title: Re: Some questions after install on WinXP
Post by cougar694u on 04/12/05 at 14:16:26


Ronnie wrote:
I suggest that you go back and check how you configured your file.  Make sure that there are no added characters.

cougar694u wrote:
I didn't change anything in the config.pl, just left it alone.



Dieter Werner wrote:
The 'prereg' error will disappear as soon as you register a user.
The other errors - hmmm - no idea yet ...
but I developed the script under WinXP.


Adding a user took care of the errors.  I'm no longer seeing any errors on the first page.  Thanks!

Title: Re: Some questions after install on WinXP
Post by cougar694u on 04/12/05 at 14:52:58

I've created 3 test users and added some listings.  Everything appears great, but I cannot upload pictures.  I click the browse button and locate a file, but it doesn't show up in the preview, nor does it show up when it's posted.

Title: Re: Some questions after install on WinXP
Post by Dieter Werner on 04/12/05 at 15:04:01


cougar694u wrote:
I've created 3 test users and added some listings.  Everything appears great, but I cannot upload pictures.  I click the browse button and locate a file, but it doesn't show up in the preview, nor does it show up when it's posted.


Make sure that the settings of permissions are right.
Windows doesn't chmod directories or files.


Title: Re: Some questions after install on WinXP
Post by cougar694u on 04/13/05 at 20:01:04


Dieter Werner wrote:
Make sure that the settings of permissions are right.
Windows doesn't chmod directories or files.


The files are on the server, but for some reason they don't come up.  I deleted them (for what reason, I dunno) and now I get an error when I go to any of the pages that says:
Error
Server-Overload


**EDIT**
eAuction created the following folder:
C:\Inetpub\wwwroot\eAuction161\eauction.pleAuction

In there is a folder 'img_upload', which is where the pictures are actually located.

When I look at the properties of the picture that's missing, it's looking here:
http://localhost/eAuction/img_upload, which should be: http://localhost/eAuction161/eauction.pleAuction/img_upload

Title: Re: Some questions after install on WinXP
Post by Dieter Werner on 04/13/05 at 23:03:34

This path/directory is okey
http://localhost/eAuction/img_upload

Please, post this part of your eConfig161.pl


Code:
#-#############################################
# Config-Section-01
#-#############################################

# The name of your servers cgi-bin directory
   $config{'cgi_dir'}            = 'cgi-bin'; # Default for most servers
   
# The cgi-bin subdirectory where your eAuction.pl will be stored
   $config{'auction_dir'}      = 'eAuction161';
   
# The Path to a 'NON-WEBACCESSABLE' directory of your system
# Maybe you have to chmode it if you use your own setting

  $config{'get_path'}              = 1; # Set this from 1 to 0 if you want to use your own setting  
  $config{'basepath'}              = '/Your/Basepath';

# You need to assign either a mail program or
# a mail host so e-mails can be sent out.
# Configure your MAIL PROGRAM

  $config{'get_mail'}            = 1; # Set this from 1 to 0 if you want to use your own setting  
  $config{'mailprog'}            = '/Your/Path/To/sendmail'; # no additional options please
 
# or Configure your MAIL HOST (SMTP)
   #$config{'mailhost'}      = 'http://YourSMTP-Host';    
   
# Set this from 0 to 1 if the script is running with a real Web-Server
   $config{'web_server'}      = 0;
   
#-#############################################

Title: Re: Some questions after install on WinXP
Post by cougar694u on 04/14/05 at 16:48:24

Here it is:


Code:
#-#############################################
# Config-Section-01
#-#############################################

# The name of your servers cgi-bin directory
   $config{'cgi_dir'}            = 'cgi-bin'; # Default for most servers
   
# The cgi-bin subdirectory where your eAuction.pl will be stored
   $config{'auction_dir'}      = 'eAuction161';
   
# The Path to a 'NON-WEBACCESSABLE' directory of your system
# Maybe you have to chmode it if you use your own setting

  $config{'get_path'}              = 1; # Set this from 1 to 0 if you want to use your own setting  
  $config{'basepath'}              = '/Your/Basepath';

# You need to assign either a mail program or
# a mail host so e-mails can be sent out.
# Configure your MAIL PROGRAM

  $config{'get_mail'}            = 1; # Set this from 1 to 0 if you want to use your own setting  
  $config{'mailprog'}            = '/Your/Path/To/sendmail'; # no additional options please
 
# or Configure your MAIL HOST (SMTP)
   #$config{'mailhost'}      = 'http://YourSMTP-Host';    
   
# Set this from 0 to 1 if the script is running with a real Web-Server
   $config{'web_server'}      = 0;
   
#-#############################################

Title: Re: Some questions after install on WinXP
Post by Dieter Werner on 04/14/05 at 17:53:00

Config looks good.

Save this code as dump.pl, run it and let me know the output.

Code:
#!/usr/bin/perl
use CGI qw/:standard/;
       
print header,
 start_html,
 h2("Parameter:"), CGI::as_string(),
 h2("Environment:"),
 (map { p("$_ => $ENV{$_}") } sort keys %ENV),
 end_html;

Title: Re: Some questions after install on WinXP
Post by cougar694u on 04/14/05 at 18:00:35

Parameter:

Environment:

ALLUSERSPROFILE => C:\Documents and Settings\All Users

COMMONPROGRAMFILES => C:\Program Files\Common Files

COMPUTERNAME => 1538076XP

COMSPEC => C:\WINDOWS\system32\cmd.exe

CONTENT_LENGTH => 0

FP_NO_HOST_CHECK => NO

GATEWAY_INTERFACE => CGI/1.1

HTTPS => off

HTTP_ACCEPT => text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5

HTTP_ACCEPT_CHARSET => ISO-8859-1,utf-8;q=0.7,*;q=0.7

HTTP_ACCEPT_ENCODING => gzip,deflate

HTTP_ACCEPT_LANGUAGE => en-us,en;q=0.5

HTTP_CONNECTION => keep-alive

HTTP_HOST => localhost

HTTP_KEEP_ALIVE => 300

HTTP_USER_AGENT => Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.6) Gecko/20050317 Firefox/1.0.2

INSTANCE_ID => 1

LOCAL_ADDR => 127.0.0.1

NUMBER_OF_PROCESSORS => 1

OS => Windows_NT

PATH => C:\Program Files\Apache Group\Apache2\bin\;C:\Perl\bin\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared

PATHEXT => .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH

PATH_INFO => /eauction161/dump.pl

PATH_TRANSLATED => c:\inetpub\wwwroot\eauction161\dump.pl

PROCESSOR_ARCHITECTURE => x86

PROCESSOR_IDENTIFIER => x86 Family 6 Model 8 Stepping 3, GenuineIntel

PROCESSOR_LEVEL => 6

PROCESSOR_REVISION => 0803

PROGRAMFILES => C:\Program Files

REMOTE_ADDR => 127.0.0.1

REMOTE_HOST => 127.0.0.1

REQUEST_METHOD => GET

SCRIPT_NAME => /eauction161/dump.pl

SERVER_NAME => localhost

SERVER_PORT => 80

SERVER_PORT_SECURE => 0

SERVER_PROTOCOL => HTTP/1.1

SERVER_SOFTWARE => Microsoft-IIS/5.1

SYSTEMDRIVE => C:

SYSTEMROOT => C:\WINDOWS

TEMP => C:\WINDOWS\TEMP

TMP => C:\WINDOWS\TEMP

USERPROFILE => C:\Documents and Settings\LocalService

WINDIR => C:\WINDOWS

Title: Re: Some questions after install on WinXP
Post by Dieter Werner on 04/14/05 at 18:26:52

Either you stored dump.pl into the wrong directory or your server setup is not OK.

PATH_INFO => /cgi-bin/eAuction161/dump.pl
SCRIPT_NAME => /cgi-bin/eAuction161/dump.pl

would be right.

Title: Re: Some questions after install on WinXP
Post by cougar694u on 04/14/05 at 18:36:39

I just created the folder 'eAuction161' in the wwwroot directory.  There is no cgi-bin directory in the windows setup.  I copied the dump.pl into the eAuction161 directory, the path is http://localhost/eAuction161/dump.pl or http://localhost/eAuction161/eauction.pl

Title: Re: Some questions after install on WinXP
Post by Dieter Werner on 04/15/05 at 09:44:15

If there is no cgi-bin directory then you have to create it.

#-#############################################
# Config-Section-01
#-#############################################

# The name of your servers cgi-bin directory
   $config{'cgi_dir'}  = 'cgi-bin'; # Default for most servers

Title: Re: Some questions after install on WinXP
Post by cougar694u on 04/15/05 at 14:56:15

Okay, I created the cgi-bin directory, and created eAuction161 under it and put the files in there.  Everything appears to be working, except that camera.gif was not include, no big deal, I copied eGays...

The eAuction Support Forums » Powered by YaBB 2.2!
YaBB © 2000-2007. All Rights Reserved.