Publish a file to a different directory.

I've seen other questions similar to mine on the forums but haven't found an answer.  My site has a newsletter archive that links to all of our past newslettters.  The newsletters are just html files saved from emails we send out.
To keep things organized, the newsletters are grouped by year, so all 2010 newsletters are saved in the 2010 directory.  However, when I add the newsletter using the Link to File on My Computer, it adds the newsletter html file to the current directory.
Is there any way, without using an outside FTP program, to upload the newsletter to the 2010 directory and then link to it from the main newsletter archive page?  I can't use the administer->file placement option because the rule  only applies to this specific upload. This seems like it should be an obvious, simple thing, but I'm stumped.

Hi,
     As of now I do not think this is possible in Contribute. But there can be a work-around.Can you try the following steps:
When you edit a web page, add the links to the files in your computer.
Do Publish As New Page (File -> Actions -> Publish As New Page), and select the Folder in which you want to publish your pages to, by clicking the Choose Folder button.
The web page and all the files from your computer will be published to that folder.
Now, re-edit the published web page with the links, and Publish As New Page to the original folder in which the web page was present.
This is a long workaround, where you will be publishing the web page twice. Hope this helps.

Similar Messages

  • Extract JAR file to a different directory

    Is it possible to use the jar command to extract the content of a JAR file to a different directory (not the current directory)?
    I want to use this command inside a makefile, looking for the same effect as "unzip example.jar -d directory".
    Thanks in advanced.

    Thanks Chuck, you solved my doubt... It surprises me that JAR doesn't support this option.
    I used the "unzip" command inside the makefile instead, but I wanted to be sure that there wasn't any chance to use "jar" (without using the additional script file).

  • How can I redirect Batch Report Files to a different directory.

    I have a custom version of the Batch Process Model that allows for on the fly report updates. At the end of execution the final report is written. I need to redirect this final report to another directory, but I am having trouble identifying where the report directory is specified. Right now, it is writing in the same directory as the sequence file and I need to change this.

    Hi Terry,
    have a look at the following inside the process model TestUUTs (or Single Pass)
    Locals.ModelData.ReportOptions.DirectoryType
    set this to "SpecificDirectory"
    then in
    Locals.ModelData.ReportOptions.Directory
    set this to your target directory.
    If it's a permanent setting, then I'd suggest updating these values before run time in the report options panel from the Configure menu option.
    If it can be determined before the sequence is run, then you could do it as part of the report options callback. Otherwise, slot it in as and when needed, just before the call to the Determine Report File Path and Determine UUT Report File Path steps, although I guess that depends on how much you've modified the process model so far.
    Hope that helps
    S.
    // it takes almost no time to rate an answer

  • File name in different directory

    i have a problem when saving files:
    I copied all the files from one directory to another ---with the same file name and I tried to make chnages in the new directory, But I found that all the changes I made in the new directory also happened in the old directory. So Labview recogonize file names only, not file paths. I don't like this feature!!!!!

    This is an old problem with no easy solution as of now. For a better description of what is going on here, you can read this discussion where I answered a similar question a while ago.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Cant Publish fla file in 2 different versions of Flash

    This is a strange one.... someone please help...
    I have tried this fla file on a couple of pcs and a couple of
    versions of flash now, version 8 and 9....
    Creating new fla and publishing them to swfs on both pcs and
    in both versions is fine, and even opening other files and
    publishing again is fine... But this one fla project i have and
    really need is not publishing to a swf file.
    You can work in the file fine add and remove stuff and work
    on it as normal, but when you publish it to a swf it produces this
    strange behaviour.
    Version 8
    You can see the swf file being created, and the file
    increases in size... the swf should be about 2mb, but this file
    just gets bigger and bigger, to about 19mb then complains about
    running out of memory, the file then disappears.
    Version 9
    Again you can see the file being created, and the file
    increases in size to about 1.3mb. but then the file disappears.
    there is no trace of it on the machine.
    It can t be related to AV or it would do this to all my
    projects????
    If the fla file is corrupt, how can it be repaird? i have
    tried doing a copy and past of the frames from one project to a new
    one, but the same results happen.... im stumped, and really need
    this fla back working...
    PLEASE HELP!!!!!!

    Yes. Just obey the correct version order or CS3 won't instal lafter CS5.5.
    Direct Download Links for Adobe Software
    Mylenium

  • Jar file Extraction in different directory...

    Hi friends..
    i want to extract a jar file using a java program..but not in current directory..i want it to do in another directory..
    i tried it using exec(jarfilename,env var,filedirectory) ..but it is not working..help me..
    thanks..
    Krishna

    Hi Krishna,
    The following code will definitely help you
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.OutputStream;
    import java.util.zip.ZipEntry;
    import java.util.zip.ZipInputStream;
    * @author Snehanshu
    public class Main {
         * Extracts a zip file
        public void extractZipFile() {
            try {
                String zipFileName = "C:\\DEMO.jar";
                String extractedFileName = "C:\\extracted.txt";
                //Create input and output streams
                ZipInputStream inStream = new ZipInputStream(new FileInputStream(zipFileName));
                OutputStream outStream = new FileOutputStream(extractedFileName);
                ZipEntry entry;
                byte[] buffer = new byte[1024];
                int nrBytesRead;
                //Get next zip entry and start reading data
                if ((entry = inStream.getNextEntry()) != null) {
                    while ((nrBytesRead = inStream.read(buffer)) > 0) {
                        outStream.write(buffer, 0, nrBytesRead);
                //Finish off by closing the streams
                outStream.close();
                inStream.close();
            } catch (IOException ex) {
                ex.printStackTrace();
         * @param args the command line arguments
        public static void main(String[] args) {
            new Main().extractZipFile();
    }Change the "extractedFileName" as you want.
    :)

  • How to include a template from a different directory

    Hi,
    I have a page navigation menu that I placed in a template file.  All the browsing files would then call this template file using cfinclude. 
    I now want to call this file from a different directory.  However, this causes all the url and image links to be wrong because the template file uses relative path off of root directory.
    I have looked at using cfmodule, but it seems that I would have the same issues unless I make the paths absolute, which I am trying to avoid.
    I also thought of prepending to every link in the template file with a directory prefix variable which I passes from the calling files.
    Is there an easy and better way to solve this?
    Thanks!
    Min

    To dynamically get the absolute path from a relative path take a look at expandPath()
    http://livedocs.adobe.com/coldfusion/8/htmldocs/functions_e-g_05.html

  • Moving many files to a new directory WITHOUT copying

    Hello,
    I'm trying to increase the efficiency of my iBook G4 by deleting all extraneous/replicated files. In addition to this, I'm trying to organize all the files that remain into sub-directories. Question: How do I move a large amount of files to a different directory without creating copies of those files? Everytime I try to execute something like this, the result is that aliases of all selected files get moved to the new directory, but the original files remain where they were. How do I get around this?
    Also, any other tips about how to increase efficiency of the computer? I have an iBook G4 running 10.3.9 Thanks.
    -Adam
      Mac OS X (10.3.9)  

    717/3163
    Hello Adam,
    (In addition to Doug's excellent answer)
    When using those move vs copy tips, a small green "+" appears to visually help you drag the way you meant:
    - If the green "+" shows, it's a copy.
    - If the green "+" doesn't show, it's a move.
    "any other tips about how to increase efficiency of the computer?"
    Well, hundreds, thousands, many undocumented...
    - Exploring your usual keyboard shortcuts and combinations, with the Option key in addition, or with the Command key, or both, or combined with mouse clicks, holds or drags, the Control key too sometimes, quite often unveils a hidden feature that you easily remember in the future because it very often really adds a plus to your efficiency.
    About shortcuts, many Apple KB articles:
    - (KB article #75459) Mac OS X keyboard shortcuts
    - (KB article #153415) Shortcuts for starting up
    - (KB article #153412) Shortcuts for freezes
    - (KB article #106567) Mac OS: Apple Pro Keyboard Shortcuts for Shut Down and Restart
    - (KB article #152140) Setting custom keyboard shortcuts for applications
    and one very nicely summed:
    - (Dave’s Picks) Magical Macintosh Key Sequences
    Try also certain combinations of
    Exposé + Tab,
    Command-Tab then ~/H/Q (with the ⌘ key hold down),
    the right-clicking in the Dock (folders icons...),
    the hold-clicking too (Finder's Dock icon),
    the Control + F keys keyboard navigation (enable with control-F1),
    keyboard navigation by hitting letters (or two or three letters) in menus or in Finder's column view,
    etc etc etc...
    Enjoy the exporation!
    Mac OS X, a wealth of such features...
    Axl

  • How do I get iWeb to publish just the files to my root directory

    Hey all, when I publish my site to my hosting server via iWeb it's just copying the entire folder into my root directory instead of copying the files to the root directory. This is causing my site url to look like this: www.mysite.com/myfolder/ how do I get iWeb to publich the files in the "myfolder" to my server instead of the entire folder?

    I needed to do this while keeping ftp publishing inside iWeb, and so I developed a sneaky solution. I just figured this out, so there may be some extra steps in here. Here goes:
    Find the iWeb application on the computer you are publishing from.
    Control-Click on the application and choose "Show Package Contents".
    In the window that appears, open the folder "Contents".
    Control-Click on the folder "Resources" and choose "Get Info".
    In the window that appears, open the "Sharing and Permissions" drop-down.
    Click the lock in the lower-right corner and enter your password.
    Where it says "Read Only" across from "Everyone", click the arrows and choose "Read and Write".
    Close the "Info" window and open the "Resources" folder.
    Find the "defaultPublishConfiguration.plist" file and change the permissions (repeat steps 4-7 but with "defaultPublishConfiguration.plist" instead of the "Resources" folder).
    Open the "defaultPublishConfiguration.plist" file in TextEdit.
    Find the line "<string>/Web/Sites</string>".
    Change it to "<string>/Web</string>".
    Save and close the text file.
    Restart iWeb.
    Go to your publishing settings and enter the information for your server. Point the "Directory/Path" to the folder above your server's root web folder.
    Set "Site Name" to the name of your server's web folder.
    Make sure that none of the files in your server's web folder have the same name as those iWeb would upload.
    Select File>Publish Entire Site.
    It should now publish your site to "http://www.yourdomain.org/Home.html".
    Hope it works!
    mindoftea

  • Multiple files in different directory using single FILE adaptor

    Hi Guys,
    How can we handle multiple files having different format(PDF,TXT,EXCEL) and in different directory with the single FILE adaptor.
    I know by using "." we ca get mutilple files, but here tthe files are of different format and in different directory.
    Could you please explain as to how we can handle this scenarios?
    Thanks
    Sahil

    Hi,
    The short answer is - "No".
    The Long Question - "Why do you want to use a SINGLE channel".
    If your idea is to reuse the interface then dont worry... Except for the Senderchannel and Sender agreement all your other objects can be reused ...provided your sender apter converts the different files into the same XML format..
    For TXT you can use the simple file adpater..
    For excel see if you can use save the file as .CSV format...then you can use it directlky by the simple FIle adapter..
    For PDF use conversion agent... Here a blog to get u started on that ->
    /people/shabarish.vijayakumar/blog/2009/05/17/trouble-writing-out-a-pdf-in-xipi
    regards
    Arvind R

  • How we cam naintain different directory file in native SQL

    Hi Friends.
    Pls solve my problem.
    I am writing code using native sql for getting data from different directories as
    first i have only one directory file
    execsql
    SELECT * INTO :WA  FROM file.
    endexec.
    now the costumer has 3 different directory files.
    he need a selection on which he can choose any directory.
    if i used as
    parameters  x type .   for selection screen
    what type i should used and how i use that parameter in Select statement to pass data in WA.
    i am waiting for ur reply.
    regards

    Hi,
    You can place your code inside a loop...endloop.
    Loop at itab into wa_tab.
    exec sql.
    SELECT * INTO :WA FROM :wa_tab-file.
    endexec.
    endloop.
    Regards
    Subramanian

  • How to deploy war file in different directory?

    I know one simple way to do deploy a war file is to dump it in webapps directory without a need a set server.xml. However, doing so will also inflate the war file in the webapps directory, which is not what I want.
    I want to be able to drop the war file in the Tomcat webapps directory, but automatically gets inflated in my project specific directory (say C:\projectName).
    How do I do that? Thanks.

    you should have a console option to do that so...
    For example in WEBLOGIC you can get it through
    http://localhost:7001/console
    here you can do it you will come to know just by seeing that..
    Similarly i think there will be a chance for others also.

  • Using javascript to save a pdf to a different directory and generating a new filename based on form fields in the document.

    I have built the following script in an attempt to create a submit button that will automatically save the document in a different directory on my computer. It will also use the form field data "customer" and "date" to generate the filename. I printed out the variable myPath and it looks like it printed the correct string. I keep getting the following error:
    TypeError: redeclaration of const path
    any help would be much appreciated.
    var customer = this.getField("Customer").value;
    var date = this.getField("Date").value;
    var path = "C:/Users/awilliams/My Documents/Test/"
      var reg = date.match(/(\d+)\/(\d+)\/(\d+)/);
    var myPath= "C:/Users/awilliams/My Documents/Test/" + customer + "_" + reg[1] + "." + reg[2] + "." +
    reg[3] + ".pdf";
    this.saveAs(myPath);

    "path" is a keyword within a PDF you should not use keywords as a name for any other object as a general rule.
    Have you checked the PDF Reference to see how to create a file path name within a PDF,  3.10.1 File Specification Strings page 118?
    Did you carefully read the Acrobat JavaScript Reference for the saveAs method?
    The notes following the description:
    Note: This method can only be executed during a batch or console event. See Privileged versus non-privileged context for details. The event object contains a discussion of JavaScript events.
    (Adobe Reader S): This method is available in Adobe Reader for documents that have Save usage rights.
    How to Save a PDF with Acrobat JavaScript

  • Running a java application from different directory

    I have the file in my
    c:/Folder/Program.java
    I want to compile and run it from D:/ (drive)i.e from different directory.
    Thanks in advance,
    Praveen.

    javac -cp c:\Folder c:\Folder\Program.java
    java -cp c:\Folder Program

  • [SOLVED] Files in the /tmp directory are being deleted

    Hi,
    I've been using Arch Linux for four weeks, but have now come across a problem which I can't fix after trying to search for a solution (and also checking to see if anyone also had the same problem). I would appreciate any help you can give.
    A few days ago the web browsers I use (chromium and opera) lost their profile settings, and I had to set the profiles. This kept happening and the indicator of the problem was that I use profile-sync-daemon for both web browsers, which uses the /tmp directory. I then started noticing that a file I created in /tmp disappeared which pointed me to the fact that something was cleaning up the /tmp directory (this seems to happen hourly).
    A quick search led me to systemd-tmpfiles and the /usr/lib/tmpfiles.d/tmp.conf file. I have not modified the file, and if I have read it correctly only files in the /tmp directory that are more than 10 days old are deleted. I boot every day, so no files should be deleted by systemd-tmpfiles (unless I've misunderstood tmpfiles.d).
    Here is the tmp.conf file anyway:
    $ cat /usr/lib/tmpfiles.d/tmp.conf
    # This file is part of systemd.
    # systemd is free software; you can redistribute it and/or modify it
    # under the terms of the GNU Lesser General Public License as published by
    # the Free Software Foundation; either version 2.1 of the License, or
    # (at your option) any later version.
    # See tmpfiles.d(5) for details
    # Clear tmp directories separately, to make them easier to override
    d /tmp 1777 root root 10d
    d /var/tmp 1777 root root 30d
    # Exclude namespace mountpoints created with PrivateTmp=yes
    x /tmp/systemd-private-*
    x /var/tmp/systemd-private-*
    X /tmp/systemd-private-*/tmp
    X /var/tmp/systemd-private-*/tmp
    The /etc/tmpfiles.d directory is empty, so /usr/lib/tmpfiles.d is the only location for the tmpfiles.d config files:
    $ ls /etc/tmpfiles.d/
    $
    Here is the list of packages I upgraded/installed for the last few days. systemd 207-3 seems the likeliest candidate, but I have not come across any reports about the problem I am having.
    [2013-09-17 19:30] [PACMAN] Running 'pacman -Syu'
    [2013-09-17 19:30] [PACMAN] synchronizing package lists
    [2013-09-17 19:30] [PACMAN] starting full system upgrade
    [2013-09-17 19:34] [PACMAN] upgraded bluez-utils (5.7-1 -> 5.8-1)
    [2013-09-17 19:34] [PACMAN] upgraded cogl (1.14.0-4 -> 1.14.0-5)
    [2013-09-17 19:34] [PACMAN] upgraded dbus (1.6.12-1 -> 1.6.14-1)
    [2013-09-17 19:34] [PACMAN] upgraded dialog (1.2_20130523-2 -> 1.2_20130902-1)
    [2013-09-17 19:34] [PACMAN] installed efivar (0.6-1)
    [2013-09-17 19:34] [PACMAN] upgraded efibootmgr (0.6.0-3 -> 0.6.0.138.1132342-1)
    [2013-09-17 19:34] [ALPM-SCRIPTLET] Generating locales...
    [2013-09-17 19:34] [ALPM-SCRIPTLET] en_GB.UTF-8... done
    [2013-09-17 19:34] [ALPM-SCRIPTLET] Generation complete.
    [2013-09-17 19:35] [PACMAN] upgraded glibc (2.18-3 -> 2.18-4)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-desktop (1:3.8.3-2 -> 1:3.8.4-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-color-manager (3.8.2-1 -> 3.8.3-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-settings-daemon (3.8.4-2 -> 3.8.5-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-control-center (3.8.4.1-2 -> 3.8.5-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-themes-standard (3.8.3-1 -> 3.8.4-1)
    [2013-09-17 19:35] [PACMAN] upgraded libpng (1.6.3-1 -> 1.6.5-1)
    [2013-09-17 19:35] [PACMAN] upgraded libusbx (1.0.16-2 -> 1.0.17-1)
    [2013-09-17 19:35] [PACMAN] upgraded linux-firmware (20130725-1 -> 20130903-1)
    [2013-09-17 19:35] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-09-17 19:35] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Starting build: 3.11.1-1-ARCH
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Starting build: 3.11.1-1-ARCH
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: smsmdtv
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> Image generation successful
    [2013-09-17 19:35] [PACMAN] upgraded linux (3.10.10-1 -> 3.11.1-1)
    [2013-09-17 19:35] [PACMAN] upgraded openssh (6.2p2-1 -> 6.3p1-1)
    [2013-09-17 19:35] [PACMAN] upgraded orc (0.4.17-1 -> 0.4.18-1)
    [2013-09-17 19:35] [ALPM-SCRIPTLET]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> The file /etc/sysctl.conf has been removed from this
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> package, as all its settings are now kernel defaults.
    [2013-09-17 19:35] [ALPM-SCRIPTLET]
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> If you had customized it, you need to rename it as
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> /etc/sysctl.d/99-sysctl.conf since from version 207 on
    [2013-09-17 19:35] [ALPM-SCRIPTLET] ==> systemd only applies settings from /etc/sysctl.d/* .
    [2013-09-17 19:35] [ALPM-SCRIPTLET]
    [2013-09-17 19:35] [PACMAN] upgraded procps-ng (3.3.8-2 -> 3.3.8-3)
    [2013-09-17 19:35] [PACMAN] upgraded raptor (2.0.9-2 -> 2.0.10-2)
    [2013-09-17 19:35] [PACMAN] upgraded xorg-xinput (1.6.0-1 -> 1.6.1-1)
    [2013-09-17 19:36] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-dsana/PKGDEST.u70/profile-sync-daemon-5.40.1-1-any.pkg.tar.xz'
    [2013-09-17 19:36] [PACMAN] upgraded profile-sync-daemon (5.40-1 -> 5.40.1-1)
    [2013-09-18 20:35] [PACMAN] Running 'pacman -Syu'
    [2013-09-18 20:35] [PACMAN] synchronizing package lists
    [2013-09-18 20:35] [PACMAN] starting full system upgrade
    [2013-09-18 20:35] [ALPM] warning: /etc/systemd/journald.conf installed as /etc/systemd/journald.conf.pacnew
    [2013-09-18 20:35] [ALPM-SCRIPTLET] ==> systemd 205 restructures the cgroup hierarchy and changes internal
    [2013-09-18 20:35] [ALPM-SCRIPTLET] protocols. You should reboot at your earliest convenience.
    [2013-09-18 20:35] [ALPM-SCRIPTLET] ==> The "timestamp" hook for mkinitcpio no longer exists. If you used
    [2013-09-18 20:35] [ALPM-SCRIPTLET] this hook, you must remove it from /etc/mkinitcpio.conf. A "systemd"
    [2013-09-18 20:35] [ALPM-SCRIPTLET] hook has been added which provides this functionality, and more.
    [2013-09-18 20:35] [PACMAN] upgraded systemd (204-3 -> 207-3)
    [2013-09-18 20:35] [PACMAN] upgraded systemd-sysvcompat (204-3 -> 207-3)
    [2013-09-18 20:35] [PACMAN] upgraded udisks2 (2.1.0-3 -> 2.1.1-1)
    [2013-09-19 20:46] [PACMAN] starting full system upgrade
    [2013-09-19 20:48] [PACMAN] Running 'pacman -Rns psd'
    [2013-09-19 20:48] [PACMAN] Running 'pacman -Rns profile-sync-daemon'
    [2013-09-19 20:48] [PACMAN] removed profile-sync-daemon (5.40.1-1)
    [2013-09-19 20:48] [PACMAN] removed rsync (3.0.9-6)
    [2013-09-19 20:49] [PACMAN] Running 'pacman -Rns chromium'
    [2013-09-19 20:49] [PACMAN] Running 'pacman -Syu'
    [2013-09-19 20:49] [PACMAN] synchronizing package lists
    [2013-09-19 20:49] [PACMAN] starting full system upgrade
    [2013-09-19 20:50] [PACMAN] upgraded chromium (29.0.1547.65-1 -> 29.0.1547.76-1)
    [2013-09-19 20:50] [PACMAN] upgraded xvidcore (1.3.2-1 -> 1.3.2-2)
    [2013-09-19 20:58] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-dsana/PKGDEST.ZDK/chromium-pepper-flash-stable-2:11.8.800.170-1-x86_64.pkg.tar.xz'
    [2013-09-19 20:58] [PACMAN] upgraded chromium-pepper-flash-stable (2:11.8.800.97-1 -> 2:11.8.800.170-1)
    EDIT: journalctl doesn't show me anything interesting, other than the fact that chromium complains when it realizes that its profile data has gone missing.
    Last edited by dsana123 (2013-09-21 16:02:48)

    I think I have found the problem.
    There was a gnome update earlier in the week. gnome-settings-daemon runs an hourly housekeeping job. I had set the "Automatically Purge Temporary Files" in the Privacy tab when setting up my laptop last month.
    gnome-settings-daemon has decided to delete files in the /tmp directory (I can trigger this by clicking "Purge Temporary files" which then deletes my files in the /tmp directory). This does not happen in the previous gnome-settings-daemon. Anyway, I'll mark the thread SOLVED if my file in the /tmp directory survives the hour!
    [2013-09-17 19:35] [PACMAN] upgraded gnome-desktop (1:3.8.3-2 -> 1:3.8.4-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-color-manager (3.8.2-1 -> 3.8.3-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-settings-daemon (3.8.4-2 -> 3.8.5-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-control-center (3.8.4.1-2 -> 3.8.5-1)
    [2013-09-17 19:35] [PACMAN] upgraded gnome-themes-standard (3.8.3-1 -> 3.8.4-1)

Maybe you are looking for

  • Bom and Routing load files.

    Can you let me know how to create a BOM load file and a routing load file from SAP system? I want a list of all Boms and routings in an excel file respectively. I have to get this ready for the ABAPer to load these files into a new system. Any input

  • Changing Managed Server Startup

    hi experts, I am trying to change the JAVA HOME for my managed server via the Server --> Configuration --> Server Start tab on the weblogic console of the managed server. I am starting this Managed Server via NodeManager and I don't want the managed

  • Want to display all groups

    Hi Experts, I want to display all groups Regards, Gurprit Bhatia

  • Downloaded PSE 8 - How to save backup to disc

    Simple enough. I bought and downloaded the program from the Adobe site.  Getting ready to get a new computer and want to move the program over to the new one.  I assume the easiest way to do this would be to burn a copy of the program to disc.  Is th

  • Profit Center Error at the time of BOE - F-36

    Hi I am posting F-36 for bills of exchange. My invoices are getting cleared and bills of exchange (customer) is getting debited. Entry is: Customer (Bills of Exchange - Spl GL W)    To Customer A/c (Invoice is getting cleared). When there are multipl