Author |
Topic |
endomorph
Junior Member
United Kingdom
128 Posts |
Posted - 28 August 2005 : 03:44:35
|
Cracked it myself.
Find the line -
"where " & strTablePrefix & "album_users.member_id IS NULL" and change it to -
"where " & strTablePrefix & "album_users.member_id IS NULL ORDER BY " & strTablePrefix & "members.M_NAME ASC"
Job done !< |
Need help with your Snitz ? Most Snitz & ASP custom coding undertaken. Email for info | Search Engine Optimisation |
|
|
ikalota
Starting Member
37 Posts |
Posted - 20 September 2005 : 16:17:06
|
I am interested in the Photo Gallery code written by pixuk. Does any one know where can I get it..? You can see it in action at
http://www.virginflyer.com/forum
Thanks.< |
|
|
Riccardo
New Member
86 Posts |
Posted - 24 September 2005 : 11:36:26
|
Has someone finded that code? it's really interesting..< |
http://www.peperonciniamoci.it peppers and peppers and peppers (working on an international version)
|
|
|
dan21
Starting Member
1 Posts |
Posted - 29 September 2005 : 08:45:40
|
Hi, I have just started using Snitz and this mod. However i can't upload files, keep getting permission denied. I think it is because I need to use a component to upload files on my server. Has anyone got this working using aspUpload?< |
|
|
Classicmotorcycling
Development Team Leader
Australia
2084 Posts |
Posted - 29 September 2005 : 17:30:47
|
Dan21,
There is no need for special components to use this mod. All you need to make sure is that the folder has write and modify permissions as per the readme. That is why you have the permission denied.
< |
Cheers, David Greening |
|
|
ikalota
Starting Member
37 Posts |
|
Gizmo3
Junior Member
130 Posts |
Posted - 15 February 2006 : 20:53:12
|
I have installed the photo album. I am geting this error when trying upload files.
Error! File did not upload to system please contact the system administrator
I see some other people have had the same problem. But I realy don't understand what the problem is and how to fix it.
I am running win 2003 server with ms access 2000 and running my own server.
Home ay can help
< |
This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums! |
|
|
Gizmo3
Junior Member
130 Posts |
Posted - 15 February 2006 : 23:42:17
|
Found the problem< |
This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums! |
|
|
Swn-Y-Mor
New Member
90 Posts |
Posted - 18 February 2006 : 19:37:10
|
Gizmo3, I too have the same error message. How did you get it sorted?< |
|
|
Gizmo3
Junior Member
130 Posts |
Posted - 18 February 2006 : 21:40:35
|
Go to the folder that you are uploading to and check to make sure the user has permission to upload. That was my problem< |
This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums! |
|
|
Gizmo3
Junior Member
130 Posts |
Posted - 21 February 2006 : 09:52:08
|
Here's the link to the photoalbum
http://www.indycarz.com/forum/photo_album.asp
We where having a big problem with people stealing images, so I made a Anti-Hot linking filter. This means the Image works if viewed from the site, but shows as stolen image anywhere else.
Example: http://www.indycarz.com/imgsrv.asp?img=v10killer/nice_conversion.jpg
Note that this image will work, if it has be viewd from our site. This has helped with bandwidth ALOT
The above was posted AWD ENVY. I was wondering if anyone can tell where I can get this mod or one that will do the same to the photo of the pics if they are stolling< |
This account was hacked into by Image, a very honest guy as you all can see! Stealing people's passwords is his pasttime. Beware of this, before you register at his forums! |
|
|
matt526
Starting Member
USA
8 Posts |
Posted - 04 May 2006 : 15:42:32
|
quote: Originally posted by Gizmo3
I have installed the photo album. I am geting this error when trying upload files.
Error! File did not upload to system please contact the system administrator
I see some other people have had the same problem. But I realy don't understand what the problem is and how to fix it.
I am running win 2003 server with ms access 2000 and running my own server.
Home ay can help
I also have this problem, I have made sure twice that my host has set write permissions on the folder and I still get this message I have also changed line 8 in clsUpload.asp from "true" to "false" this did not work. I have played around with this all day and still nothing. can anyone please help!
Thank You!
-Matt S.< |
http://faithzone.com/Forum/default.asp |
|
|
ian9001
Starting Member
22 Posts |
Posted - 14 May 2006 : 12:36:56
|
Just been informed by hosting company that neither the Persits ASPJpeg nor ASPExec are installed and that they will not allow them to be installed.
I've installed the "latest album" add on Mod but without thumbnails it will put my bandwidth through the roof! Any suggestions as to how I can create thumbnails? Is it possible to install nconvert.exe myself?
I'm on a Windows 2003 server.
Thanks
Ian< |
|
|
Eric Coleman
Starting Member
USA
10 Posts |
Posted - 21 May 2006 : 17:42:26
|
There is a security risk with this mod at version 1.82. Earlier versions are affected as well.
In the file "ToFileSystem.asp" it does not validate the user but relies on form and querystring values to determine the user. Someone can easily pass the forum ID number of another member to upload files to that person's photo album. If the category id is wrong or does not belong to the victim then the file is uploaded to the victim's directory and is hidden and can not be deleted.
To fix the problem the member's credentials need to be validated. Here is a simple fix.
At the begginning of the file just below the Include lines put the following, which is, unfortunately, hacked together for simplicity.
You may need to do some further editing depending on modifcations you've made or the version you're using.
set my_Conn = Server.CreateObject("ADODB.Connection")
my_Conn.Open strConnString
strDBNTUserName = Request.Cookies(strUniqueID & "User")("Name")
if trim(strDBNTUserName) <> "" and trim(Request.Cookies(strUniqueID & "User")("Pword")) <> "" then
chkCookie = 1
mLev = cLng(chkUser(strDBNTUserName, Request.Cookies(strUniqueID & "User")("Pword"),-1))
chkCookie = 0
else
MemberID = 0
mLev = 0
end if
if mLev < 2 then
response.Write "You must be registered to use this page."
response.End
end if
Further down the page remove the section where the variable "intMemberID" is retrieved from the querystring. Use the following instead.
intMemberID = cLng(MemberID)
There may be other files that don't validate correctly, I haven't checked them all.
< |
|
|
weeweeslap
Senior Member
USA
1077 Posts |
Posted - 29 September 2006 : 17:57:08
|
any chance anyone has foun d a way to speed up the loading of admin_album or any of the admin pages for this mod? I am on sql server and they take forever!< |
coaster crazy |
|
|
Topic |
|