how to convert drupal site to html files [closed] - html

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a site in drupal7 and i want to create offline package.
so - anybody know how to convert the pages in my site to html files?

Seems like you want a local, static copy of your website ?
you can copy it with tools such as http://www.httrack.com/ . Be aware that any dynamic content will become static, so many features will probably not work.

If you want to create a backup of the site, I'd suggest you should use the Backup and Migrate module to backup the database and Backup Migrate Files module to backup the files.
This would be better to make a backup of your remote site to local system as well.
But, if you require to export the content as HTML pages, you should try the HTML Export module, which does exactly that.

Related

How do I load my html code to a website, without using word press? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed last year.
Improve this question
I built a website from scratch using html and other code. I bought a domain and hoasting with dreamhoasting. I want to load it on my website database but here is my problem:
I don't want to use wordpress, I just want to just run the code as I typed it. Do I need some sort of platform like wordpress to run the files or can I just stick it right in root file in my directory? And how does it work if I update my code? Do I just have to update the page in the root folder? And if anyone knows what is the root folder called? I was looking at my database files and there is one file with my websites name on it with a bunch of Word Press files. I was thinking of just deleting all the WP files in that file and uploading my code files. What do you all think?
yeah, You can put that code on your website. But if that website has no backend then it will be a static website. You won't be able to add any functionality easily.
You can use FileZilla and of course put it in your root directory. You don't need to use WordPress for this. If you want to know how to use FileZilla you can search it out on YouTube or even it is available on their site.

Where are the actual .db files stored in wordpress [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I am trying to learn more about wordpress and am bothered with this question.
I hosted my site on bluehost and decided to make a backup. I made a copy of public_html and downloaded it, I was later told by the support that I also need to export the database. That got me thinking where the actual data is located, if not in the public_html directory, where are the actual files that contains all the tables etc?
I asked the support but didn't get a good answer. Surely, all the data must be stored in some files somewhere, so shouldn't I be able to find them, download them, and not have to use an interface like PhpMyAdmin?
On BlueHost ask them to give you an export of SQL File of your database.
If you go the management panel and find MySQL (Database Software) where WordPress database files are stored.
But its best to install plugins like Wordpress DB backup in your WordPress and then use that plugin to download a backup of the database file. That may be easier for you considering you are a non-technical user.

Minecraft server posting with html. Help, please [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am trying to create a Minecraft 24/7 vanilla server for free, but I can't seem to get html to run Minecraft_Server.jar (the jar file), located at https://s3.amazonaws.com/MinecraftDownload/launcher/minecraft_server.jar. I dont know the startup class, but I do know the download link. The jar file was made to save to and read from files on a computer, and is normally started by a .command. Any help?
I shall address the issues you are facing one at a time.
HTML alone cannot run a Java program. HTML can run an applet; this is how the Minecraft Demo works.
The minecraft_server.jar is not a Java applet. Therefore you cannot run it online using HTML.
The unmodded minecraft_server.jar is not designed to run from a BAT file (I think you mean BAT rather then a .command file).
If you are trying to administrate a Minecraft server online take a look at some online consoles such as McMyAdmin or SpaceBukkit. You can also find online hosting that provides these console with a quick Google.

Continuous Backup of Mediawiki [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am administrating mediawiki for my organisation. We use it as our Intranet site. It has accumulated a huge organisational knowledge base. I have make sure that mediawiki is always up and running. Knowledge base always backed up.
Is there a way to take continuous back of mediawiki files and databases? My mediawiki is hosted on LAMPP server with Debian OS.
I am trying to find a way to automate backup process.
It depends on what you mean by "continuous". If you want a copy of the database running that is always the same as the main database, you will need to set up "replication" - see http://dev.mysql.com/doc/refman/5.1/en/replication.html for how to do that.
If you want a database backup that is relatively current, then running mysqldump every hour or so is a pretty good solution.
You'll need to backup the files separately, because they are in your file system not the database. Look at running rsync every hour or so.
Why do you want a "continuous" backup and how would you use it? Do either of these approaches answer your question?

How to publish a web site via (linux) script [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm just finished with a nice HTML5+ JQM web site on my Ubuntu laptop.
A make script converts server side code to static HTML, optimizes images and compresses JTML, JavaScript and CSS.
I ask what's the method you'd suggest to upload it to my public server (I have an ftp access, no ssh).
It should be a strong, repeatable and flexible (remove deleted files on server, upload only changed files, for example?) solution, which should be automated.
This is a generic solution which you need to modify for your needs
ls your changed files and save in an array(? or may be a list)
connect to FTP
upload changed content
disconnect
Best would be to set up a versioning system that will cover the files deleted, modified etc. Set up GIT and use GIT commands to get a list of changed files and use command line FTP to upload files.