CodeVerge.Net Beta


   Explore    Item Entry   Register  Login  
Microsoft News
Asp.Net Forums
IBM Software
Borland Forums
Adobe Forums
Novell Forums

MS SQL 2008 on ASP.NET Hosting



Zone: > NEWSGROUP > Asp.Net Forum > starter_kits_and_source_projects.portal_starter_kit Tags:
Item Type: NewsGroup Date Entered: 3/4/2004 10:23:03 PM Date Modified: Subscribers: 0 Subscribe Alert
Rate It:
(NR, 0)
XPoints: N/A Replies: 20 Views: 25 Favorited: 0 Favorite
Can Reply:  No Members Can Edit: No Online: Yes
21 Items, 2 Pages 1 2 |< << Go >> >|
hcdavis
Asp.Net User
Moving site3/4/2004 10:23:03 PM

0/0

I have inherited a project someone else has started and have been given the task of completing it for a variety of reasons. Suffice to say, I am looking for some help deploying the application that was started from the Portal Starter Kit. I can get around with asp but do not use it regularly.

Anyway, here is my problem:
I need to move the portal from his laptop to a test server. The server is configured correctly, but how do I go about moving this? Are there specific steps?

In addition, how do I go about taking ownership of the portal by re-naming it from Portal Starter Kit?

I hope this is not too vague.

Thanks so much!!!!
hooligannes97
Asp.Net User
Re: Moving site3/5/2004 2:44:49 PM

0/0

The first part: Use Copy Project in Visual Studio.

The second part: What do you mean take ownership?
Do you know the truth when you hear it?
hcdavis
Asp.Net User
Re: Moving site3/11/2004 2:26:49 PM

0/0

By taking ownership I am referring to renaming the portal. Specifically changing the Namespace="ASPNET.StarterKit.Portal". What is entailed in this and what impact should I expect. I would like the application to reflect our naming conventions more acurately.

In addition, in regards to moving the site, I am not sure which version of the Portal was initially downloaded. Does this make a difference? I don't see any project files to transfer.

Lastly , I have copied over the database to our SQL test server and renamed it. I updated the connection string in the web.cgf but still cannot access the appliction. Are there other places that I am missing that I need to change?

Thank,
HD
hooligannes97
Asp.Net User
Re: Moving site3/11/2004 7:04:17 PM

0/0

You can change the Namespace to whatever you like, just be consistent and change all references to the same namespace. When you recomiple the project a new DLL will be created and the application will work with that DLL.

To move the site you use the copy project to a web you have created in IIS. And are given the choice to copy all files, just the ones needed to run the app, which most of the time is what you will choose.

Regarding the version, if code has been modified already, you will not be able to update it to the latest version. However if code was added in separate modules you might be able to do it. However do this carefully, HTML should be readded, not replaced. Can't really tell you what has changed with the user interface or code from version to version. The process will prove cumbersome. I would simply check this forum to go through issues than have been corrected and just update them manually.

The proper way to modify DB access is to modify the scripts. Most likely you cannot access the DB either because of a user/PWD problem or your SPROCS do not point to the same DB. I will need to know the error you get.
Do you know the truth when you hear it?
alex3wworld
Asp.Net User
Re: Moving site3/11/2004 7:47:56 PM

0/0

Hi,
If you do not want to use VS to copy your web-site(in case your web-hosting provider does not support FTP extentions,for example) I can recommend to you just FTP next files:
Bin/Project name.dll (do not copy .pdb)
Admin/------.axpx (do not copy aspx.vb and aspx.vb.resx)
---------------
---------------
----.ascx
PortalCFG.xml
Web.config
ASPNetPortal.css
Global.asax


and so on.
So,you do not need .VB file at all becouse as soon as you recompile you project,all .VB files will be compiled to that DLL.

Also,if you will mak any sourse-code updates,you will need to update this ProjectName.DLL
and your web-site will automatically restart and your updates will become available.

Alex.
hcdavis
Asp.Net User
Re: Moving site3/16/2004 5:42:13 PM

0/0

I have resolved the DB issue, this was related to a security login issue on the server.

Hopefully this is not something I am just cruising over, but I cannot find any project files to copy over? Could this be related to how this was installed?

So I can just ftp the files over manually?

Thanks again for everyone's help. Baby steps.
hooligannes97
Asp.Net User
Re: Moving site3/17/2004 1:53:32 AM

0/0

Yes you can copy the files over FTP, that is the beauty of ASP.NET.

You should see the project files in your installation in the PSK folder. that is what the installer does, copy all source files and the dlls as well to a location you select.
Do you know the truth when you hear it?
hcdavis
Asp.Net User
Re: Moving site3/22/2004 1:03:23 PM

0/0

