473,320 Members | 2,122 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Publish Web site and the web.config

I noticed a similar post awhile ago and in terms of my problem it wasnt a suitable answer so I will ask again.
I have VS2005 running a on development machine in my office where I do all my development on existing and new applications. This environment also has its own Sql Server with dev versions of all our live Databases.

Our live production server also its own Sql Server, these 2 Sql Servers are kept completely separate (for obvious reasons). I have a separate web.config file for each environment for each Sql connection string as well as having debug mode turned on or off.

At the moment we use a winace script that aces all teh required files into a .ace file, which we then upload to teh production server via ftp then run an unace script to release each website. While this isnt exactly the prettiest method of deployment it is reasonably quick and we can set what files do or do not get deployed when we do a release.

With the release of .Net 2.0 I noticed that websites are no longer compiled into a single dll. In fact in terms of dll creation it seems that they arent compiled at all. This makes deploying to our live production server a tad difficult. Below are the following methods I have been able to find:

Straight File Copy
One way is copying all the files onto the production server filessytem and let the website be JIT compiled when it is accessed. This method while easier to accomplish creates a couple of bad things - it slows the server down when it has to compile each page and it allows the client to access the source code of the site ( I dont like doing this).

Build->Publish Website
I had a play with with this tool for awhile but it does some strange things. It removes all files in the directory before each build, including custom files (the tool tells you about existing files, and fails if you select not to remove them). Plus it releases the development web.config with the rest of the website meaning on each publish I have to change the production web.config manually.

Website-> Copy Website
This seems like a built in Ftp client with dif tools, which would be nice if I could get around having to upload my .cs files to the production server.

What I am looking for is something like Publish Website, but that you can either select files to not be published or for it not to delete the existing files in the release directory. Or a single dll to be created when you compile a website in the IDE so I can use my existing method of releasing websites.

Help Appreciated
Graham
Nov 19 '05 #1
8 3132
Hi Grapham,

Welcome here.
Regarding on the problem you mentiond, first I think all the things and
behaviors you described are correct. Copy Files only help us copy and
synchronous specified items between current site and target site (but no
precompiled action is performed). While the publishSite seems good but will
empty the target website(virtual dir) first.

Based on my research and testing, I'd suggest the following two approach:
1. Since the only difference between your client and server is the
web.config file, is it possible that we modify or replace the web.config at
development machine before publishing? If possible, we can still utilize
the PublishSite directly....

2. If it's really impossible to get the target server's configuration on
dev machine before publishing. We can consider separate the publishing into
two steps:

1) Since the VS.NET 2005's publishSite can let us publish the Precompiled
website into a local physical filesystem folder. So we can publish the
precompiled Site into a local file folder.

2) use VS.NET 2005 to open the temp file folder created in 1). Then, we'll
get message indicate that this is a precompiled site and do not modify it(
just ignore it). Then, we can use the CopySite function to copy the
necessary files we want to deploying...

