[SOLVED] Script to automatically update source

Hello,i need a script to use in a pkgbuild that can
1)check this website http://fsinapsi.altervista.org/code/tre … 091228.zip for new version of the archive.
2)change the pkgver if a new version is found
3)download the archive
Maybe it's something like this (taken from the chromium pkgbuild),but i don't know how i can modify it .. thank you.
_bldname=chrome-linux.zip
_bldroot=http://build.chromium.org/buildbot/snapshots/${_bldarch}
source=('LICENSE.txt' 'chrome-wrapper.patch' "${_realname}.1.gz" "${_realname}.default"
"${_realname}.desktop" "${_realname}.sh")
noextract=(${_realname}.1.gz)
# trick re-determining the build revision and, or entertain the hidden
# makepkg option --forcever, huh
if [ -z "$FORCE_VER" ]; then
msg "Determining latest build revision..."
newpkgver="$(wget -qO - ${_bldroot}/LATEST)"
if [ -n "$newpkgver" -a "$newpkgver" != "$pkgver" ]; then
msg2 "Version found: %s" "$newpkgver"
FORCE_VER="$newpkgver"
else
FORCE_VER="$pkgver"
fi
fi
if [ "$FORCE_VER" = "LATEST" -a "$SOURCEONLY" -eq 0 ]; then
error "Plz omit '--forcever LATEST'; I'll auto-detect the LATEST ;)"
exit 1
elif [ "$FORCE_VER" != "$pkgver" ]; then
rm -f "$SRCDEST/${_bldname}"
devel_update
fi
build() {
if [ ! -r "$srcdir/${_bldname}" ]; then
msg2 "Downloading the latest '$CARCH/$pkgver/${_bldname}'..."
wget --no-cache -c "${_bldroot}/$pkgver/${_bldname}" \
-O "$SRCDEST/${_bldname}" || return $?
ln -fs "$SRCDEST/${_bldname}" "$srcdir/${_bldname}" || return $?
fi
Last edited by Xemertix (2010-01-01 18:30:04)

Xemertix wrote:
tomk wrote:This is PKGBUILD abuse IMO.
Yes i know,but this archive is updated frequently and generally there aren't major changes in the new versions,so a pkgbuild with a similar script may work well for some time...
So would an external script which automatically updates the PKGBUILD on your machine and then uploads it to the AUR? Simplest I can think of would involve bash, wget/curl, and a bit of sed.
You could even run every X hours if you feel like it.

Similar Messages

  • Using a script to automate UNC definition updates for FEP 2010

    Hi all,
    I tested the script mentioned in this article
    http://blogs.technet.com/b/clientsecurity/archive/2010/09/16/using-a-script-to-automate-unc-definition-updates.aspx with no success. I am getting the following error:
    Line: 11
    Char: 5
    Error: The operation timed out
    Code: 80072EE2
    Source: WinHttp.WinHttpRequest
    the script content is as follows:
    strMSEx86URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x86"
    strMSEx86Location = "D:\defs\Updates\x86\mpam-fe.exe" 
    strNISX86URL = "http://go.microsoft.com/fwlink/?LinkId=197095" 
    strNISX86Location = "D:\defs\Updates\x86\nis_full.exe" 
    strMSEx64URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x64" 
    strMSEx64Location = "D:\defs\Updates\x64\mpam-fe.exe" 
    strNISX64URL = "http://go.microsoft.com/fwlink/?LinkId=197094" 
    strNISX64Location = "D:\defs\Updates\x64\nis_full.exe"
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strMSEx86URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then
    Set objADOStream = CreateObject("ADODB.Stream")
       objADOStream.Open
      objADOStream.Type = 1 'adTypeBinary
    objADOStream.Write objWINHTTP.ResponseBody
    objADOStream.Position = 0 'Set the stream position to the Start
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strMSEx86Location) Then objFSO.DeleteFile strMSEx86Location
    objADOStream.SaveToFile strMSEx86Location 
    objADOStream.Close
    end if
    Anybody can help?

    This is the script that I use and it works:
    strMSEx86URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x86" 
    strMSEx86Location = "C:\defs\Updates\x86\mpam-fe.exe" 
    strNISX86URL = "http://download.microsoft.com/download/DefinitionUpdates/x86/nis_full.exe" 
    strNISX86Location = "C:\defs\Updates\x86\nis_full.exe" 
    strMSEx64URL = "http://go.microsoft.com/fwlink/?LinkID=121721&clcid=0x409&arch=x64" 
    strMSEx64Location = "C:\defs\Updates\x64\mpam-fe.exe" 
    strNISX64URL = "http://download.microsoft.com/download/DefinitionUpdates/amd64/nis_full.exe" 
    strNISX64Location = "C:\defs\Updates\x64\nis_full.exe"
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strMSEx86URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strMSEx86Location) Then objFSO.DeleteFile(strMSEx86Location)
    objADOStream.SaveToFile strMSEx86Location 
    objADOStream.Close
    End IF
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strNISx86URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strNISx86Location) Then objFSO.DeleteFile (strNISx86Location)
    objADOStream.SaveToFile strNISx86Location 
    objADOStream.Close
    END IF
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strNISx64URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strNISx64Location) Then objFSO.DeleteFile (strNISx64Location)
    objADOStream.SaveToFile strNISx64Location 
    objADOStream.Close
    END IF
    Set objWINHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")  
        objWINHTTP.open "GET", strMSEx64URL, false  
        objWINHTTP.send
    If objWINHTTP.Status = 200 Then 
    Set objADOStream = CreateObject("ADODB.Stream") 
        objADOStream.Open 
        objADOStream.Type = 1 'adTypeBinary 
        objADOStream.Write objWINHTTP.ResponseBody 
        objADOStream.Position = 0 'Set the stream position to
    Set objFSO = Createobject("Scripting.FileSystemObject") 
        'check if file exists if so delete 
        If objFSO.Fileexists(strMSEx64Location) Then objFSO.DeleteFile(strMSEx64Location)
    objADOStream.SaveToFile strMSEx64Location 
    objADOStream.Close
    END IF

  • Compliance Settings Adobe flash Player disable Automatic Updates Powershell Scripts fail

    Hello,
    I have setup compliance to check and remediate if Adobe flash Player automatic updates is enabled by using PowerShell scripts.
    If I run the scripts below manually on my pc they work fine, but if I run in sccm 2012 compliance I get:
    Setting Discovery Error
    0x87d00327
    Script is not signed
    CCM
    I tried contacting the person that created the scripts, but didn't get a response.
    Discovery Script
    Set-ExecutionPolicy Unrestricted -force
    <#
      This script will check if automatic updates is disabled and return a Compliant/Non-Compliant string.
      Created:     04.08.2014
      Version:     1.0
      Author:      Odd-Magne Kristoffersen
      Homepage:    https://sccmguru.wordpress.com/
      References:
      - Configure auto-update notification Flash Player
    http://helpx.adobe.com/flash-player/kb/administration-configure-auto-update-notification.html
      - Adobe Flash Player Administration Guide for Flash Player 14
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_14_0_admin_guide.pdf
      - Adobe Flash Player Administration Guide for Microsoft Windows 8
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_13_0_admin_guide.pdf
    #>
    $OSArchitecture = Get-WmiObject -Class Win32_OperatingSystem | Select-Object OSArchitecture
    If($OSArchitecture.OSArchitecture -ne "32-bit")
        $CFGExists = Test-Path -Path "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    else
        $CFGExists = Test-Path -Path "$Env:WinDir\System32\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\System32\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    Remediation Script
    Set-ExecutionPolicy Unrestricted -force
    <#
      This script will check if automatic updates is disabled and return a Compliant/Non-Compliant string.
      Created:     04.08.2014
      Version:     1.0
      Author:      Odd-Magne Kristoffersen
      Homepage:    https://sccmguru.wordpress.com/
      References:
      - Configure auto-update notification Flash Player
    http://helpx.adobe.com/flash-player/kb/administration-configure-auto-update-notification.html
      - Adobe Flash Player Administration Guide for Flash Player 14
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_14_0_admin_guide.pdf
      - Adobe Flash Player Administration Guide for Microsoft Windows 8
    http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/devnet/flashplayer/pdfs/flash_player_13_0_admin_guide.pdf
    #>
    $OSArchitecture = Get-WmiObject -Class Win32_OperatingSystem | Select-Object OSArchitecture
    If($OSArchitecture.OSArchitecture -ne "32-bit")
        $CFGExists = Test-Path -Path "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\SysWow64\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    else
        $CFGExists = Test-Path -Path "$Env:WinDir\System32\Macromed\Flash\mms.cfg"
             if($CFGExists -eq $True)
             {$UpdateCheck = Select-String "$Env:WinDir\System32\Macromed\Flash\mms.cfg" -pattern "AutoUpdateDisable=1" | Select-Object Line}
                if($UpdateCheck.Line -eq 'AutoUpdateDisable=1') {Write-Host 'Compliant'}
                else {Write-Host 'Non-Compliant'}
    Thanks,
    Mark

    Hi Jeff,
    You were correct, Default client settings was set to All signed and once I set to bypass, PowerShell Scripts executed.  But now I am getting:    If I run them both from PowerShell, they work fine. Thanks again for your help, Mark
    Error Type
    Error Code
    Error Description
    Error Source
     Enforcement Error
    0x87d00329
    Application requirement evaluation or detection failed
    CCM

  • Automatic Deployed Updates Source Cleanup

    I recently set up an automatic deployment rule for the scep definition updates. It works like a charm, new update are being downloaded, and old updates are beeing superseeded and at last expired.
    But, the source folder, where my software update deployment package lies is just getting bigger and bigger. SCCM obviously don't distribute the expired updates to the DP anymore but does not cleanup the source folder.
    Is there a mechanism which will cleanup my source folder or do i need to write a script for that? I also run the WSUS Cleanup Wizard, but it also won't cleanup my update source folder.
    We are using SCCM 2012 SP1 CU3
    Thanks in advance..

    You should remove the expired updates from your software update Groups. That way the source and the DP will be "cleaned up"
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • If firefox automatically updates my computer past 3.6 I'm inundated with Script Freezes..how do I stop new automatic updates?

    Everytime I'm automatically updated past 3.6 my computer is inundated with Script Freezes..especially on the email page of gmail.
    This has happened many many times. As far as I can determine these Script Freezes (Says: A script is attempting to write on this page.."Continue"..Stop Script etc) are coming from Internet Explorer (I'm not sure of this) and it's tricky to delete any elements of Internet Explorer. But at any rate my computer freezes up until the Script problem is settled..I check the don't ask me again block..but it does no good.
    My real question is: Since things work fine in 3.6...how can I avoid any automatic updates?
    Also, why isn't there a Timer Window (or a timer bar)for Firefox?...sometimes I have to wait 5 minutes for it to load! If there was a timer at least I'd know that something is happening and I'd be willing to wait. When it does take forever to load..it seems to help if I delete all Prefetch and temporary files.
    Is there a safe way of turning off Internet Explorer temporarily?
    Thanks for your help
    Matthew
    [email protected]

    I tried this today, and it is working now:
    Click Firefox > Options > Options > Advanced ... then Uncheck the option "Use hardware acceleration when available"

  • [SOLVED] Best practice on updating git-sourced packages?

    So quick question. Im maintaining an AUR package that grabs sources from git. How should I update the package? Will the package be automatically updated when the git repo has new commits, or do I have to manually increment the pkgrel variable in the PKGBUILD or is there something else I should be doing?
    Cheers!
    Last edited by Zygote (2014-04-03 07:04:44)

    Zygote wrote:Im maintaining an AUR package that grabs sources from git. How should I update the package?
    As a maintainer, you shouldn't "update" anything. As long as the PKGBUILD file successfully builds the package then it's good!
    Will the package be automatically updated when the git repo has new commits
    No, it will not. There is nothing automatic about the AUR.
    do I have to manually increment the pkgrel variable in the PKGBUILD or is there something else I should be doing?
    Updating a package that relies on git is the responsibility of the end user.
    As an end user, it's my responsibility to read the project's commit messages and mailing lists and bug reports, decide that the software is stable, and when I have enough time, run "makepkg" (or an AUR helper) to create a fresh new package based on the latest source code from the git repository.

  • How to automatically update Smart LINKED Object

    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    Hi.
    This is my first post here, I'm French, so excuse any English mistake i may do.
    I'm not an artist / designer / ..., still new about using image software editing like photoshop.
    So i downloaded Photoshop CC to try it because i wanted to do something on my spare time.
    I want to render digitaly a card collection based on a online Collectible Card Game (Duel of champions if you wanna know).
    For this I downloaded their card art from their site.
    Then i want to add several effect / filter to render them nicely.
    So i read and watch many tutorial in this purpose.
    I ended with a good result for 1 card.
    Here is an example :
    So what i did :
    I get a source card art image, adding its red border, embossed it to get relief, adding a gloss effect in 3 different layers (the card art, the border and the gloss effect). Than i duplicate all this layers, swap them vertically and moved down to get a reflection.
    I added a gradient to this new group of layers to have a nice fading effect to the reflection.
    As I do not want to redo all the process again and again if I change main the source card Art, I want the reflexion to automatically update.
    This was done using Smart object, both main source card Art and the (vertically swapped) reflexion card art using the same object storing my different main source card art.
    So when i change in this object the main source card art used, it automatically change both the rendered card and its corresponding reflexion.
    And then i Added a displacement filter to simulate a water reflection.
    And the first problem (solved by now) occurred :
    If i want to apply a filter to the group of layers corresponding to the rendered reflexion card, Photoshop have to convert and merged the whole group of layers into another new smart object and then apply a smart filter onto it. That worked but i lost the auto updating of the reflexion as the previous conversion have made Photoshop create in fact a whole new duplicated object storing a my different main source art.
    So i partially resolved This by using Smart LINKED object instead of Smart object. I say partially because it is not really fully automated anymore.
    Now if I change the main Source card Art to render a new one, I have to "manually" save file / update smart object to get the reflection updated.
    I kinda accelerate this using a action performing a batch of saves to get a "save all" options (that clearly miss in photoshop). But for this i still have to open all my smarted linked object in order to apply the "Save All" batch.
    But know I want to generalize the process to cards left, and render my whole card collection.
    So i created a template based on what i've done so far using in this template Smart LINKED Object for the Main source card art and the reflected one. By the Way I exported the Reflection group in a PSD file, and refered to it as another Smart LINKED Object in my template. Doing so i'm sure Photoshop no more use a temporary PSB object correspond to the converted / merged reflexion Smart Object (remember : created in order to apply a smart Filter on it).
    So what Happen now ?
    I create a new testing psd file in witch i embed several new smart objects each one is an occurence to my template. Here i have to used smart Object and NOT smart LINKED Object because if so i'll always end up with the same rendered card several times. I have to get Phososhop create it own temporary duplicated object so a modification to one don't affect all the others after "Save All" batch on the corresponding working card.
    So with what I have now, if I want to change 1 of the rendered card, i go its corresponding (duplicated) template object and from there i access again my LINKED object storing all my main source card Art.
    I change to what source card art I want, and I have to open the reflection smart LINKED Object too in order to apply the "SAve All" batch.
    Here is the "fun" (issue) thing : I have to apply the batch 3 time in a row to have the rendered card changed in my main testing psd file. I suppose saving 3 time time propagated the change along the Smart LINKED Object chain.
    AND I have to make sure ONLY the corresponding smart (LINKED) Object file are opened before. If another file from a different rendered card is opened too the change will also be propagated to it and so having a duplicated rendered card. (I only want each card rendered once, but using the same template to avoid repetitive work).
    So I explained in detail, but maybe not clearly, my situation and the step i went through.
    TLDR
    To summarize : I have a collections of Card art (jpeg).
    I created a Template applying effect to render 1 card.
    I created another template appliying same effect to render 1 REFLECTED card.
    In both i use the same Smart LINKED Object that Store my collection on Card Art.
    I make another Smart LINKED Object in the first template that reference the second one.
    So with my first template I can update the rendered card and its rendered reflexion after changing the main source card art  in the subsequent smart LINKED Object that store my whole cards art. I have to had all corresponding Smart LINKED Object file OPENED and save them all to have th updated result.
    So not really automatic.
    Then I want to render my whole card collection with effect and reflexion.
    I create in my project a duplicate of my first template for each card to be rendered.
    Then I have to open ONLY all subsequent corresponding Smart LINKED(or not) Object file of current working rendered card and change the main source card art, save all the file (several time to propagate change) to properlly update the current rendered card.
    I have to do this for EACH of my duplicated template in order to render EACH of my cards.
    Definitively  not automatic process, and prone to errors.
    Do you know a way to fully automatically render my card collection ? The only thing I want to do is chose one time the main source card art for each rendered card.
    Finally another way to explain this issue and maybe get an answer is to instead explain simply what I want to do :
    I have a collection of (jpeg) card art from an online card game.
    I want to render them all with effect (gloss, emboss border, faded and water filtered reflection).
    I want to do this automatically.
    The only thing i manually want to do is chose the card art to be rendered for each of the card i want to render in my collection.
    Here is an image of what i want based on what i've, not automatically, done so far :
    Thanks for any help from photophop professional here.

    Hi,
    The delta load does not work for product categories but only products.So to bring in the new product categories into SRM you will need to start the load of the object DNL_CUST_PROD1 again.
    The CRM middleware allows the following two methods for replication.
    -Initial loads:
    Launched manually (R3AS), the objects (customizing or business) are replicated between SRM and R/3, according to the filters you've put on the object (R3AC1 for Business objects like MATERIAL, R3AC3 for customizing objects like DNL_CUST_PROD0 and 1).
    -Delta loads:
    This option is only possible for Business objects, which is the case of MATERIAL.
    With this option a daemon is launched between the 2 servers. Every modification made on an object on SRM or R/3 is transfered as soon as this object is contained in the filter retrictions (creation and/or modification). this is done through transaction R3AC4.
    Also refer the foll thread:
    Material group from R/3 to COMM_CATEGORY (SRM)
    Related notes : OSS notes 872819 and 720819.
    BR,
    Disha.
    DO  reward points for helpful answers.

  • Xoom Market Your Client is out of date. it will be automatically updated shortly.

    When I click on the Market icon i get Your Client is out of date. it will be automatically updated shortly. I have had the Xoom since yesterday and registered it right away and it has been connected since then. Anyone have an idea how to solve this or how long "shortly" is?

    FWIW, I have been using the Market app every day since 2/28 with no problems at all. I never saw the message about an update being available. Application info on Market says I have version 1.0.16.  I don't know if that is the current version or not. Didn't find information on Market app software version at Market website or Android developer site. 
    Now there is one setting that I changed the first day I had the Xoom. I wanted to install the "Help Center" app I Googled up on Motorola's website, but by default the Xoom only allows installation of apps from the Market. So I went into "Settings" | "Applications" and checked "Unknown sources" in order to "Allow installation of non-Market applications".  I do not know if having this setting checked made it easier for some other service to update the Market app or not, but it is a plausible theory, since there may have been a problem with getting Market to update itself "in band" so to speak, since the Xoom was set to only allow installations from Market. Kind of a chicken-or-egg, pull yourself up by your own bootstraps kind of problem.

  • Automatic Update not updating

    When I installed Flash Player 11.2.202.228, I selected the "Install updates automatically" option, fully expecting that this would install updates automatically.
    Today, I decided to check the status of my plugins on the Mozilla Plugin Check site. "Potentially vulnerable plugins: Shockwave Flash: Outdated version". Looking at the download page, I find that the latest version is 11.2.202.233, while I still have 228 installed.
    OK, maybe the browser needs to be restarted to pick up the updates. Nope - restarting Firefox makes no difference.
    Maybe I need to manually run the automatic update service? Nope - it starts and stops immediately without downloading any updates.
    Maybe I need to hack the registry to force an update? Nope - deleting the HKLM\Software\SysWOW64\Macromedia\FlashPlayer\LastUpdateCheck entry and running the automatic update service just recreates the entry with a new value. No new version of Flash.
    So what's the point in yet another Adobe automatic update service that doesn't update anything, let alone automatically???

    OK, I'm finally up to date. I had to manually run the updater three times: the first time, it updated the ActiveX files; the second time, it updated the plugin files, but uninstalled the plugin from Firefox; the third time, it reinstalled the plugin.
    On an unrelated note, your forum is now unusable in Firefox due to script errors:
    Error: missing ) after argument list
    Source File: http://forums.adobe.com/thread/989441
    Line: 26, Column: 16
    Error: containerType is not defined
    Source File: http://forums.adobe.com/thread/989441
    Line: 293
    Error: uncaught exception: [Exception... "Component returned failure code: 0x805e0006 [nsIXMLHttpRequest.open]"  nsresult: "0x805e0006 (<unknown>)"  location: "JS frame :: http://forums.adobe.com/4.5.6/resources/scripts/gen/220b1b06a29f901e1d24252ac800883e.js :: <TOP_LEVEL> :: line 23"  data: no]

  • Automatically updating files on local testing Server

    I'm using EasyPHP-5.3.5.0 as a testing server on my local machine (I've use EasyPHP for several years). I set up the Site Definition in DW8 using the testing server root folder (www) as the development area; however, this caused problems when I attempted to upload from within DW to the Remote (production) server.  I then modified the Site Definition to use a local folder. other then the Testing Server folder, for development which solved the upload problem.  Then in the Site Definition I setup the Testing Server using the "PHP MySQL" model with "Local/Network" access. The Testing Server folder was set to "C:\Program Files\EasyPHP-5.3.5.0\" and the "Refresh Testing file list automatically" box was checked.  The URL prefex was set to "http://127.0.0.1:8888/" as defined in the EasyPHP instructions.  My problem is that Dreamweaver is not updating the files on the testing server when I save a file in the development folder. The development folder and the Testing Server reside on the same computer. If I copy and paste a file to the testing server everything works fine.  I would like the testing server files to be automatically updated when I save a file in the development folder which is what the Site Definition seems to indicate should happen.  Any thoughts on what the problem is and how to fix it would be appreciated.

    > UPS tools that will only accept POST data coming from an
    https page
    Oh - I see. I think this will be hard to do. You'd need to
    get a local
    certificate and all - not sure how to go about that....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "(_seb_)" <[email protected]> wrote in message
    news:ev39uo$pm3$[email protected]..
    > Murray *ACE* wrote:
    >> Why do you want to do this?
    >>
    >
    > to test locally?... I've been able to test everything
    locally so far on my
    > virtual testing server, and thought it'd be nice if I
    could test the
    > shopping cart locally as well. But it uses third party
    UPS tools that will
    > only accept POST data coming from an https page.
    > And yes, I'm pretty sure it's a stupid idea... But as I
    said, maybe
    > there's a trick I'm not aware of...
    >
    > --
    > seb ( [email protected])
    >
    http://webtrans1.com | high-end web
    design
    >
    > An Ingenious WebSite Builder:
    http://sitelander.com

  • Firefox did an automatic update to 6.01, and now my middle mouse button is not working in the browser. It doesn't close tabs, it doesn't open new tabs by middle clicking a link, it doesn't allow me to middle click to scroll the page...

    Firefox did an automatic update to 6.01, and now my middle mouse button is not working in the browser. It doesn't close tabs, it doesn't open new tabs by middle clicking a link, it doesn't allow me to middle click to scroll the page..

    [BUG FIXED, see "EDIT 2" at the end of my post]
    I'm on Firefox 3.6.21, and I got this problem today after a Greasemonkey update (To version 0.9.10, apparently).
    Disabling Greasemonkey solved the problem, and re-enabling it reproduced the problem (middle-clicking links to open in new tab did not work, merely highlighted the link).
    I should also note that while Greasemonkey was enabled and the bug was affecting me, Ctrl+Click to open links in new tabs was also broken.
    I hope this helps!
    EDIT: It appears this is a known incompatibility/conflict bug between current versions of Greasemonkey and Tab Mix Plus. Read more here:
    https://github.com/greasemonkey/greasemonkey/issues/1406
    EDIT 2: GREASEMONKEY HAS NOW BEEN UPDATED with a workaround to fix the problem. Go to https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/versions/ to install the update manually. It hasn't been reviewed by Mozilla yet, so it won't be an automatic update for another day or two. All credit to "cannonfodder" below for noticing this; please mark his post as helpful!

  • Since automatic update to safari 5.1 it doesnt open any websites anymore. i'm using win7 64bit as operating system. how could i get safari 5.1 to work correctly or downgrade it to earlier version?

    i guess i said all in the topic:
    had an automatic update to safari 5.1, since than it doesn't work anymore, can't open any website.
    i'm using win7 64bit as OS.
    does someone know how to get safari 5.1 to work at win7/64bit
    or how can i downgrade to safari 5.0 again (if i try to download it somewhere, it always switches automatically to safari 5.1)
    many thanks for ur help,
    rainer neumüller

    isn't there any apple admin who knows about this problem and knows how to solve it? i found several post in other fori who had the same problem, none was answered sufficiantly.
    plz give me a chance to use safari again!

  • Office 365 x64 Click-to-Run Not Automatically Updating from Network Share

    We are piloting Office 365 x64 and pointing the clients to a network share (see config file below) for updates.  When we subsequently download the updates to the share the clients will not automatically install them.  If we manually do so from
    within an app (File > Account > Update Options > Update Now) it works fine.  The ACL and Sharing permissions allow Everyone and Domain Computers read-only access (in addition to some other ancillary accounts).  I've tried manually running
    the Office Automatic Updates from Task Scheduler and left the box running overnight.  I've rebooted, logged back on, closed and opened the app several times.  Nothing happens, just always sits at the current version.
      Anyone have any ideas?
          Thanks,
             Bryan
    Here's the UpdateURL registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\15.0\ClickToRun\Configuration\UpdateUrl = \\<SERVERNAME>\Office_365\Pilot
    ProPlusx64.xml:
    <Configuration>
    <Add OfficeClientEdition="64" >
    <Product ID="O365ProPlusRetail">
    <Language ID="en-us" />
    </Product>
    </Add>
    <Updates Enabled="TRUE" UpdatePath="\\<SERVERNAME>\Office_365\Pilot\" />
    <Display Level="None" AcceptEULA="TRUE" />
    <Logging Name="OfficeSetup.txt" Path="%temp%" />
    <Property Name="AUTOACTIVATE" Value="1" />
    <Property Name="FORCEAPPSHUTDOWN" Value="TRUE" />
    </Configuration>
    Here's what I think is the log file:
    Timestamp Process TID Area Category EventID Level Message Correlation
    05/01/2015 11:21:11.061 OFFICECL (0x550) 0x554 Click-To-Run Telemetry aqkhc Medium {"SessionID":"bfe53625-5d12-4e1a-b3b4-2d8e88b0d108","GeoID":"244","Ver":"15.0.4615.1002","ExeVer":"15.0.4615.1002","SecuritySessionId":"0","ModulePath":"C:\Program Files\Microsoft Office 15\ClientX64\OfficeClickToRun.exe","CommandLine":"/service","Bitness":"64","IntegrityLevel":"0x4000"}
    05/01/2015 11:21:11.061 OFFICECL (0x550) 0x554 Click-To-Run Telemetry aqkhe Medium {"SessionID":"bfe53625-5d12-4e1a-b3b4-2d8e88b0d108","GeoID":"244","Ver":"15.0.4615.1002","OSVersion":"6.1","SP":"1","ProductType":"1","ProcessorArch":"9","Locale":"1033"}
    05/01/2015 11:21:11.061 OFFICECL (0x550) 0x568 Click-To-Run annt7 Medium ProcessPool::Initialize - Initializing Main Process Pool
    05/01/2015 11:21:11.061 OFFICECL (0x550) 0x568 Click-To-Run annuf Medium SystemProcessPool::DoInitialize - Initializing System Process Pool
    05/01/2015 11:21:11.061 OFFICECL (0x550) 0x568 Click-To-Run anntv Medium ConfigurationManager::Initialize - Initializing ConfigurationManager
    05/01/2015 11:21:11.061 OFFICECL (0x550) 0x568 Click-To-Run annt4 Medium Pipeline::Initialize - Initializing pipeline with PipelineServerName: "ClickToRun_Pipeline" and InstallationPath: "C:\Program Files\Microsoft Office 15"
    05/01/2015 11:21:11.154 OFFICECL (0x550) 0x568 Click-To-Run annt1 Medium Orchestration::Initialize - Initializing Orchestration
    05/01/2015 11:21:11.201 OFFICECL (0x550) 0x568 Click-To-Run annto Medium ApiServer::Initialize - Initializing ApiServer for endpoint: C2RClientAPI_Server_System
    05/01/2015 11:24:50.661 OFFICECL (0x550) 0x828 Click-To-Run annty Medium ExecutionContext::QueueScenario - Set executing scenario to UPDATE
    05/01/2015 11:24:50.661 OFFICECL (0x550) 0x828 Click-To-Run annuz Medium TaskFactory::TryLoadScenario - Start loading UPDATE scenario
    05/01/2015 11:24:50.661 OFFICECL (0x550) 0x828 Click-To-Run annu0 Medium TaskFactory::TryLoadScenario - Loading UPDATE scenario is successful
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0x828 Click-To-Run amavh Medium ScenarioController::Initialize - requested display level: False
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0x828 Click-To-Run annua Medium ProcessPool::QueueTaskItem - Task SCENARIO:{AC2F0D89-6518-48E9-A0D9-EF039C456034} is being scheduled to run in this process
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0x828 Click-To-Run aoicd Medium ExecutionContext::QueueScenario - Successfully queue scenario UPDATE.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf6c Click-To-Run annua Medium ProcessPool::QueueTaskItem - Task UPDATEDETECTION:{77176F9C-873B-4A7D-8051-EBEB52DDE8B0} is being scheduled to run in this process
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf6c Click-To-Run annvj Medium Worker::TaskExecutionThreadProc - Task SCENARIO:{AC2F0D89-6518-48E9-A0D9-EF039C456034} completed with TaskState TASKSTATE_EXECUTING.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf6c Click-To-Run annu6 Medium TaskGroup::DoHandleWorkerCompleteEvent - Task {AC2F0D89-6518-48E9-A0D9-EF039C456034} complete event is handled by task {AC2F0D89-6518-48E9-A0D9-EF039C456034}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf6c Click-To-Run apm4n Medium TaskGroup::Finalize - Task AC2F0D89-6518-48E9-A0D9-EF039C456034 is not finished.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run Telemetry amb0n Medium TaskUpdateDetection::ApplySettings: Beginning Update Scenario. {"SessionID":"bfe53625-5d12-4e1a-b3b4-2d8e88b0d108","GeoID":"244","Ver":"15.0.4615.1002","TargetVersion":"UNDEFINED","InstallID":"C5912794-7300-4A10-840B-575B03DB98F8","TaskId":"77176F9C-873B-4A7D-8051-EBEB52DDE8B0","TaskState":"TASKSTATE_EXECUTING","UpdatePathType":"CUSTOM","TaskType":"UPDATEDETECTION:{77176F9C-873B-4A7D-8051-EBEB52DDE8B0}","Scenario":"UPDATE","TriggeringUI":"UNDEFINED","TaskCaller":"SCHEDULEDTASK"}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run Telemetry aoh6s Medium TaskUpdateDetection::Execute: Ending Update scenario, task trigger source disabled. {"SessionID":"bfe53625-5d12-4e1a-b3b4-2d8e88b0d108","GeoID":"244","Ver":"15.0.4615.1002","InstallID":"C5912794-7300-4A10-840B-575B03DB98F8","TaskState":"TASKSTATE_EXECUTING","TaskId":"77176F9C-873B-4A7D-8051-EBEB52DDE8B0","TaskType":"UPDATEDETECTION:{77176F9C-873B-4A7D-8051-EBEB52DDE8B0}","Scenario":"UPDATE"}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run annvj Medium Worker::TaskExecutionThreadProc - Task UPDATEDETECTION:{77176F9C-873B-4A7D-8051-EBEB52DDE8B0} completed with TaskState TASKSTATE_FAILED.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4b Medium Task::DoHandleWorkerCompleteEvent - Setting Task (77176F9C-873B-4A7D-8051-EBEB52DDE8B0) Task State to (TASKSTATE_FAILED)
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run aqkg7 Medium Task::DoHandleWorkerCompleteEvent - No event is specified for task (77176F9C-873B-4A7D-8051-EBEB52DDE8B0)
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run Telemetry apm4e Medium Task::HandleTaskStateFailed - Handling TaskState (TASKSTATE_FAILED) for task (77176F9C-873B-4A7D-8051-EBEB52DDE8B0). {"SessionID":"bfe53625-5d12-4e1a-b3b4-2d8e88b0d108","GeoID":"244","Ver":"15.0.4615.1002","InstallID":"C5912794-7300-4A10-840B-575B03DB98F8","TaskState":"TASKSTATE_FAILED","TaskId":"77176F9C-873B-4A7D-8051-EBEB52DDE8B0","TaskType":"UPDATEDETECTION:{77176F9C-873B-4A7D-8051-EBEB52DDE8B0}","Scenario":"UPDATE"}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apkpk Monitorable ScenarioController::CheckProcessPool - Failed to get/create ui process pool, and we are not the ui handler. Cannot process event
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run annu6 Medium TaskGroup::DoHandleWorkerCompleteEvent - Task {77176F9C-873B-4A7D-8051-EBEB52DDE8B0} complete event is handled by task {AC2F0D89-6518-48E9-A0D9-EF039C456034}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4p Medium TaskGroup::DoCancel - Attempting to cancel task {AC2F0D89-6518-48E9-A0D9-EF039C456034}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4a Monitorable Task::DoCancel - Can't cancel task (77176F9C-873B-4A7D-8051-EBEB52DDE8B0) because it is in TASKSTATE_FAILED state
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm39 Medium Task::DoCancel - Task (57173191-24E0-42E1-96F4-914AF8CFD1D5) in TASKSTATE_NOTSTARTED, set to Cancelled.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm39 Medium Task::DoCancel - Task (AA63EED2-70B9-4E21-952C-9CFB09EC37C0) in TASKSTATE_NOTSTARTED, set to Cancelled.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4p Medium TaskGroup::DoCancel - Attempting to cancel task {D1506E3F-4B2A-41D3-913B-FA3E889CE20D}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4p Medium TaskGroup::DoCancel - Attempting to cancel task {539BA5C1-BC18-4D11-AF61-CF6EDC58DC33}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm39 Medium Task::DoCancel - Task (D1E1E548-917D-4D75-8AE5-FC76856C66DC) in TASKSTATE_NOTSTARTED, set to Cancelled.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4p Medium TaskGroup::DoCancel - Attempting to cancel task {9A54EEBA-7B8D-4BD5-8EFE-D21E58FFFEE3}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4p Medium TaskGroup::DoCancel - Attempting to cancel task {9C141B7D-2B22-4C33-9C5C-F6F3394AD19E}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4p Medium TaskGroup::DoCancel - Attempting to cancel task {501487AD-0A47-419D-AF30-B9E616A4579B}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4p Medium TaskGroup::DoCancel - Attempting to cancel task {0270BAF9-3CE0-46EE-A3FE-099ABC06BC14}
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm39 Medium Task::DoCancel - Task (F0E5AF5D-5D82-4370-A2A6-C064CBC39247) in TASKSTATE_NOTSTARTED, set to Cancelled.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task 0270BAF9-3CE0-46EE-A3FE-099ABC06BC14.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task 501487AD-0A47-419D-AF30-B9E616A4579B.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm39 Medium Task::DoCancel - Task (A5E75ADF-8BF1-44C4-8900-1BE6070EB609) in TASKSTATE_NOTSTARTED, set to Cancelled.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task 9C141B7D-2B22-4C33-9C5C-F6F3394AD19E.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task 9A54EEBA-7B8D-4BD5-8EFE-D21E58FFFEE3.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task 539BA5C1-BC18-4D11-AF61-CF6EDC58DC33.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task D1506E3F-4B2A-41D3-913B-FA3E889CE20D.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task AC2F0D89-6518-48E9-A0D9-EF039C456034.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run apm4o Medium TaskGroup::Finalize - Finalizing task AC2F0D89-6518-48E9-A0D9-EF039C456034.
    05/01/2015 11:24:50.676 OFFICECL (0x550) 0xf70 Click-To-Run annt0 Medium ExecutionContext::ResetExecutingScenario - Reset executing scenario

    Hi,
    I replied in the other thread:
    http://social.technet.microsoft.com/Forums/office/en-US/e9e6be40-fb92-4734-9f94-9dee5599b1d8/office-365-pro-plus-2013-update-wont-apply-automatically?forum=officeitpro#c156ed8c-f65c-450c-9e0f-85f0de513c20
    It seems when the install finished it added an extra Office\Data to the path. My path should be \\hsbswpush02\GPsoftware\o365\Office\Data\15.0.4551.1005
    but it shows
    \\hsbswpush02\GPsoftware\o365\Office\Data\Office\Data15.0.4551.1005
    If I edit the path and delete the extra Office\Data Office 365 ProPlus updates from my network location. I cannot figure out why it is adding the extra Office\Data to the path.
    My config file looks like this:
      <Updates Enabled="TRUE" UpdatePath="\\hsbswpush02\GPsoftware\o365\Office\Data" />
    have you tried omitting the \Office\Data element, from the Updates element ?
    http://technet.microsoft.com/en-us/library/jj219426.aspx#BKMK_UpdatesElement
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Error 1907 after automatic update

    I am using Office 2010 Home and Student Edition on Windows 7 Home Premium.  After a recent automatic update, I now have problems.  When I start Office, I get the "installing updates, please wait" splash screen.  When the green progress
    bar is almost complete, I get the "Error 1907.  Could not register font" error message.  If I chose "Ignore" or "Retry", I am stuck in a loop.  The only option is to "Abort".  Then I get a message
    that the changes are being rolled back.  I can now use Word with no problems until the Microsoft mothership releases another update for Office.  Then I go through this nonsense again.
    Probably you have already replied to this post about the known fix for this known problem.  If you have bothered to read this far, I can tell you that I have tried the
    SFC /SCANNOW
    fix, and it does not work
    for my problem.  The scan completed and reported no problems.  I did not have a problem when installing Office, and I am not running Vista or Server 2008, which seem to be the circumstances the SFC fix addresses.
    For now I have turned off Microsoft Updates (leaving Windows Updates active), but this is not a real fix.
    Dell Inspiron 1440, T4200 processor @ 2 GHz, 4 GB RAM, Windows 7 Home Premium, Office 2010 Home and Student

    Hi,
    You can first try the method provided by Ron-Ray in the following thread:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-windows_programs/error-1907-could-not-register-font-verify-that-you/57f3a671-feec-4dc7-873c-bb2a7de9521f
    I paste his reply here:
    Error 1907 occurs when a program is uninstalled and/or another program installed (usually Office 2000, 2010 or 2013) that does not install the ".TTF" files (font files with the .ttf extension). 
    The required font files need to be replaced to the "C\Windows\Font" directory (folder) on your hard drive .
    The "sfc /scannow" command does not always remedy this. If not, follow the procedure below.
    1. Create a temporary folder, [C:\temp] 
    2. *Search file OWOW64WW.cab, ProPsWW.cab and ProPsWW2.cab in your Microsoft Office installation source (Office 2010), since this is what causes this error *most of the time. 
    *or search for: "owow32ww.cab, proprww.cab and proprww2.cab" in the "proplusr.ww" installation directory of Microsoft Office 2000. 
    * (Office 2000 installation: search in the "drive\Windows\Fonts" directory.)
    3. Copy all the ".ttf" files there to the "temp" folder you created. 
    Find and copy all the font files to your temporary folder. (Extract them all using Winrar or 7-zip, if they are in a cabinet ".cab" file. 
    4. "Paste" all the font files in to: 'C:\Windows\Font' folder of your hard drive. (overwrite all). 
    5. Re-start your program (Office, etc.) and the installation will complete with no further "Error 1907" warnings.
    If above not work, try to copy the font from another Windows 7 Home Premium computer, and paste it to the C:\Windows\Fonts folder to check the result.
    Note: please make sure you have backed up the folder before you conduct the copy/paste step.
    Hope it helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • Automatic Updates Keep Turning Back on When Turned Off

    When I turn off the automatic updates for my apps in my settings and later come back to it, it is turned back on. I have tried rebooting several times after turning it off but it is always still on. How can I fix this? (iPhone 5s, iOS Version 8.0)

    Hey prash,
    Welcome to the forums.
    This sounds like a software issue. Try backing up your device then reload the software: 
    How to perform a clean reload of the BlackBerry Device Software for Windows
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

Maybe you are looking for

  • Address bar search is not working

    When I type keywords into the address bar, it used to return a list of google search results. Now, it returns "The address isn't valid". I know I can use the search bar to search google, but the ability to search keywords straight from the address ba

  • Streaming music from itunes

    can you stream music from a cd over the airport express from itunes without ripping tracks into a playlist

  • Apps not showing on pages

    A couple of my apps are not showing up on pages or the search page. They are showing up in the settings area and on the laptop when connected by wire. How do I get them to show on the pages and be usable?

  • How to connect firmly a 50M-68F convertor to my DAQ card?

    Hello, I am using a 50M-68F (183139B-01) connector to connect my 5B equipment to a MIO-16E4/PCI6023E. This connector is simply plugged into the board (no screw or whatsoever) and I was wondering if there was a better way to tighten this connection to

  • We think 5.0.2 has fixed it! (InCopy Files Not Synchronizing Properly)

    Last year there was a topic (now archived) titled 'InCopy Files Not Synchronizing Properly' which discussed a problem with InCopy breaking the VC link after editing the story. 5.02 update ID and IC seems to have fixed it. We have only done a quick te