Author |
Topic |
Jag24
Junior Member
182 Posts |
Posted - 25 October 2003 : 21:16:44
|
Philnguyen44 If you read the entire thread you will see that there are many many problems witht his mod...very few have been successful at managing to have it work.....& very little support Wish I could help ! |
|
|
madfiddler
Starting Member
United Kingdom
33 Posts |
Posted - 03 November 2003 : 11:59:14
|
Someone posted about the photo album setup not being correct for Access 97 (the CREATE TABLE statements are wrong).
Here is a mod fix that I've just made http://www.shnforum.com/forum/topic.asp?TOPIC_ID=2818
The same fix is also required for the File Lister mod. |
|
|
ED195KW
Starting Member
28 Posts |
Posted - 09 November 2003 : 00:39:39
|
Does anyone have a good icon to use for the photo album? Like a camera avatar or something? |
|
|
dibley
New Member
United Kingdom
91 Posts |
Posted - 09 November 2003 : 09:13:40
|
quote: Originally posted by madfiddler
Someone posted about the photo album setup not being correct for Access 97 (the CREATE TABLE statements are wrong).
Here is a mod fix that I've just made http://www.shnforum.com/forum/topic.asp?TOPIC_ID=2818
The same fix is also required for the File Lister mod.
Hmmm... I may have to check that out.... After not getting anywhere with this mod for weeks, I installed shnForum on space at Parcom.net.(for only a small monthly cost!) Once the correct folder permissions where set, I have not had any more photo album problems.... I do still have a forum on 1asp with half an album installed, so may try again, now I have seen that!
Super! |
.:dib:.
www.nightsouls.co.uk - Uk clubber & music forum. www.animatronica.co.uk - Creators of themepark animatronics. |
|
|
wii
Free ASP Hosts Moderator
Denmark
2632 Posts |
Posted - 10 November 2003 : 09:28:34
|
Really? Mine works perfectly !!!!
quote: Originally posted by Jag24
Philnguyen44 If you read the entire thread you will see that there are many many problems witht his mod...very few have been successful at managing to have it work.....& very little support Wish I could help !
|
|
|
Jag24
Junior Member
182 Posts |
Posted - 10 November 2003 : 21:46:39
|
Well at least someone had some luck.....very good ! |
|
|
lighthousekeeper
Starting Member
USA
5 Posts |
Posted - 13 November 2003 : 07:57:23
|
I downloaded and installed Photo Album v1.50 for Snitz 3.4.03 Version: v1.80 and followed the directions to the letter. I am not using nconvert.exe. Here is what I get after uploading a photo and waiting after what seems like forever:
---------------------------------------------------------------------- Technical Information (for support personnel)
* Error Type: Active Server Pages, ASP 0113 (0x80004005) The maximum amount of time for a script to execute was exceeded. You can change this limit by specifying a new value for the property Server.ScriptTimeout or by changing the value in the IIS administration tools. /forum/photo_album_upload.asp
* Browser Type: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)
* Page: GET /forum/photo_album_upload.asp?mname=&err=5
* Time: Thursday, November 13, 2003, 12:54:24 AM ---------------------------------------------------------------------- The folder for the photos does have write permissions enabled. I see the file being uploaded on my browsers load meter. Any help would be greatly appreciated!
Thanx!
|
Diora ar mo chroi |
|
|
sikandar
Junior Member
Pakistan
135 Posts |
Posted - 16 November 2003 : 05:39:58
|
I have configured the Album mod but don't know where to find the Album link on the main page or any other page? |
|
|
madfiddler
Starting Member
United Kingdom
33 Posts |
Posted - 25 November 2003 : 07:26:18
|
quote: Originally posted by dibley
quote: Originally posted by madfiddler
Someone posted about the photo album setup not being correct for Access 97 (the CREATE TABLE statements are wrong).
Here is a mod fix that I've just made http://www.shnforum.com/forum/topic.asp?TOPIC_ID=2818
The same fix is also required for the File Lister mod.
Hmmm... I may have to check that out.... After not getting anywhere with this mod for weeks, I installed shnForum on space at Parcom.net.(for only a small monthly cost!) Once the correct folder permissions where set, I have not had any more photo album problems.... I do still have a forum on 1asp with half an album installed, so may try again, now I have seen that!
Super!
I used the SHNForum as a start point - in the end I unhooked all the photo album and file sharnig and went with Korayem's File Sharing MOD instead it is much much better. Hopefully v9 of ShN Forum once released will be more aking to this. |
|
|
RichardE
Starting Member
United Kingdom
20 Posts |
Posted - 02 January 2004 : 04:04:41
|
Everything works fine on my development machine but when I put Photo Album on the network server, if I try to look at the photos or search photos, the session hangs.
Running Snitz 3.4 with latest Photo Album MOD - development PC is running PWS and network server is running IIS.
I have re-set the Photo Album config parameters so it knows where the photos and nconvert are - and am not getting missing directory messages.
I have set the forum directory to allow Scripts and Executables which I believe then gives the same permissions to all the directories below.
I have copied aspexec.dll to the winnt\services32 directory and registered it.
Have I done something wrong?
Is there something else I should do?
Any ideas why it keeps hanging?
Thanks in advance!
|
|
|
rusty festa
Starting Member
1 Posts |
Posted - 15 February 2004 : 06:07:02
|
Hi P3TER,
you code below worked excellently keep up the good work
quote: Originally posted by P3TER
Well, I have played around with this code, and have created a function that fixes the specific problem I was experiencing. My users were attempting to upload files with non alpha-numeric characters in the filename (spaces, parentheses, hyphens etc) which in every case caused the thumbnailing function to fail, and in many cases caused the image display function to fail. another side effect was that a copied shortcut embedded in a forum posting within (img)(/img) tags would fail since it sometimes contained characters that are treated as risky and therefore stripped by the forum post functions..
I must warn you that I DO NOT consider myself to be a programmer, therefore I would be happy for anyone to tell me that my code sucks, as long as their response contains the source code to how it should be done!
Adding the code Insert just above the last line "%>" at around Line 354 of inc_photo_album_functions.asp quote: function purify_filename( FileName ) '********************************************************** '* P3TER's filename purifier function '* ---------------------------------- '* Turns a filename into pure alpha numeric, removing all '* characters other than numbers, letters, and "." '********************************************************** For ParseFileName = 1 to len(FileName) ASCII = Asc(Mid(FileName,ParseFileName,1)) if ASCII <46 THEN Dirty = TRUE 'Flag these characters as dirty = !"#$%&'()*+,-
if ASCII >=58 AND ASCII <65 THEN Dirty = TRUE 'Flag these chars as dirty = :;<=>?@
if ASCII >=91 AND ASCII <97 THEN Dirty = TRUE 'Flag these chars as dirty = [\]^_`
if ASCII >=123 THEN Dirty = TRUE 'Flag these chars as dirty = {|}~ onwards
If Dirty = True then FileName = Replace (FileName,chr(ASCII),"/") End If Dirty=false next FileName = Replace (FileName,"/","") purify_filename = FileName end function
Then, add this entry to around line 294 of ToFileSystem.asp, immediately above the "' Compile path to save file to" comment line.quote: 'Call Filename purifier function strFileName = purify_filename (strFileName) 'End of Filename purifier function
Removing the effect of this function is simple - just comment out the middle of the 3 lines above, and resave ToFileSystem.asp
Using this function when uploading a file means that a file named "F [i-l_e#-n'a me%1.jpg" would upload a file named "Filename1.jpg"
I would like to hear any feedback from anyone who tries this code. - please post it here!
I'm sorry to see that the original MOD coder is no longer using Snitz as the Gallery MOD is indeed excellent. It is only top be expected that there are one or two minor tweaks required - that is the nature of software development
Cheers, Jon
http://www.cumbrianscoobs.co.uk
Active User MOD Gallery MOD Poll MOD All member email MOD plus some more?!
|
|
|
K.Storm
Starting Member
Andorra
23 Posts |
Posted - 11 March 2004 : 05:16:01
|
hi all
I get a error with photoalbum and snitz 34.04 with a MySQL database: the error is:
>HTTP Error 507 >507 Unexpected
>The Web server encountered an unexpected error while communicating >with the ASP service.
>Please contact the server's administrator if this problem persists.
The error comes in admin and in the forum, i have made the dir for the pictures and check with the database that the path i right.
I have read on the internet that the error is a loop error somewhere ????? but where
Please help someone...
/K.Storm
|
|
|
Netz
Starting Member
Denmark
25 Posts |
Posted - 18 March 2004 : 20:37:40
|
Hi Lads,
I have this error with my Portal - I can't upload ??? Not in Photo or in file area ??
When I creates a new user "Test" - No problemos When I creates a new user that have three names (like me= Peter Netz Lassen) "Test Person One" = No problemos When I change language (US or DK) No problemos - But still I can't upload files of any sort? Everybody can upload - except me ???? I also tried from another computer .... Same problem??
Portal www.wannashake.com/club user test Pass test
Or User Test Person One pass test
Could it be that my username is too long??? Surely not? (I was born that way
|
A wise man don't know everything. But he knows who to ask :)
Be the best you can be
http://www.Bizworld.dk - Work From Home - The Smart way Stay Healthy: http://www.herbalcenter.dk |
|
|
Netz
Starting Member
Denmark
25 Posts |
Posted - 31 March 2004 : 11:53:29
|
Hi All,
It sure isn't speed that kills here :) Does anyone have a clue - guess - Anything will be welcome
Netz |
A wise man don't know everything. But he knows who to ask :)
Be the best you can be
http://www.Bizworld.dk - Work From Home - The Smart way Stay Healthy: http://www.herbalcenter.dk |
Edited by - Netz on 31 March 2004 11:55:07 |
|
|
masterao
Senior Member
Sweden
1678 Posts |
Posted - 31 March 2004 : 17:46:05
|
It will probably have to do with the spaces in your member name. IIRC, this problem has been discussed before, and a search should bring up a few topics discussion this. |
Jan =========== FR Portal Forums | Active Users 4.0.20 Mod |
|
|
Topic |
|