Questions tagged [updating]

Updating can refer to the modification of data or configuration by an application, process, or service, or can refer to the modification of software by a process.

1058 questions
2
votes
1 answer

BaseX: Updates are not written back

I am trying to run the following query in BaseX, let $c := doc('t.xq')//entry return (replace value of node $c/author with 'BaseX' ) The input file t.xq is Transform expression example BaseX Team
Ahmad
  • 8,811
  • 11
  • 76
  • 141
2
votes
1 answer

No pythonw in Python 3.4 OS X 10.10?

I am updating python on OS X 10.10 form the default installation 2.7 to the latest 3.4. I am following this tutorial to replace the python framework and update all the /usr/bin/by*** binaries. It all goes well until I notice that no pythonw binary…
Emerald Weapon
  • 2,392
  • 18
  • 29
2
votes
1 answer

Updating relation Model in Laravel

I'm new to Laravel 5. I viewed the tutorial "Laravel 5 Fundamentals" and I have an issue. Article model public function category() { return $this->belongsTo('App\Category'); } Category model public function article() { return…
Ihor Tkachuk
  • 1,088
  • 4
  • 15
  • 34
2
votes
2 answers

How to update files in PHP

I have some PHP function that requires the line number of a CSV file used as database. Once it has line, it navigates to the specific value that needs to be changed, changes it and rewrites the whole files. Here is my code:
Supreme Dolphin
  • 2,248
  • 1
  • 14
  • 23
2
votes
2 answers

How to have Android app check if latest version (as latest Google Play Store version)?

Is there a way to check the version number/build number of your app on the Google Play Store? Do the provide any API for this purpose? I have read most people just put a version number on the server and cross check that when necessary. But it would…
The Nomad
  • 7,155
  • 14
  • 65
  • 100
2
votes
0 answers

Remove url from text, MYSQL query

lets say I have a table which names is mytable and it only has one column, the content of each row is a text that may contain URL: Row 1 some text http://t.co/ibcvfpZFf4 Row 2 some text Row 3 some text http://t.co/exU5lmGrY9 some text 2…
Hosein Djadidi
  • 198
  • 1
  • 3
  • 13
2
votes
1 answer

pimcore: updating objects with localized fields

I have a weird problem when updating objects in pimcore. I've created a class containing some normal and also localized fields and then some objects from that class. It is possible to edit all objects directly via pimcore, but the only ones which…
Taraneh
  • 21
  • 2
2
votes
1 answer

how to update multiple based table from datagridview in wpf

public DataTable FillDataGrid() { string CmdString = string.Empty; using (SqlCeConnection con = new SqlCeConnection(ConString)) { CmdString = "SELECT categories.categories_id as ID, categories_description.categories_name as…
Striker
  • 948
  • 1
  • 13
  • 28
2
votes
3 answers

Prevent element from updating - JQuery

I select an element of the page: $mainSection = $('#main'); then I add more Elements via AJAX into the
element. Next time I call $mainSection, the newly added elements are also in it. But I don't want that. I would like that…
Simon S.
  • 563
  • 4
  • 21
2
votes
2 answers

Update all npm packages without package.json handy

I've been using angular yeoman for a while now and seen that these packages get updated quite frequently: For example these ones: npm install -g generator-webapp npm install -g generator-angular When I want to update them I just run the same…
Nikos
  • 7,295
  • 7
  • 52
  • 88
2
votes
1 answer

how to get image src to update from c# code, web or winform

I am pretty new to programming, and I am trying to make some useful programs to help my dad and I learn guitar. What I want to do is have a note name (an image file) show on the screen then play the note (midi) afterwards. (this is an exercise the…
Pride Grimm
  • 33
  • 1
  • 5
2
votes
1 answer

Android: locationManager requestSingleUpdate working on one device but not on the other

First of all: This is my first question on Stackoverflow so please tell me if i make any mistakes :) I want my Activity to get the users location everytime it is started. I don't need periodic updates so I try to use requestSingleUpdate. After…
2
votes
1 answer

Chrome/chromium application automatic restart after update

I have been using autoupdate ( http://developer.chrome.com/extensions/autoupdate ) with Chromium application and it seems to work great. However,I haven't been able to figure out how to automatically restart application after the update. The…
2
votes
3 answers

Updating a .Net Windows Service

Is there a more graceful way of updating a .Net Windows Service other than using InstallUtil to uninstall and re-install? Note - I will be doing this programmatically.
tier1
  • 6,303
  • 6
  • 44
  • 75
2
votes
2 answers

Updating Symfony 2.4 : "Rendering a fragment can only be done when handling a Request."

Since I migrated to Symfony 2.4, I'm getting the following error message : Rendering a fragment can only be done when handling a Request. It's happening because, on some pages, I'm rendering some templates with Twig inside some pages which are…
Bonswouar
  • 1,521
  • 2
  • 17
  • 37