Just some of my suggestions. I'm afraid so far there is no perfect solution
available.
Thanks for your understanding.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: "Graham" <en*******@newsgroups.nospam>
| Subject: Publish Web site and the web.config
| Date: Mon, 7 Nov 2005 11:17:29 +1300
| Lines: 162
| MIME-Version: 1.0
| Content-Type: multipart/alternative;
| boundary="----=_NextPart_000_0017_01C5E38C.D762CC30"
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <uH*************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: 222-153-144-207.jetstream.xtra.co.nz 222.153.144.207
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:136472
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| I noticed a similar post awhile ago and in terms of my problem it wasnt a
suitable answer so I will ask again.
| I have VS2005 running a on development machine in my office where I do
all my development on existing and new applications. This environment also
has its own Sql Server with dev versions of all our live Databases. Our
live production server also its own Sql Server, these 2 Sql Servers are
kept completely separate (for obvious reasons). I have a separate
web.config file for each environment for each Sql connection string as well
as having debug mode turned on or off.
| At the moment we use a winace script that aces all teh required files
into a .ace file, which we then upload to teh production server via ftp
then run an unace script to release each website. While this isnt exactly
the prettiest method of deployment it is reasonably quick and we can set
what files do or do not get deployed when we do a release.
| With the release of .Net 2.0 I noticed that websites are no longer
compiled into a single dll. In fact in terms of dll creation it seems that
they arent compiled at all. This makes deploying to our live production
server a tad difficult. Below are the following methods I have been able to
find:
| Straight File Copy
| One way is copying all the files onto the production server filessytem
and let the website be JIT compiled when it is accessed. This method while
easier to accomplish creates a couple of bad things - it slows the server
down when it has to compile each page and it allows the client to access
the source code of the site ( I dont like doing this).
| Build->Publish Website
| I had a play with with this tool for awhile but it does some strange
things. It removes all files in the directory before each build, including
custom files (the tool tells you about existing files, and fails if you
select not to remove them). Plus it releases the development web.config
with the rest of the website meaning on each publish I have to change the
production web.config manually.
| Website-> Copy Website
| This seems like a built in Ftp client with dif tools, which would be nice
if I could get around having to upload my .cs files to the production
server.
| What I am looking for is something like Publish Website, but that you can
either select files to not be published or for it not to delete the
existing files in the release directory. Or a single dll to be created when
you compile a website in the IDE so I can use my existing method of
releasing websites.
| Help Appreciated
| Graham
|

Nov 19 '05 #2
Thanks for your reply.
Is it possible to create a custom Visual Studio add-in that does exactly
what I need and uses the Publish Website function as well?

Graham
"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:b6**************@TK2MSFTNGXA01.phx.gbl...
Hi Grapham,

Welcome here.
Regarding on the problem you mentiond, first I think all the things and
behaviors you described are correct. Copy Files only help us copy and
synchronous specified items between current site and target site (but no
precompiled action is performed). While the publishSite seems good but
will
empty the target website(virtual dir) first.

Based on my research and testing, I'd suggest the following two approach:
1. Since the only difference between your client and server is the
web.config file, is it possible that we modify or replace the web.config
at
development machine before publishing? If possible, we can still utilize
the PublishSite directly....

2. If it's really impossible to get the target server's configuration on
dev machine before publishing. We can consider separate the publishing
into
two steps:

1) Since the VS.NET 2005's publishSite can let us publish the Precompiled
website into a local physical filesystem folder. So we can publish the
precompiled Site into a local file folder.

2) use VS.NET 2005 to open the temp file folder created in 1). Then, we'll
get message indicate that this is a precompiled site and do not modify it(
just ignore it). Then, we can use the CopySite function to copy the
necessary files we want to deploying...

Just some of my suggestions. I'm afraid so far there is no perfect
solution
available.
Thanks for your understanding.

Regards,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)


--------------------
| From: "Graham" <en*******@newsgroups.nospam>
| Subject: Publish Web site and the web.config
| Date: Mon, 7 Nov 2005 11:17:29 +1300
| Lines: 162
| MIME-Version: 1.0
| Content-Type: multipart/alternative;
| boundary="----=_NextPart_000_0017_01C5E38C.D762CC30"
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| Message-ID: <uH*************@TK2MSFTNGP09.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: 222-153-144-207.jetstream.xtra.co.nz 222.153.144.207
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP09.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:136472
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| I noticed a similar post awhile ago and in terms of my problem it wasnt
a
suitable answer so I will ask again.
| I have VS2005 running a on development machine in my office where I do
all my development on existing and new applications. This environment also
has its own Sql Server with dev versions of all our live Databases. Our
live production server also its own Sql Server, these 2 Sql Servers are
kept completely separate (for obvious reasons). I have a separate
web.config file for each environment for each Sql connection string as
well
as having debug mode turned on or off.
| At the moment we use a winace script that aces all teh required files
into a .ace file, which we then upload to teh production server via ftp
then run an unace script to release each website. While this isnt exactly
the prettiest method of deployment it is reasonably quick and we can set
what files do or do not get deployed when we do a release.
| With the release of .Net 2.0 I noticed that websites are no longer
compiled into a single dll. In fact in terms of dll creation it seems
that
they arent compiled at all. This makes deploying to our live production
server a tad difficult. Below are the following methods I have been able
to
find:
| Straight File Copy
| One way is copying all the files onto the production server filessytem
and let the website be JIT compiled when it is accessed. This method while
easier to accomplish creates a couple of bad things - it slows the server
down when it has to compile each page and it allows the client to access
the source code of the site ( I dont like doing this).
| Build->Publish Website
| I had a play with with this tool for awhile but it does some strange
things. It removes all files in the directory before each build, including
custom files (the tool tells you about existing files, and fails if you
select not to remove them). Plus it releases the development web.config
with the rest of the website meaning on each publish I have to change the
production web.config manually.
| Website-> Copy Website
| This seems like a built in Ftp client with dif tools, which would be
nice
if I could get around having to upload my .cs files to the production
server.
| What I am looking for is something like Publish Website, but that you
can
either select files to not be published or for it not to delete the
existing files in the release directory. Or a single dll to be created
when
you compile a website in the IDE so I can use my existing method of
releasing websites.
| Help Appreciated
| Graham
|

