Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
bulentdemiral  
#1 Posted : Wednesday, June 1, 2011 12:40:34 PM(UTC)
bulentdemiral

Rank: Newbie

Groups: Member
Joined: 6/1/2011(UTC)
Posts: 6

Was thanked: 1 time(s) in 1 post(s)
hi everybody

i cant see aurigma control on my page that i used aurigma 6.x before

i replaced on my bin folder new aurigma .dll

remove and add new controls on my toolbox with selecting new dll and edit my codes.

when i start the website with debugging option i get the error below

microsoft jscript runtime error: $au is undefined

var Uploader1 = $au.uploader({ id: 'Uploader1' }).......

can anybody solve it

UserPostedImage

Dmitry.Obukhov  
#2 Posted : Thursday, June 2, 2011 1:26:05 AM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups:
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello,

Could you please provide me with exact version number of Image Uploader 7 you have downloaded and use?

Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

bulentdemiral  
#3 Posted : Thursday, June 2, 2011 5:28:17 AM(UTC)
bulentdemiral

Rank: Newbie

Groups: Member
Joined: 6/1/2011(UTC)
Posts: 6

Was thanked: 1 time(s) in 1 post(s)
aurigma image uploader 7.0.28

but it works when i create a new website project. my problem is my old site that i used aur 6,x before.

thank you for your interest

Dmitry.Obukhov  
#4 Posted : Thursday, June 2, 2011 8:06:51 PM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups:
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Togla,

I tried to replicate your problem locally. Here are my steps I performed:

  1. I opened my web application with Image Uploader 6.5.19 in Visual Studio;

  2. I removed Aurigma.ImageUploader.dll file from Bin/ directory, selecting it and clicking “Delete” button;

  3. Added new reference to Aurigma.ImageUploader.dll of Image Uploader 7.0.28;

  4. Added Uploader control from Toolbox to my page instead of previous control;

  5. Run my application in browsers. I checked Chrome and Internet Explorer. My website with new Image Uploader 7.0.28 was opened okay. Image Uploader was rendered on the page without any problems.

Please check whether you add correct reference to Image Uploader 7 assembly. I would like to recommend to remove it, and add anew.

Please keep me informed about your results.

Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

bulentdemiral  
#5 Posted : Saturday, June 4, 2011 8:46:44 AM(UTC)
bulentdemiral

Rank: Newbie

Groups: Member
Joined: 6/1/2011(UTC)
Posts: 6

Was thanked: 1 time(s) in 1 post(s)
Hi Dimitry

thanks for your respond.

i follow these steps certainly but it doesnt works again. i think i have a different problem about it.

my project is very complicated maybe the problem is this :) i will search until i found it and share here.

thank you

bulentdemiral  
#6 Posted : Monday, June 13, 2011 4:21:56 PM(UTC)
bulentdemiral

Rank: Newbie

Groups: Member
Joined: 6/1/2011(UTC)
Posts: 6

Was thanked: 1 time(s) in 1 post(s)
hi again,

i created a new web site to ensure what is my web sites problem while copying from my old pages to new one.

i created web config, master pages, css and our user controls and i have tested each other.

when i create global.asax and configure to my old that i used routing i receive error above.

i dont know why. please advise me something to resolve it.

thank you

my global file is configured like below.

<%@ Application Language="VB" %>

<%@ import Namespace="System.web.routing" %>

<script runat="server">

Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)

' Code that runs on application startup

SaveRoots(RouteTable.Routes)

End Sub

Sub Application_End(ByVal sender As Object, ByVal e As EventArgs)

' Code that runs on application shutdown

End Sub

Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs)

' Code that runs when an unhandled error occurs

End Sub

Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs)

' Code that runs when a new session is started

End Sub

Sub SaveRoots(ByVal routes As RouteCollection)

' routes.MapPageRoute("indexRoute", "{sayfaNo}", "~/index.aspx", True)

' routes.MapPageRoute("sektorSayfaNoRoute", "Sektor/{seoktorSayfaNo}", "~/sektor.aspx", True)

routes.MapPageRoute("bultenRoute", "Haber/{seoBaslik}", "~/basinBulteni.aspx", True)

routes.MapPageRoute("etiketRoute", "Haberler/{seoEtiket}", "~/etiket.aspx", True)

routes.MapPageRoute("firmaRoute", "{seoFirma}", "~/firma.aspx", True)

routes.MapPageRoute("fuarFirmaRoute", "Yapi-Fuari/{seofuarFirma}", "~/fuar.aspx", True)

routes.MapPageRoute("sektorRoute", "Sektor/{seoSektor}", "~/sektor.aspx", True)

routes.MapPageRoute("yapiFirmalariSeoSektorRoute", "Sektor-Firmalari/{yfSeoSektor}", "~/yapiFirma.aspx", True)

routes.MapPageRoute("rssRoute", "RSS/{rssSektorSeo}", "~/Rss/yapi-sektorleri-rss.aspx", True)

routes.MapPageRoute("firmaRSSRoute", "Firma-RSS/{rssFirmaSeo}", "~/Rss/yapi-firmalari-rss.aspx", True)

End Sub

Sub Session_End(ByVal sender As Object, ByVal e As EventArgs)

' Code that runs when a session ends.

' Note: The Session_End event is raised only when the sessionstate mode

' is set to InProc in the Web.config file. If session mode is set to StateServer

' or SQLServer, the event is not raised.

End Sub

</script>

bulentdemiral  
#7 Posted : Monday, June 13, 2011 4:31:03 PM(UTC)
bulentdemiral

Rank: Newbie

Groups: Member
Joined: 6/1/2011(UTC)
Posts: 6

Was thanked: 1 time(s) in 1 post(s)
when i delete saveRoots sub on global.asax in old website, aurigma works.

but this sub is most important part of my site.

what i supposed to do.

thank you

bulentdemiral  
#8 Posted : Monday, June 13, 2011 6:04:17 PM(UTC)
bulentdemiral

Rank: Newbie

Groups: Member
Joined: 6/1/2011(UTC)
Posts: 6

Was thanked: 1 time(s) in 1 post(s)
i resolve it.

i was routing on root directory.

routes.MapPageRoute("firmaRoute", "{seoFirma}", "~/firma.aspx", True)

because of root directory routing, was trying to process everything on root directory include webresource.axd that generated on run-time to start aurigma.

i used ignore methot for .axd extensions BEFORE my page routes.

routes.Ignore("{resource}.axd/{*pathInfo}")

it works

thanks 1 user thanked bulentdemiral for this useful post.
Dmitry.Obukhov on 6/14/2011(UTC)
Dmitry.Obukhov  
#9 Posted : Tuesday, June 14, 2011 12:56:04 AM(UTC)
Dmitry.Obukhov

Rank: Advanced Member

Groups:
Joined: 5/29/2010(UTC)
Posts: 1,310

Thanks: 8 times
Was thanked: 111 time(s) in 111 post(s)
Hello Tolga,

I am glad that you have resolved your problem. Thank you very much for sharing your results. I assume it will be useful for other our clients who will face the similar problems.

If you have any questions, please feel free to let us know.

Best regards,

Dmitry Obukhov

Technical Support. Aurigma, Inc.

Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.