Ia m looking at the setup and I believe the SDK versio was downloaded. Am I going to run into any problems continuing to use VS? Also, this being the case, will there still be project files located there?

I really appreciate your help.
hcdavis
Asp.Net User
Re: Moving site3/22/2004 1:35:16 PM

0/0

What is the easiest way to recompile?
hooligannes97
Asp.Net User
Re: Moving site3/22/2004 2:24:32 PM

0/0

Well the SDK does not use Code Behind so you must do a lot of manual work like dll compile.

I advise you to use the VS version. But if you still want to recompile, use the command line compiler VBC. You will find all the necessary info on MSDN, search for compiler Visual Basic .NET
Do you know the truth when you hear it?
hcdavis
Asp.Net User
Re: Moving site3/22/2004 4:02:47 PM

0/0

This brings up an inetersting scenario. Can I removed the SDK version and re-install the VS version? I understand this will require some setting changes in the config files ect, but much of my customization will be stored in the database, correct?
hooligannes97
Asp.Net User
Re: Moving site3/22/2004 4:51:45 PM

0/0

I have never used the SDK versions, I think you can uninstall it and install de VS version. but As far as I know you can also have both of them installed.
Do you know the truth when you hear it?
hcdavis
Asp.Net User
Re: Moving site3/22/2004 4:54:36 PM

0/0

I have actually installed the VS version and updated the Config file to connect to the remote server. Everything seems to be working. However, before I uninstall the SDK version; am I going to run into problems using the same database?

Thanks again hooligannes97 for your assistance.
hooligannes97
Asp.Net User
Re: Moving site3/22/2004 5:35:16 PM

0/0

You are very welcome.

When uninstalling it will remove your SDK files, but I am not sure if the uninstall deletes the DB. I have never tried this. I suggest you copy the DB for the new VS version and rename it using scripts, then run the uninstall. If it deletes the original DB you will get an error, if this happens simply change the config file again to the new DB, if it is not deleted, simply remove the new DB you just created.
Do you know the truth when you hear it?
hcdavis
Asp.Net User
Re: Moving site3/22/2004 7:41:11 PM

0/0

I uninstalled the SDK files and this did not remove the database. I thought about it, and since I renamed the database and moved it to a remote server it wouldn't be able to delete it. I did a backup in the event it did. Just thought you might want to know.

Anyway, I am trying to open the project file in VS 2003 and I am getting errors "Unable to get the project file from the Web server. Unable to open Web project 'PortalVBVS'. The Web 'PortalVBVS' located on server 'http://localhost' does not exist."

I installed the portal on C:\NEWEVENTS

I thought this might be related to the virtual directory but I can't seem to resolve it. Anyway, I will continue to look throughout the forum for more info. Just thought I would throw this out.

Thanks
hooligannes97
Asp.Net User
Re: Moving site3/22/2004 7:50:02 PM

0/0

Yes it is related to the virtual directory. Just check that it maps to the same place in the webinfo file. You can open this file using VS directly or Notepad. Edit it to map to the same directory as you have in IIS.
Do you know the truth when you hear it?
hcdavis
Asp.Net User
Re: Moving site3/22/2004 8:03:19 PM

0/0

At the risk of sounding stupid where is the webinfo file you are referring to? I had started to go into IIS to create a virtual directory for the PortalVBVS.
hooligannes97
Asp.Net User
Re: Moving site3/22/2004 8:37:05 PM

0/0

It has the same name as the Portal and the extension .webinfo in the same folder as the project.
Do you know the truth when you hear it?
hcdavis
Asp.Net User
Re: Moving site3/23/2004 11:59:44 AM

0/0

I don't see one anywhere.
hcdavis
Asp.Net User
Re: Moving site3/23/2004 3:21:37 PM

0/0

The *.sln file is there but I don't see any *.webinfo. I can't seem open the .sln file which is killing me. I must be missing some step somewhere.

21 Items, 2 Pages 1 2 |< << Go >> >|


Free Download:

Books:
Dreamweaver MX 2004: The Missing Manual Authors: David Sawyer McFarland, David Pogue, Pages: 836, Published: 2004
Medical Assisting: Essentials of Administrative and Clinical Competencies Authors: Lucille Keir, F P Vasilyev, Barbara A. Wise, Connie Krebs, Pages: 608, Published: 2003
Dreamweaver 8: The Missing Manual Authors: David Sawyer McFarland, David Pogue, Pages: 936, Published: 2006
Marriage, Violence, and the Nation in the American Literary West Authors: William R. Handley, Pages: 261, Published: 2002
Starting an Online Business for Dummies Authors: Greg Holden, Pages: 416, Published: 2007
101 Internet Businesses You Can Start from Home: How to Choose and Build Your Own Successful E-Business Authors: Susan Sweeney, Susan Sweeney, CA, C a Sweeney, Pages: 520, Published: 2001
The Essential Garden Design Workbook Authors: Rosemary Alexander, Pages: 292, Published: 2004
Active Directory Cookbook Authors: Robbie Allen, Laura E. Hunter, Pages: 962, Published: 2006
Building Green: A Complete How-to Guide to Alternative Building Methods : Earth Plaster, Straw Bale, Cordwood, Cob, Living Roofs Authors: Clarke Snell, Tim Callahan, Pages: 615, Published: 2005

