http://www.mono-project.com/ASP.NET

Status
Not open for further replies.

~Forum Nut~

New Member
Messages
8
Reaction score
0
Points
0
You should be able to run ASP if it can work with this:
http://www.mono-project.com/ASP.NET

Cory, (or whoever else can answer this.) :D

This looks pretty good to me but its got so many different versions for different OS's that I don't know which one to download.

Also is this to be installed via FTP?

Is this a program to run behind the .asp program or is this a tool to convert the program over to a different format?

I'm not exactly new to coding but I have never worked with this before.

Can you give me some insight to get me started?

Perhaps we should start here:

http://www.mono-project.com/Downloads

Look how many download options for different operating systems there are.

I don't even know what your running here. LOL

Can this be installed via FTP? Or does it have to be installed from your end?

Man I hate being lost :dunno:

FN
 
Last edited:

Corey

I Break Things
Staff member
Messages
34,551
Reaction score
204
Points
63
Hi,

We have it installed on our servers. Do you know if your scripts will work with it?

-Corey
 

~Forum Nut~

New Member
Messages
8
Reaction score
0
Points
0
I have no Idea if its compatible with it. I can find no reference to it anywhere on the net.

Although I did find some potentially disturbing security reports on it...

Its a very old no longer supported program. I saved it on my machine about 3 years ago with the intention of eventually using it. Now I have found a use for it so I thought I would try it out.

I saw another site running it and was impressed with it enough to save it.

Its similar to "hot or not" script in function only it seams to work much better.

Its a image gallery with rating as well as viewing.

Here are a couple sites running this script:

http://www.tattoowatch.com/default.asp
http://www.nellis.biz/Vote/default.asp

They are not very good sites but it was all I could find on short notice.
If its done right it is really nice.

I can send you a copy of the script if it will help. :D

- Requirements
- Windows Servers with MS Internet Information Server 4.0 or later
- ASP 2.0 or later
- Internet Explorer 4.0+ or Netscape 6.01+

FN
 
Last edited:

lambada

New Member
Messages
2,444
Reaction score
0
Points
0
Well if the script you found has reports of being old and vulnerable to security threats then I suggest you look for another script.

Also why not just try installing the script according to the instruction manual.
 

~Forum Nut~

New Member
Messages
8
Reaction score
0
Points
0
I was just about to give up on that actually when I found out the security problem lies in the Access 2000 database.

There does seam to be a way to convert it over to an SQL database though. I'm looking for the instructions for that now.

Looks like you may be the right guy to talk to about that though lambada :D

It seams that for some really really dumb reason they have the database store the password where you can just open up the database via URL to see it plain as day...

IMO that should have been a no brainer not to do something that stupid...
But yet, there it is..

The install file you speak of is very vague and not very clear. So I looked through the web to find better instructions and I found some of the old instructions for version 1.0 that seam to be better. Although they don't give much on the sql conversion., and refer you to a dead site for instructions.
1. Database:

- DUpics uses Access 2000 for its database. If you plan to upgrade DUpics database to SQL Server, post your question in the DUpics Forum on DUresources Web site. Other users will help you with this.

- When uploading DUpics to your Web Hosting, be sure to place DUpics.mdb database file and pictures folder into a read-able and write-able directory assigned by you or your Web Host Server Admin.

So I continue to look for the cure to this issue.

Although even with the Access database it doesn't run here I'm not sure why that is.
MS Internet Information Server 4.0 or later issues possibly? Will that run here?
Any ideas?

When I open the login page I get a giant error that looks like it may be a database connection error of some sort. But since I have never used Access I have no Idea what it means.

But here it is just in case you want to see it.
<%@LANGUAGE="VBSCRIPT"%> <% Response.Buffer = True %> <% ' *** Validate request to log in to this site. MM_LoginAction = Request.ServerVariables("URL") If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Request.QueryString MM_valUsername=CStr(Request.Form("id")) If MM_valUsername <> "" Then MM_fldUserAuthorization="" MM_redirectLoginSuccess="approve.asp" MM_redirectLoginFailed="default.asp" MM_flag="ADODB.Recordset" set MM_rsUser = Server.CreateObject(MM_flag) MM_rsUser.ActiveConnection = MM_connDUpics_STRING MM_rsUser.Source = "SELECT U_ID, U_PASSWORD" If MM_fldUserAuthorization <> "" Then MM_rsUser.Source = MM_rsUser.Source & "," & MM_fldUserAuthorization MM_rsUser.Source = MM_rsUser.Source & " FROM USERS WHERE U_ID='" & Replace(MM_valUsername,"'","''") &"' AND U_PASSWORD='" & Replace(Request.Form("password"),"'","''") & "'" MM_rsUser.CursorType = 0 MM_rsUser.CursorLocation = 2 MM_rsUser.LockType = 3 MM_rsUser.Open If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then ' username and password match - this is a valid user Session("MM_Username") = MM_valUsername If (MM_fldUserAuthorization <> "") Then Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value) Else Session("MM_UserAuthorization") = "" End If if CStr(Request.QueryString("accessdenied")) <> "" And true Then MM_redirectLoginSuccess = Request.QueryString("accessdenied") End If MM_rsUser.Close Response.Redirect(MM_redirectLoginSuccess) End If MM_rsUser.Close Response.Redirect(MM_redirectLoginFailed) End If %>

FN
 
Last edited:

lambada

New Member
Messages
2,444
Reaction score
0
Points
0
Seems like the server isn't recognising that it's ASP code. Seeing as Corey said that the mono-project should be installed it's probably a problem our end.
 

~Forum Nut~

New Member
Messages
8
Reaction score
0
Points
0
Ok thanks I just wait for Cory to get it sorted out . No big deal for now. I have a lot of projects ahead of that right now anyway. Plenty of time. :D

I hope he reads this though so he knows whats going on. ;)

FN
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
Closed; No user response, if you would like more help on this, or we didn't solve it all the way please reopen it.
 
Status
Not open for further replies.
Top