Acces my home page
Last Post 06/01/2012 11:16 AM by Joseph Craig. 8 Replies.
Author Messages
Joel
Nuker
Nuker
Posts:18


--
05/28/2012 6:39 PM  
Recently i just redirect by url my home page, now :
How can acces againg the page for updating ?
before redirect, i did modification by : www.mypage.com/login.aspx
but now when i try the same, the page is redirect to the url I set.

How do i can acces my web page againg?

Thanks

Joel
Pingle2009
Nuke Master
Nuke Master
Posts:186


--
05/29/2012 2:19 AM  
Hi Joel, I'm assuming that you can still log in, in which case go to Admin > Page Management and select Home so that the page settings appear. You can then expand the Link section and reset Link Type to None.
Joel
Nuker
Nuker
Posts:18


--
05/29/2012 7:59 AM  
Hi Pingle2009

The problem is i can not login, when i try "www.mypage.com/login.aspx" , the page redirect too to the url i was setting in home page.
I dont know what to do... ???

Thanks
Joseph Craig
DNN MVP
Posts:11667


--
05/29/2012 10:30 AM  
You are going to have to get into your database using SQL Server Management Studio to remove the redirection.

I assume that you did this using the redirection in page settings. Go to the Tabs table and find the Url column. Delete whatever entry is there for the page(s) in question and that will stop redirection. You may need to manually recycle the AppPool before the changes are effective.

Joe Craig, Patapsco Research Group
Complete DNN Support
Joel
Nuker
Nuker
Posts:18


--
05/29/2012 4:59 PM  
Hi Joe

The big problem is i can not go to any page because when i try "www.mywebsite.com" inmediatly redirect to "www.urlsiteredirect.com" and i can not acces any page of my web site.
On the other hand, when i try to access "www.mywebsite.com/login.aspx" , the login page open , but when i fill the form with user "host" and pasword, inmediatly redirect to "www.urlsiteredirect.com"

I want to delete the url i set in home page of my web site, but i can´t .....

What do i do ?

Thanks
Joel
Nuker
Nuker
Posts:18


--
05/29/2012 5:01 PM  
Excuse me , i forget... yes, i did the redirection using page setting ( in home page ).

thanks
Joseph Craig
DNN MVP
Posts:11667


--
05/29/2012 10:17 PM  
You will have to use the SQL Server Management Studio approach to fix the redirection in the database. If you are hosted, perhaps your host's tech support can do this for you.

Joe Craig, Patapsco Research Group
Complete DNN Support
Joel
Nuker
Nuker
Posts:18


--
06/01/2012 10:53 AM  
Hi Joseph .
Can you tell me what is the path and name of the table i am going to fix ?

Thanks
Joseph Craig
DNN MVP
Posts:11667


--
06/01/2012 11:16 AM  
The name of the table is Tabs and the column is named Url.

Run this query:

SELECT TabId, TabName, Url FROM Tabs

Then you can identify which TabId has the redirect. Then run this:

UPDATE Tabs set Url='' WHERE TabId=XX

but replace XX with the TabId that you want to fix.

Joe Craig, Patapsco Research Group
Complete DNN Support


---