Nov 19 '05 #3
On Tue, 8 Nov 2005 10:08:52 +1300, "Graham"
<en*******@newsgroups.nospam> wrote:
Thanks for your reply.
Is it possible to create a custom Visual Studio add-in that does exactly
what I need and uses the Publish Website function as well?

I'd give it a couple more days to see if the web deplyoment project
does everything you need:
http://weblogs.asp.net/scottgu/archi...06/429723.aspx

--
Scott
http://www.OdeToCode.com/blogs/scott/

Nov 19 '05 #4
Wow. Good find.

"Scott Allen" <sc***@nospam.odetocode.com> wrote in message
news:f9********************************@4ax.com...
On Tue, 8 Nov 2005 10:08:52 +1300, "Graham"
<en*******@newsgroups.nospam> wrote:
Thanks for your reply.
Is it possible to create a custom Visual Studio add-in that does exactly
what I need and uses the Publish Website function as well?

I'd give it a couple more days to see if the web deplyoment project
does everything you need:
http://weblogs.asp.net/scottgu/archi...06/429723.aspx

--
Scott
http://www.OdeToCode.com/blogs/scott/

Nov 19 '05 #5
Thanks for Scott's informative input,

Hi Graham,

So I think building a custom ADD-in could be helpful on make our
precompiling more easy(not need to do it in two steps as mentioned in my
last message), however, I'm afraid it won't help change the PublishSite's
behavior...
How about the feature described in the article Scott provided?

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: Scott Allen <sc***@nospam.odetocode.com>
| Subject: Re: Publish Web site and the web.config
| Date: Mon, 07 Nov 2005 20:54:42 -0500
| Message-ID: <f9********************************@4ax.com>
| References: <uH*************@TK2MSFTNGP09.phx.gbl>
<b6**************@TK2MSFTNGXA01.phx.gbl>
<Ol*************@TK2MSFTNGP11.phx.gbl>
| X-Newsreader: Forte Agent 1.8/32.548
| MIME-Version: 1.0
| Content-Type: text/plain; charset=us-ascii
| Content-Transfer-Encoding: 7bit
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: dyn-170-243-160.myactv.net 24.170.243.160
| Lines: 1
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:136805
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| On Tue, 8 Nov 2005 10:08:52 +1300, "Graham"
| <en*******@newsgroups.nospam> wrote:
|
| >Thanks for your reply.
| >Is it possible to create a custom Visual Studio add-in that does exactly
| >what I need and uses the Publish Website function as well?
| >
|
|
| I'd give it a couple more days to see if the web deplyoment project
| does everything you need:
| http://weblogs.asp.net/scottgu/archi...06/429723.aspx
|
| --
| Scott
| http://www.OdeToCode.com/blogs/scott/
|
|

Nov 19 '05 #6
Thank you Scott
Looks like I will be able to do eveything I need using that add-in.
I had a read of the decisions behind the changes to web projects in VS 2005,
and I have to say that I am slowly understanding why it does what it does.
Change should not be feared.
Thanks for your continued support Steven.

