Questions tagged [website-deployment]
34 questions
17
votes
5 answers
svn checkout and update without the .svn directory
I have a website under svn and I want to patch the live website with what's currently in the repository (i.e. effectively calling svn update on the live website), but I don't want .svn directories in every folder on the production website.
Is there…

Charles Ma
- 47,141
- 22
- 87
- 101
5
votes
3 answers
Git for Websites / post-receive / Separation of Test and Production Sites
I'm using Git to manage my website's source code and deployment, and currently have the test and live sites running on the same box. Following this resource http://toroid.org/ams/git-website-howto originally, I came up with the following…

Walt W
- 3,261
- 3
- 30
- 37
3
votes
2 answers
Error when deploying site of a maven multi module project with FTP
I have a multi module project. When I launch mvn site:deploy, the deployment of the base module works fine, but it fails to create the directory of the module sites on the FTP server:
[INFO] Error uploading site
Embedded error: Required directory:…

julien
- 898
- 3
- 17
- 32
3
votes
1 answer
Same background image gets displayed multiple times on the webpage
I've build a simple web page which includes a background image in the body tag and the background-size is set to cover in css file.When i resize my chrome window the original image gets displayed adjacent to same image and so on just like a…

xufor
- 79
- 2
- 8
2
votes
1 answer
"404 Not Found" on React website subfolders
I have a website at https://georgi.karapetrov.top/
Source code: https://github.com/GeorgiKarapetrov/georgi.karapetrov.top
The issue
The internal links to the different pages work. I can click on the "About" button in the top bar and the about page…

superAnnoyingUser
- 155
- 1
- 10
2
votes
4 answers
How to share session among Multiple Domains on single asp.net website?
I want to share session cookie among domains.
I have more than one domain: -
1. mydomain.com
2. mydomain.fr
3. mydomain.de
4. mydomain.da
...and many other language based
Now, I have single website deployed on a server. I want to share session…

Waqas Raja
- 10,802
- 4
- 33
- 38
1
vote
1 answer
Serving static files with digitalocean
I am using DigitalOcean to serve my static files for my website. I have used Django and Postgres for database. I deployed my site with a DigitalOcean droplet, uploaded my static files in the DigitalOcean Spaces (I verified that they are indeed…

Alexander Chrome
- 63
- 1
- 5
1
vote
2 answers
Deploy a website in one country
I have a website and i need to deploy it in a single country for example Lebanon. In other words, any request that comes to the website from any other country should not be responded to.
I think I may use the IP address of the request and know from…

Ghyath Serhal
- 7,466
- 6
- 44
- 60
1
vote
3 answers
Alias Multiple Commands in Linux
I am managing a website using git. One of the requirements for the git repository is that bare = true. It uses a post-receive hook to manage pushes from my local computer. The problem is that sometimes I would like to make changes to a WordPress…

theEpsilon
- 1,800
- 17
- 30
1
vote
1 answer
Website changes not reflected
After changing something in my website and uploading to the server, I don't see the changes in my browser upon reload. The website loads from cache. It gets reflected after I refresh the page twice or thrice.
I need help in figuring out what's…

Monicka Akilan
- 1,501
- 5
- 19
- 42
1
vote
1 answer
Angular - ngRepeat Order before Filter (pagination + ordering)
I have an ngRepeat ng-repeat="row in rows | orderBy:tableOrdering | filter:currentPage"
orderBy:tableOrdering will return integers from 1 to 1000 and order in that fashion.
filter:currentPage will return the first page of results from $scope.rows…

KernelCurry
- 1,297
- 1
- 13
- 31
1
vote
1 answer
git checkout -f results in modified, unstaged files
For my website I have a bare repository (where I push to) and a clone with working directory which serves as document root.
In the bare repository I've setup a post-receive hook to auto-update the…

Blizz
- 8,082
- 2
- 33
- 53
0
votes
0 answers
How can I pass a same tracking url across all pages?
First of all, I'm new to development.
Here's the tracking link -
https://www.example.com?soldPrice=[price]&someVariable=[subId]&TrasactionId=[subId2]
It works on first pages. But as soon as the user click some other page or button the tracking URL…

Sharath
- 1
0
votes
1 answer
Calling Commands From Other Commands, and answer prompts with yes
I want to create a console command that help me through a site deployment by calling other Artisan commands (a migration, followed by a series of functions that will fill the table with data.)
Artisan::call('migrate', ['--path' =>…

Hoyt Jolly
- 11
- 3
0
votes
0 answers
Why the webpages of my website are not appearing on deployment?
I am deploying my react website through Github pages. Upon clicking on the deployed URL I am getting the following content (similar to github description of commands):
Can someone point out where I am going wrong?
package.json:
{
"homepage":…

Vatsal A Mehta
- 392
- 2
- 15