Newbie
|
| Posted: 04/18/2004, 7:08 PM |
|
I've just figure out that my webhost does not allow 'Scripting.FileSystemObject' in asp scripting. Is there other command that I can use to replace 'Scripting.FileSystemObject'?
It seems that 'Scripting.FileSystemObject' is in Cache.asp in line 124.
|
|
|
 |
sewells
Posts: 13
|
| Posted: 06/13/2004, 9:06 PM |
|
honestly, I'd change ISPs. I honestly like webhost4life and know a at least two other CCS folks using them as well as myself.
http://www.WebHost4Life.com/default.asp?refid=sewells
|
 |
 |
marcwolf
Posts: 361
|
| Posted: 06/24/2004, 11:40 PM |
|
<Wavies>
Have 3 of our customers on Webhost4Life - all running ASP apps written in CSS
They are a pretty good and responsive crowd.
They also have most of the tools from persits already loaded available for use..
They also support MySQL V4, MSSQL, and Access
Take Care All
Dave
_________________
' Coding Coding Coding
Keep Those Keyboards Coding.
Raw Code!!!!!!!
|
 |
 |
Ron
Posts: 26
|
| Posted: 07/08/2004, 6:10 PM |
|
I just called Webhost4life and they said they do not support FSO for security reason. Do your CCS published there still work?
|
 |
 |
JerryVT
|
| Posted: 07/10/2004, 12:51 PM |
|
They support FSO: http://www.webecs.com/components.asp http://www.discountasp.net/features.aspx#components
Note that both hosts offer PDF components - very handy for business applications.
|
|
|
 |
Oper_a
|
| Posted: 07/11/2004, 12:06 PM |
|
Actually that a good question!
We have a small mini ASP forum starting with stuff like this.
i will check and old one Simple but effection Test Encription
i will post here, but i will add to the forum too.
|
|
|
 |
Oper_a
|
| Posted: 07/11/2004, 12:54 PM |
|
This will Encrypt your password (but you cant decode back)
(so you just validate if will generate same encryption and ready.
<%
FUNCTION EncryptPassword(User,Password)
Dim CRC1,CRC2,YourNUMBER,X
'Change this number For Hard Reverse and Personal Encryption (use Number beetween 2 and 999 to avoid Overflow on ASP)
YourNumber=123
CRC1=0
CRC2=0
for x=1 to len(User)
CRC1=CRC1 + ( asc(mid(user,x,1)) * (X+2) )
Next
for x=1 to len(Password)
CRC2=CRC2 + ( asc(mid(Password,x,1)) * (x+3) )
Next
EncriptPassword=ucase(user & "-" & ( CRC1 + CRC2 + YourNumber ) & hex ( CRC2 + CRC1 * YourNumber))
End Function
%>
|
|
|
 |
dataobjx
Posts: 181
|
| Posted: 07/14/2004, 7:48 AM |
|
It just occured to me that when I initially posted my code to my new ISP, it didn't fire either.
After calling them and talking to the techy there, I ask one final question.
From the IIS Administration Consol, have them right click on your website and select properties.
A screen appears with a number of tabs on it. One of the tabs is called "Documents"
Have them click on that.
The order in which the pages (based on file extension) is located here.
Yours may be....
default.htm
default.html
default.asp
default.aspx
When it should be...
default.asp
default.aspx
default.htm
default.html
Just a thought as I noticed that others on the same ISP were not having an issue.
Frankly, I'd call them and mention nothing about the FSO - as it seems to freak them out.
Just ask them to read back the order in which the pages are firing...
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |