Magento 1.9.3 CE, Staging & Live Sites behave differentlySetting up Magento Staging Environment with Restricted AccessHow to work with Magento staging env?Magento2 moving from staging to live siteStaging Shopsite live on active shop. Database?Magento 2 compile less files on staging serverHow to install grunt on staging server.?Disable payment failed email in Magento 1.9.3Magento 2: limit staging emails to dev onlyMagento 2 module not working on liveMagento 1.9.3 Not able to Add or Edit Product
Count number of occurences of particular numbers in list
Is the Folding Boat truly seaworthy?
Who is the god Ao?
Do I have to buy filters to control contrast in multigrade papers?
What is an air conditioner compressor hard start kit and how does it work?
What are the examples (applications) of the MIPs in which the objective function has nonzero coefficients for only continuous variables?
What is a Casino Word™?
Do any languages mention the top limit of a range first?
Does bottle color affect mold growth?
Will a paper be retracted if a flaw in released software code invalidates its central idea?
Is this cheap "air conditioner" able to cool a room?
If someone else uploads my GPL'd code to Github without my permission, do they not put it at risk of being stolen by Microsoft?
Colleagues speaking another language and it impacts work
Why is there a need to prevent a racist, or homophobic, etc. vendor from discriminating who they sell to?
Game schedule where each player meets only once
Decode a variable-length quantity
How do these cubesats' whip antennas work?
How to realistically deal with a shield user?
Does a 4 bladed prop have almost twice the thrust of a 2 bladed prop?
Can ads on a page read my password?
Does the length of a password for Wi-Fi affect speed?
Does the Voyager team use a wrapper (Fortran(77?) to Python) to transmit current commands?
Why does putting a dot after the URL remove login information?
Are children a reason to be rejected for a job?
Magento 1.9.3 CE, Staging & Live Sites behave differently
Setting up Magento Staging Environment with Restricted AccessHow to work with Magento staging env?Magento2 moving from staging to live siteStaging Shopsite live on active shop. Database?Magento 2 compile less files on staging serverHow to install grunt on staging server.?Disable payment failed email in Magento 1.9.3Magento 2: limit staging emails to dev onlyMagento 2 module not working on liveMagento 1.9.3 Not able to Add or Edit Product
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Lately, we found our Staging Site and Live Site behave differently in 2 situations:
1). we found Live Site to have 500 error timeout while Staging Site is normal;
2). we found update on CSS file in staging site reflected in frontend, while Live Site do not reflect the changes.
how to check the code difference, and how to sync the Staging site code to Live site?
THANKS FOR SHINING SOME LIGHT ! =:>
magento1.9.3 staging
add a comment |
Lately, we found our Staging Site and Live Site behave differently in 2 situations:
1). we found Live Site to have 500 error timeout while Staging Site is normal;
2). we found update on CSS file in staging site reflected in frontend, while Live Site do not reflect the changes.
how to check the code difference, and how to sync the Staging site code to Live site?
THANKS FOR SHINING SOME LIGHT ! =:>
magento1.9.3 staging
add a comment |
Lately, we found our Staging Site and Live Site behave differently in 2 situations:
1). we found Live Site to have 500 error timeout while Staging Site is normal;
2). we found update on CSS file in staging site reflected in frontend, while Live Site do not reflect the changes.
how to check the code difference, and how to sync the Staging site code to Live site?
THANKS FOR SHINING SOME LIGHT ! =:>
magento1.9.3 staging
Lately, we found our Staging Site and Live Site behave differently in 2 situations:
1). we found Live Site to have 500 error timeout while Staging Site is normal;
2). we found update on CSS file in staging site reflected in frontend, while Live Site do not reflect the changes.
how to check the code difference, and how to sync the Staging site code to Live site?
THANKS FOR SHINING SOME LIGHT ! =:>
magento1.9.3 staging
magento1.9.3 staging
edited Jul 29 at 4:47
Mohit Rane
1,20918 bronze badges
1,20918 bronze badges
asked Jul 28 at 15:45
gcplaugcplau
11 bronze badge
11 bronze badge
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
you have to use github to create repository and track your code changes. repository for live server, one more for staging, and some branches for patches and fixes.
but you can check for example with md5sum
:
live server:
find . -name "*.php" -type f | xargs md5sum > checksum.md5
staging server:
md5sum -c checksum.md5 | grep -v OK
also rsync
helps too, always use -n
to dry-run
probably you have some webstack issues too.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f283564%2fmagento-1-9-3-ce-staging-live-sites-behave-differently%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
you have to use github to create repository and track your code changes. repository for live server, one more for staging, and some branches for patches and fixes.
but you can check for example with md5sum
:
live server:
find . -name "*.php" -type f | xargs md5sum > checksum.md5
staging server:
md5sum -c checksum.md5 | grep -v OK
also rsync
helps too, always use -n
to dry-run
probably you have some webstack issues too.
add a comment |
you have to use github to create repository and track your code changes. repository for live server, one more for staging, and some branches for patches and fixes.
but you can check for example with md5sum
:
live server:
find . -name "*.php" -type f | xargs md5sum > checksum.md5
staging server:
md5sum -c checksum.md5 | grep -v OK
also rsync
helps too, always use -n
to dry-run
probably you have some webstack issues too.
add a comment |
you have to use github to create repository and track your code changes. repository for live server, one more for staging, and some branches for patches and fixes.
but you can check for example with md5sum
:
live server:
find . -name "*.php" -type f | xargs md5sum > checksum.md5
staging server:
md5sum -c checksum.md5 | grep -v OK
also rsync
helps too, always use -n
to dry-run
probably you have some webstack issues too.
you have to use github to create repository and track your code changes. repository for live server, one more for staging, and some branches for patches and fixes.
but you can check for example with md5sum
:
live server:
find . -name "*.php" -type f | xargs md5sum > checksum.md5
staging server:
md5sum -c checksum.md5 | grep -v OK
also rsync
helps too, always use -n
to dry-run
probably you have some webstack issues too.
answered Jul 28 at 16:46
MagenXMagenX
2,67010 silver badges27 bronze badges
2,67010 silver badges27 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f283564%2fmagento-1-9-3-ce-staging-live-sites-behave-differently%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown