Here is what i did;
I made a wordpress website and i wanted to copy this to another site.
I made a backup of all the files and the database.
I changed the links to the new site.
Then i imported the database to the new site.
I installed wordpress on the new site.
But it seems that the new theme and database isnt showing.
Does anybody know what im doing wrong?
Thanks in advance
I did this just recently. I downloaded a plugin which allowed a full export of the wordpress site. I then installed a clean wordpress site on the new site and then imported the old data into the clean site usingthe import function in wordpress. It asked to map old user to new users and that was it - new site up and running. It seems this is built into WordPress 3.x
I think your problem was loading the database with the data and then installing wordpress. The way I described above took just a few minutes and was foolproof.
Related
The marketing manager of esper.io (built in gatsby) said that it's hard for them to do updates on the site (they need to contact the developer every time) so they're thinking about rebuilding the whole site in WebFlow or WordPress. The blog on site is headless WordPress.
I work mostly with WordPress and WebFlow and have zero experience with Gatsby or React.
I was wondering is there any simple way how to do updates on a Gatsby website so the marketing team can do it themselves? (they're non coders)
They love the headless WodPress blog because they're all familiar with WordPress and can write blog posts without coding.
I'll appreciate any tips or pointing in a direction.
Thank you, Josef
I assume you still have a kind of deployment-process... means if you change something at the source-code and upload to your git-repository, the page will be rebuild and deployed automatically.
So if you search for an nice & easy way to edit the content of your page, I recommend to have a look at TinaCMS
It's also optimized for gatsby and - if ones integrated in gatsby - it's very easy to edit the content of the Page.
I had a Joomla website and now I want to completely change it into WordPress.(cleaning the website and design a new website on that same URL)
But I have one question, as the website is working, many pages are indexed in google now how can I tell google that my website URLs has changed and doesn't show the broken old Joomla?
You need to redirect old URLs to new Wordpress.
so i recommend you to use this plugin (1+ million active installations)
https://wordpress.org/plugins/redirection/
Once it's installed, just copy your joomla urls inside and make the right redirection.
I'm working on a Joomla site. I have created some overrides for blog and single article, when I checked my site on local it displayed all things exactly as I want, but when I uploaded it to live some overrides for blog and single article were not showing as well as a plugin which I added on localhost. I cant understand the reason as I have checkede every thing on live, and it's working fine on local host.
NOTE: the site was already live. I added some new overrides for blog and single article. Before i uploaded new first I deleted all the existing code on live and cleared its DB, then i uploaded all new code and DB. Almost all the old things are working fine on live but not some new changes/overrides. I am using Joomla 3.5.
You have to clean your browser cache first.
Best is to install akeeba backup in localhost and then take backup and Restore in live server.
Clear your Joomla cache - it is most likely caching the old layouts, so you must clear it in order for it to display your overrides.
I've a copy of DotNetNuke website on my local machine in which I've added few pages and created new modules.
I've to move these new pages to production so have copied the pages to respective folders. I know there are few database entries that are also to be made on production database to recognize these pages and modules on production.
Please tell me how I can register these pages on production website
I searched on Google but may be I'm not getting the right keywords to search. Currently I've to restore my local db to production to run those pages. I'm using version 7 of DNN
This isn't something that DNN handles very well, publishing from a local environment to production.
The most common way (Besides backup/restore of the database) is to use page Templates. You can "Export" a page in DNN, that will generate an XML document with the modules and content referenced into the portals/#/ folder (where # is the portal id)
You can upload that file to your production site (same path) and then create a new page based on that page template.
Your question implies that you are creating .aspx files and copying those to the production server. That really isn't the way that DNN works, and you probably are creating a real mess.
How did you create the pages on your local site? Did you use the DNN functionality to create new pages, add modules to those pages, etc.? Or, did you do something else?
Use the built-in funtionality to create pages on your local installation and, as Chris
To add modules - Go to your web site in production, login as super user, and install the module, then go to the page in the web site and add it. The same as you would do with 3rd party module. This will properly add the info to db.
To add pages - You could do it within the code, using the
To create DNN page (the tab):
TabController tbc = new TabController();
//...populating the page's info
tbc.AddTab(destinationTabInfo);
To create ascx control as global (meaning doesn't belong to any module) ModuleControl.
var moduleControl = new ModuleControlInfo
{
... populate the fields
};
ModuleControlController.AddModuleControl(moduleControl);
I have a website live on the web. I've been working on the re-design for the site. I duplicated the entire site and database and worked on a test site. Now the test site is ready to go live. However, the current live site has been up for the last few weeks and content has been added as usual. How do I upload my new look for the site, with the changes I've made in the test database but at the same time not overwrite any content changes made in the current live database that were made over the past few weeks?
I want to keep the site content in the database but overwrite any module or theme data with the data from the test database.
My site is built on drupal
Thanks!
1) Upload new theme - this will apply themes changes and keep content in the live DB
2) If you have added any new content types, blocks, fields etc to your dev site then install the features modules. This will allow you to export your new features to a module, and then you can add this module to the live site to import your new features.
See this post for further discussion on the topic.
I used https://drupal.org/project/data_export_import it seems to be working well.