| Author | 
                
                  Topic   | 
                  | 
              
              
                | 
                 D3mon 
                Senior Member 
                     
                 
                
                United Kingdom 
                1685 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  05:36:31
                        
                        
                      
  | 
                     
                    
                       It would be nice if the admin password textbox in setup.asp had a confirm password box too (and did the necessary checking) I just setup a test 3.4 forums and mistyped the password. Once it had completed I couldn't log in cos the password wasn't what I thought I had typed. | 
                     
                    
                          Snitz 'Speedball' :  Site Integration Mod :  Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" | 
                     
                   
                 | 
              
              
                | 
                 RichardKinser 
                Snitz Forums Admin 
                      
                 
                
                USA 
                16655 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  06:42:21
                        
                      
  | 
                     
                    
                       excellent suggestion.   It has been implemented in the code and will be in v3.4.01 | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 D3mon 
                Senior Member 
                     
                 
                
                United Kingdom 
                1685 Posts  | 
                
                  
                 | 
              
              
                | 
                 snaayk 
                Senior Member 
                     
                 
                
                USA 
                1061 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  09:41:08
                        
                        
                      
  | 
                     
                    
                       LOL, that happend to me too. I typed in some bogus stuff while retesting a setup file and when it was done I had to login and I didn't know what I typed at setup    I had to start from scratch.
  Richard, might be a good idea to also have a place for an Email address. It defaults to something now, but you could make it to accept it from the form, in a worse case scenario, you could click on Forgot My Password. | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 RichardKinser 
                Snitz Forums Admin 
                      
                 
                
                USA 
                16655 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  10:12:07
                        
                      
  | 
                     
                    
                      |  wouldn't work.  E-mail is not on by default, and the e-mail server address would be wrong as well. | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 pweighill 
                Junior Member 
                   
                 
                
                United Kingdom 
                453 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  10:17:49
                        
                      
  | 
                     
                    
                       In the inc_create_forum_*.asp files there is the following line: strDummy = SetConfigValue(1,"STRFORUMURL","http://www.yourdomain.com/forum/")
  Would it be any better to change it to the following: strDummy = SetConfigValue(1,"STRFORUMURL","http://" & Request.ServerVariables("SERVER_NAME") & "/forum/") | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 snaayk 
                Senior Member 
                     
                 
                
                USA 
                1061 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  11:09:53
                        
                        
                      
  | 
                     
                    
                       quote: Originally posted by RichardKinser
  .....e-mail server address would be wrong as well.
 
  
  Oh yeah,   | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 Roland 
                Advanced Member 
                      
                 
                
                Netherlands 
                9335 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  11:47:48
                        
                      
  | 
                     
                    
                       quote: Originally posted by pweighill
  In the inc_create_forum_*.asp files there is the following line: strDummy = SetConfigValue(1,"STRFORUMURL","http://www.yourdomain.com/forum/")
  Would it be any better to change it to the following: strDummy = SetConfigValue(1,"STRFORUMURL","http://" & Request.ServerVariables("SERVER_NAME") & "/forum/")
 
  
  What if I'm using http://www.mydomain.com/ladieda/ for my forums? | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 pweighill 
                Junior Member 
                   
                 
                
                United Kingdom 
                453 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  11:58:08
                        
                      
  | 
                     
                    
                       quote: Originally posted by FrutZle
  [quote]Originally posted by pweighill What if I'm using http://www.mydomain.com/ladieda/ for my forums?
 
  
  Try: strDummy = SetConfigValue(1,"STRFORUMURL","http://" & Request.ServerVariables("SERVER_NAME") & Left(Request.ServerVariables("URL"),instrrev(Request.ServerVariables("URL"),"/")) )
  could also do
  strDummy = SetConfigValue(1,"STRMAILSERVER",Replace(Request.ServerVariables("SERVER_NAME"),"www.","mail.") ) and strDummy = SetConfigValue(1,"STRSENDER",Replace(strAdminName," ",".") & "@" & Replace(Request.ServerVariables("SERVER_NAME"),"www.","mail."))
  and also the email address on line 236 | 
                     
                    
                       Edited by - pweighill on 20 August 2002  12:02:57 | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 RichardKinser 
                Snitz Forums Admin 
                      
                 
                
                USA 
                16655 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  12:43:42
                        
                      
  | 
                     
                    
                      |  why try to auto fill stuff that will most likely be wrong anyway?  There's no reason that an Admin can't change these items once they have the forum setup and they have logged in. | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                | 
                 pweighill 
                Junior Member 
                   
                 
                
                United Kingdom 
                453 Posts  | 
                
                  
                    
                      
                       Posted - 20 August 2002 :  13:48:55
                        
                      
  | 
                     
                    
                       quote: Originally posted by RichardKinser
  why try to auto fill stuff that will most likely be wrong anyway?
 
  
  Might be a bit closer, but doesn't really matter that much.
  You could get the "STRFORUMURL" correct though. | 
                     
                    
                        | 
                     
                   
                 | 
              
              
                |   | 
                
                  Topic   | 
                  |