Graham
"Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
news:6V**************@TK2MSFTNGXA01.phx.gbl...
Thanks for Scott's informative input,

Hi Graham,

So I think building a custom ADD-in could be helpful on make our
precompiling more easy(not need to do it in two steps as mentioned in my
last message), however, I'm afraid it won't help change the PublishSite's
behavior...
How about the feature described in the article Scott provided?

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: Scott Allen <sc***@nospam.odetocode.com>
| Subject: Re: Publish Web site and the web.config
| Date: Mon, 07 Nov 2005 20:54:42 -0500
| Message-ID: <f9********************************@4ax.com>
| References: <uH*************@TK2MSFTNGP09.phx.gbl>
<b6**************@TK2MSFTNGXA01.phx.gbl>
<Ol*************@TK2MSFTNGP11.phx.gbl>
| X-Newsreader: Forte Agent 1.8/32.548
| MIME-Version: 1.0
| Content-Type: text/plain; charset=us-ascii
| Content-Transfer-Encoding: 7bit
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: dyn-170-243-160.myactv.net 24.170.243.160
| Lines: 1
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:136805
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| On Tue, 8 Nov 2005 10:08:52 +1300, "Graham"
| <en*******@newsgroups.nospam> wrote:
|
| >Thanks for your reply.
| >Is it possible to create a custom Visual Studio add-in that does
exactly
| >what I need and uses the Publish Website function as well?
| >
|
|
| I'd give it a couple more days to see if the web deplyoment project
| does everything you need:
| http://weblogs.asp.net/scottgu/archi...06/429723.aspx
|
| --
| Scott
| http://www.OdeToCode.com/blogs/scott/
|
|

Nov 19 '05 #7
Thanks for your followup and the further feedback.

Yes, we'll get much more confident when actually get how and why something
do. Also, hope you also bring this good feature to more other .net guys :-)

Thanks,

Steven Cheng
Microsoft Online Support

Get Secure! www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)
--------------------
| From: "Graham" <en*******@newsgroups.nospam>
| References: <uH*************@TK2MSFTNGP09.phx.gbl>
<b6**************@TK2MSFTNGXA01.phx.gbl>
<Ol*************@TK2MSFTNGP11.phx.gbl>
<f9********************************@4ax.com>
<6V**************@TK2MSFTNGXA01.phx.gbl>
| Subject: Re: Publish Web site and the web.config
| Date: Wed, 9 Nov 2005 09:47:12 +1300
| Lines: 72
| X-Priority: 3
| X-MSMail-Priority: Normal
| X-Newsreader: Microsoft Outlook Express 6.00.2900.2180
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180
| X-RFC2646: Format=Flowed; Original
| Message-ID: <#l**************@TK2MSFTNGP11.phx.gbl>
| Newsgroups: microsoft.public.dotnet.framework.aspnet
| NNTP-Posting-Host: 222-153-144-207.jetstream.xtra.co.nz 222.153.144.207
| Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP11.phx.gbl
| Xref: TK2MSFTNGXA01.phx.gbl
microsoft.public.dotnet.framework.aspnet:137063
| X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
|
| Thank you Scott
| Looks like I will be able to do eveything I need using that add-in.
| I had a read of the decisions behind the changes to web projects in VS
2005,
| and I have to say that I am slowly understanding why it does what it does.
| Change should not be feared.
| Thanks for your continued support Steven.
|
| Graham
|
|
| "Steven Cheng[MSFT]" <st*****@online.microsoft.com> wrote in message
| news:6V**************@TK2MSFTNGXA01.phx.gbl...
| > Thanks for Scott's informative input,
| >
| > Hi Graham,
| >
| > So I think building a custom ADD-in could be helpful on make our
| > precompiling more easy(not need to do it in two steps as mentioned in my
| > last message), however, I'm afraid it won't help change the
PublishSite's
| > behavior...
| > How about the feature described in the article Scott provided?
| >
| > Thanks,
| >
| > Steven Cheng
| > Microsoft Online Support
| >
| > Get Secure! www.microsoft.com/security
| > (This posting is provided "AS IS", with no warranties, and confers no
| > rights.)
| > --------------------
| > | From: Scott Allen <sc***@nospam.odetocode.com>
| > | Subject: Re: Publish Web site and the web.config
| > | Date: Mon, 07 Nov 2005 20:54:42 -0500
| > | Message-ID: <f9********************************@4ax.com>
| > | References: <uH*************@TK2MSFTNGP09.phx.gbl>
| > <b6**************@TK2MSFTNGXA01.phx.gbl>
| > <Ol*************@TK2MSFTNGP11.phx.gbl>
| > | X-Newsreader: Forte Agent 1.8/32.548
| > | MIME-Version: 1.0
| > | Content-Type: text/plain; charset=us-ascii
| > | Content-Transfer-Encoding: 7bit
| > | Newsgroups: microsoft.public.dotnet.framework.aspnet
| > | NNTP-Posting-Host: dyn-170-243-160.myactv.net 24.170.243.160
| > | Lines: 1
| > | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFT NGP12.phx.gbl
| > | Xref: TK2MSFTNGXA01.phx.gbl
| > microsoft.public.dotnet.framework.aspnet:136805
| > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
| > |
| > | On Tue, 8 Nov 2005 10:08:52 +1300, "Graham"
| > | <en*******@newsgroups.nospam> wrote:
| > |
| > | >Thanks for your reply.
| > | >Is it possible to create a custom Visual Studio add-in that does
| > exactly
| > | >what I need and uses the Publish Website function as well?
| > | >
| > |
| > |
| > | I'd give it a couple more days to see if the web deplyoment project
| > | does everything you need:
| > | http://weblogs.asp.net/scottgu/archi...06/429723.aspx
| > |
| > | --
| > | Scott
| > | http://www.OdeToCode.com/blogs/scott/
| > |
| > |
| >
|
|
|

