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 6 years ago.
Improve this question
I need to backup automatically daily my database in mysql and all image files on the server.
Is there a way to backup these things and send it on my email address ?
You can write a bash script that contains gzip, mysqldump and mail commands and have it run daily via cron job.
Related
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 5 years ago.
Improve this question
I am relatively new to Web development. I was reading about Remote files in PHP, and I came across this question at
Quara
My question is why would we require to use a second server in general?
Normally multiple servers used for high availability.
Using single server is a bottle nick. If it is goes down, your web will not be available.
Also multiple servers used to balance the load on each server.
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 9 years ago.
Improve this question
I am new to cron job like things. I want to send email after regular interval (say 15 minutes). How can do it with using cron job. Can anyone help me out?
Thank you.
Cron is a unix thing. You need to use windows scheduler - http://windows.microsoft.com/en-au/windows/schedule-task#1TC=windows-7
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 9 years ago.
Improve this question
I've been porting some code from java to php, and noticed that php doesn't have multithreading. I'm just curious as to how else would web services handle thousands/millions of requests ?
PHP doesn't care how many requests there are, it's the web server that has to handle/thread the request (instances).
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 9 years ago.
Improve this question
I just bought a domain with some space, but my provider not supporting nodejs.
I searched a lot, how could I build it on the server, but of course, to make, I need so privileges, so now I'm stuck here.
How could I use nodejs (or other server side Javascript engine) to run javascript?
I have FTP access to the server, but nothing more.
I believe you just can't.
If your provider doesn't give privileges to do it you are stuck :(
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 8 years ago.
Improve this question
i used
echo exec("whoami");
and i got
authority\system
and in my httpd.conf
it says
User daemon
Group daemon
why is it not running on the right user ?
also i checked and created the user and restarted apache but still it's running under system
User and Group are ignored on non-POSIX systems. You need to modify the relevant service entry instead under Windows.