Brackets, remembering previous session - adobe-brackets

Every time I open brackets, it points to a start-up folder instead of previously opened files and folder. Is there a way to retain previous session?

It should remember what folder you had open, so it's hard to know exactly why not. Here are some things to try though:
If you have any extensions installed, try uninstalling them. (If that fixes it, you can reinstall them one by one to see which one was the problem).
If you select Debug > Show Developer Tools in the menu, are there any errors listed in the Console tab?
If you select Help > Show Extensions Folder and then go up one level, is there a state.json file there? If so, try deleting/renaming it to see if that fixes things. If not, make sure the permissions on that folder are ok.

Related

How to prevent WebStorm temp files constantly launch Meteor rebuilt

Each time I write something into WebStorm IDE Meteor rebuilds. Even if I don't save the files. My computer becomes noisy and hot quickly.
I am looking for a way to prevent Meteor to watch WebStorm temp files.
Does this happen when debugging your code? If yes, this must be a Live Edit issue. Try disabling Live Edit plugin - does it help?
Look at the synchronization section of the system settings page from their documentation
Here's what it says:
Synchronization
Synchronize files on frame or editor tab activation
If this check box
is selected, all the files that were changed externally are reloaded
from disk when you switch to WebStorm from a different application, or
when you you switch to their editor tab.
Save files on frame deactivation
If this check box is selected, all
modified files are auto saved when you switch from WebStorm to a
different application. Note that you cannot disable autosave
completely by turning off this and the following option. See Saving
and Reverting Changes.
Save files automatically if application is idle for N seconds
If this
check box is selected, all modified files are auto saved at regular
time internals. See also, Saving and Reverting Changes.
Use "safe write" (save changes to a temporary file first)
If this
check box is selected, a changed file is first saved in a temporary
file. If the save operation succeeds, the file being saved is replaced
with the saved file. (Technically, the original file is deleted and
the temporary file is renamed.) Also, the ownership of such file
changes. If this check box is not selected, the ownership of a file
does not change, but all the advantages of safe write will be lost.
Try unchecking those checkboxes and see if that prevents some saves.
I had a similar problem in that WebStorm was constantly saving edits to Jade files, even after typing just one character, triggering a gulp watcher. Disabling the Live Edit plugin and unchecking these boxes worked for me. Since disabling Live Edit didn't work for you, maybe unchecking one or more of these boxes will fix it.
Check this meteor specific webstorm help article. There is detailed description on how to configure live edit and code updating and how that would work together with meteor.

How do I backup my wordpress template through Filezilla?

I made changes to a wp template and I need to export it. I can't seem to drag and drop my template folder through filezilla. I tried allowing permissions for every thing but nothing seems to work. Am I missing a step or is there another way?
You can try a few things with filezilla. First, try reconnecting to the server you are pushing your file to. If that doesn't work, see if you are able to move other files between the two servers. If you end up needing to, you may want to use another program such as Dropbox, Google Drive, or Github to back up your work.
there are other ftp clients you could try. like the (s)ftp commands on linux. this is also one way to see if the problem is with filezilla or something else.

Drupal panels module is shown missing but installed

I'm new to Drupal (v7.3.4) but so far install is ok except for panels module is shown to be "missing". It is in the modules folder with all other modules (the rest all show fine). I've reinstalled and no change.
I tried a lower version and I get a wrong version popup.
Any suggestions?
I assume you are saving the panels folder in sites/all/modules and not the /modules folder. If not, move panels to the correct folder. Any modification to the core installation should be saved within /sites/all or sites/default.
If that is not the culprit, try clearing cache.
I had same with other module - make sure that you have exact one panels.module file in your modules folder. Maybe you made two copies? or maybe you did /panels/panels by mistake? Also try to search for that file whole drupla folder

How do I reset Visual Studio 2013 completely

Okay so I'm trying to create a new website, and the first time I created the site I accidentally saved it to the wrong folder. Well instead of just copying the folder to the correct location and having to deal with that headache I decided to just delete the old folder and make a new site in the correct place. Now it keeps giving me numbers at the the end though. I named the site PNI (and I like that name and want to keep it) so when I made it the second time it named it PNI(2) I tried deleting that and resetting then environment, removing the old site names from the "recent" list, but it named the site PNI(3). How can I reset VB so that it will stop counting my sites?
I can think of 2 places you might need to check to clear out old sites
In VS, go to menu Tools > Options and then click the Projects and Solutions node and look at the path in Projects location. Go to that path and delete any folders you see for the previous PNI sites you have created.
Some of the configuration data may be saved in your local applicationhost.config file (if you set up these sites and used IIS Express). Typically one of these paths will get you there:
%userprofile%\documents\iisexpress\config\applicationhost.config
%userprofile%\my documents\iisexpress\config\applicationhost.config
Look for the <sites> node, and delete any <site> nodes under it which look like your PNI site.

DirCopy() Not Working

I'm working in AutoIT to script a basic task I'll have to repeat on 50ish workstations.
I need to copy a directory and it's subdirectories and files (recursively) to a network share as a backup. For some reason, DirCopy() does not work at all.
I've tried running it on several different directories (thinking permissions issue, I'm Domain Admin account), tried doing a RunAs (again thinking permissions), and also put the #RequireAdmin tag to force the program to run on an elevated account. Nothing has worked. I can't even get it to copy empty directories.
DirCopy(#DesktopDir & "\SAMPLE\TEST1", #DesktopDir & "\SAMPLE\TEST2", 0)
Please advise!
Just figured this one out.
Turns out DirCopy() is a pretty stupid function that cannot handle if the destination directory already exists (it wants to create it for you). So if you kill the destination directory, then run the above code line, all woks as expected. But then if you add a new file into the source directory (TEST1 in my example), then it breaks again and does nothing.
Go figure...
Now time to find a work-around using something like xcopy...

Resources