Nov 19 '05 #8
"Scott Allen" <sc***@nospam.odetocode.com> wrote in message
I'd give it a couple more days to see if the web deplyoment project
does everything you need:
http://weblogs.asp.net/scottgu/archi...06/429723.aspx


Looks like you can download it now.

http://channel9.msdn.com/showpost.aspx?postid=134912

http://msdn.microsoft.com/asp.net/re...p/default.aspx
Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: ewolfman | last post by:
Hi, I've read many posts in several news groups, but can't figure out how to publish my website. The specific error I'm getting (on the "successfully published website") is "Could not load the...
1
by: Bill Long | last post by:
I have a .NET 1.1 application (C#) that I converted to .NET 2.0... Conversion was pretty painless, code runs from the development environment no problem... but when I try and publish... It says...
9
by: Alex Greenberg | last post by:
I don't know, but I find the Publish Web Site feature very lacking and weak. I mean, why does the damn thing have to delete unrelated directories like /images /documents etc. This is so...
2
by: Todd | last post by:
My web site compiles fine. Tihs was a VS 2003 working application that was converted to VS 2005. When I try to publish to a directory I get a "Data at the root level is invalid." error in the...
10
by: WT | last post by:
Hello, I have been publishing my web site many times to the remote where resides my final web site. Everything was ok, but to-day, without any configuration change, vs doesn't copy final files...
1
by: kurt sune | last post by:
I am having trouble publishing a website for RELEASE. 1. web.config: <compilation defaultLanguage="vb" debug="false"> 2. in Configuration manager I set the configuration to Release for the...
6
by: Eric | last post by:
I have what is hopefully a quick question. I want to have a quick and easy method for deploying my website to our test environment. I need something to do nearly the same thing as the "Publish...
6
by: Anil Gupte/iCinema.com | last post by:
I seem to have read somewhere that one can do this by copying the code-behind page into the .aspx file. Is there an easier way? I tried to create a simple web page (I just need a quick...
3
by: Joseph Geretz | last post by:
Visual Studio 2005: I'm using Publish to 'mirror' my development site onto the staging site. It's working beautifully except for one annoyance; it keeps overwriting web.config on the staging box...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.