Web:
Moving Companies | Movers | Moving Services - Moving.com Manage moving and relocation process with our moving van line, moving truck rental quotes, ... Join our Network | Site Map | Create an Account | Login ...
House Moving Relocation Calculators | Real Estate, Mortgage Loans ... House moving relocation calculators and lots more. Get complete information, quotes, and articles on moving and relocation.
Joomla! • View topic - Moving Site Problem – Administrator Files Lost Post subject: Re: Moving Site Problem – Administrator Files Lost. Post Posted: Sat Nov 08, ... I reviewed again the "How do you move a Joomla Site? ...
Moving site to different internet address | drupal.org Move my /sites/default/settings.php to the new server and update the following information regarding the database in it: user, pwd, server, ...
Moving Site To Another Location - MODx Wiki Install the site locally, renaming and editing the .htaccess file to indicate the subdirectory you are deploying your site into in the test environment, ...
GetAFreelancer.com - About us page text for moving site domains ... Freelance programmers and web designers bid on About us page text for moving site domains for accurate & fast only. An outsourced project from WCM ...
Problem moving site from loval to remote server - Mambo - Forums ... Problem moving site from loval to remote server General Questions.
Protect Your Move Our mission is to decrease moving fraud by providing consumers with the knowledge and resources ... Web Policies and Important Links | Site Map | Plug- ins ...
Problem after moving site Problem after moving site. ... Before the move the site was doing well and pages , users adding went perfect. After the move when i add new pages i get the ...
MySpace.com - Second Hour ARE MOVING SITE! - Kent, UK - Pop Punk ... MySpace music profile for Second Hour ARE MOVING SITE! with tour dates, songs, videos, pictures, blogs, band information, downloads and more.

Videos:
MOVING SITE. My site is moving to SEXYCUPCAKECANI Add me. Subscribe to me. Watch me.
Neutrophil moving to the site of infection This is a video of how a neutrophil (and other cells of the immune system) move to the sight of infection. Notice how they squeeze through the endot...
Pflugerville Site Promo 01: Calvary Austin on the Move Calvary Austin is moving into a purchased facility at Heatherwild and 1825 in Pflugerville.
Steam Trek: The Moving Picture (Star Trek Parody) "In Space, no-one can hear you!" Classic sci-fi as it might have been done 100 years ago by George Melies. (This version cut to fit YouTube restricti...
Large steam shovel or earth moving equipment digging at construction site To download and license this royalty free clip, please go to www.dvarchive.com and use the clip number or any of the words listed in the description ...
Large steam shovel, earth moving equipment at construction site, digging To download and license this royalty free clip, please go to www.dvarchive.com and use the clip number or any of the words listed in the description ...
Cotton q-tip fibers moving Cotton q-tips move too with Morgellons!
BMVisuals - Create "moving" lines, great for website headers If you have watched this video, will you know how to make some "moving" lines in adobe photoshop CS2. When you have this technik under the knee, can ...
The New First Magic Move To A Winning Golf Swing Video by Andy Brown View the first of the new four magic moves to a winning golf swing. Andy Brown from St Andrews "The Home Of Golf", Scotland explains how the early ba...
Badnicks move in part 1 Some morons burned down the badnick's house and there moving in with me.




Search This Site:










assemblyinfo file + change name

is ibuyspy portal better than dotnetnuke

no login on intranet version

how to create a new module and make it work?

portal starter kit and search engines

no admin tab shown to initial portal user

about portal applications

display html content in ibuyspy

browse configuration error

how can i customize asp.net portal start kit?

problem opening mobiledefault.aspx

free gallery module (vb.net) available

add existing module

http error 403 - forbidden clicking banner home link

accessing controls

access to the path ..portalcfg.xml is denied

modules

which portal?

leftpane on one tab keeps disappearing.

unrecognized attribute 'validaterequest'

siteconfiguration is not defined while recompiling assembly

ip address in links instead of domain name

portal configuration file

configuration error - with v1.1 installed.

combining portals

portalcfg.vb file

how to put in a module

user control within ibuyspy - system.invalidcastexception: specified cast is not valid.??

design view in vs.net 2003

format of html module

  Privacy | Contact Us
All Times Are GMT