Tagged Questions
The self-updating tag has no wiki summary.
14
votes
6answers
875 views
How to self-update PHP+MySQL CMS?
I'm writing a CMS on PHP+MySQL. I want it to be self-updatable (throw one click in admin panel). What are the best practices?
How to compare current version of cms and a version of the update ...
9
votes
8answers
5k views
Self deletable application in C# in one executable
Is it possible to make an application in C# that will be able to delete itself in some condition.
I need to write an updater for my application but I don't want the executable to be left after the ...
4
votes
1answer
135 views
Can an app written with .net Compact Framework restart itself?
Can an app written with .net Compact Framework restart itself?
What are some of the common patterns to achieve this? I would like to have a self-updating application that restarts itself if update ...
3
votes
4answers
486 views
Looking for API to SC.exe utility, and an advice on self-updating Windows Service
We have built a Windows Service that is running on client's machines, which occasionally downloads a newer version of itself, and then performs a self-update: installs a new service, starts it, stops ...
3
votes
5answers
132 views
Run application from documents instead of program files
I'm working on creating a self updating application and one issue I'm running into on Vista and Windows 7 is needing to have admin privileges in order to update the client. I've run into issues with ...
2
votes
4answers
1k views
Executing and then Deleting a DLL in c#
I'm creating a self updating app where I have the majority of the code in a seperate DLL. It's command line and will eventually be run on Mono. I'm just trying to get this code to work in C# on ...
1
vote
1answer
103 views
Updating a css in a running application
I would like to update a css (version 1.0) in a web application (running on Apache, and Tomcat). From within the application, I'd like the user to be able to:
Download a newer version of the css ...
1
vote
1answer
55 views
C# .net updates versus compile time debugging. How to stop the oddities?
Are we reduced to ClickOnce to manage our application state for our users?
We use our own installer and Visual Patch currently.
When our users update using our Visual Patch download (we can ...
1
vote
3answers
485 views
Is it possible to implement a self-updating ASP.NET web application?
Wordpress has the capability to update itself (on admin user's request).
Is it possible to implement something similar using ASP.NET?
I can see web.config and bin folder causing problems.
0
votes
2answers
49 views
how to write Java Swing self updater (non Java Web Start solution)?
check server for a directory containing updates.
download the jars to current application directory.
notify user to restart app.
My concern is with overwriting the old files while the java ...
0
votes
1answer
37 views
Android: In-App In-Place Updating
I have an Android app, where a part of the app is a list of data which is currently contained in a string-array (in an xml resource). I currently release updates every so often to the actual app, ...
0
votes
1answer
134 views
Bash script that updates self?
I'm writing a utility using Bash scripting and I'd like to include an update feature with it. The script currently follows Ruby's gem philosophy, eg one command with multiple subcommands:
gem help
...
0
votes
2answers
83 views
Using ajax to update content via mysql,
function sendValues() {
var str = $("#ryan_m").serialize();
var response = $('input[name=product[]]:checked').val();
$.ajax({
url: "/post.php?avoidcache=' + myTimestamp();",
data: {str}
...
0
votes
3answers
360 views
Android.. updating text?
I've been very confused about this recently and can't find an answer anywhere.
When programming for android, I want to update a textview every 10 seconds, but how would I go about that? I've seen ...
0
votes
2answers
44 views
How do I keep one column consistently updated?
another newbie mysql question
I have a faculty table, and each faculty has a certain number of students under him/her. So there is a 'current' column, which is the number of students currently under ...
0
votes
3answers
120 views
I am looking for information to make my windows form app self updating
I would like to make my windows form app self updating when it starts. Where can I find good information for that?
I am using Visual Studio 2008 VB.NET.
I like the click once approach. With this ...
0
votes
3answers
2k views
Updating time in iphone sdk
I'm using the code provided below to display time and date. can anyone help me with atuomatically changing the time by seconds and the date by the day?
NSDateFormatter *dateFormat = [[NSDateFormatter ...