Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)ssrdjanJanuary 11, 2005 at 10:26 AM#check URL path existshow can I check does entered URL path is valid? I request from user to create virtual and absolute folder manualy, then to enter full URL path to the app. I want to check does entered URL path exists.
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)Afrow UKJanuary 11, 2005 at 12:32 PM#You can use Lobo-Lunar's Internet plugin: http://www.lobo-lunar.com/nsis/ Then use this function to chop up a URL: http://nsis.sourceforge.net/archive/nsisweb.php?page=659&instances=0,11 -Stu
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)ssrdjanJanuary 11, 2005 at 12:49 PM#thank you, i will try i try some other solution, too: ;empty file FileOpen $0 "$INSTDIR\check.gif" w FileClose $0 StrCpy $1 "$HTTP_PATH/check.gif" NSISdl::download "$1" "c:\check.tmp" Pop $R0 MessageBox MB_OK "$R0" but i gets message "Access Denied". whats wrong with this? HTTP_PATH = "http://localhost/ProjectDir/"
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)RobGrantJanuary 11, 2005 at 12:52 PM#Check your permission and whether you want the full expanded path to include two backslashes (\\): StrCpy $1 "http://localhost/ProjectDir//check.gif"
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)ssrdjanJanuary 12, 2005 at 7:39 AM#Thanks a lot, guys. Problem was with Anonymous acces in Authentication methods of web folder. NSISdl::download and Internet plugin works very good. Regards
Abstract Avatars for All Creative Profile UseMatt Houserhttps://www.figma.com/community/file/1249154526125777853https://creativecommons.org/licenses/by/4.0/Remix of “Abstract Avatars for All Creative Profile Use” (https://www.figma.com/community/file/1249154526125777853) by “Matt Houser”, licensed under “CC BY 4.0” (https://creativecommons.org/licenses/by/4.0/)Afrow UKJanuary 12, 2005 at 11:00 AM#I recommend using this plugin by Takhir instead of NSISdl. NSISdl has problems with proxies. http://forums.winamp.com/attachment.php?s=&postid=1564789 -Stu