|
Is it possible, with or without plugin, to add more source folders to a PHP project, just like in a Java project?
I have downloaded and tested the Java version of NetBeans, and there is clearly possible to add more source folders. But not in the PHP version...
Started by Atmoz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
At this time, it looks like NetBeans PHP projects does....
However, you could add folders to the PHP Include Path if you are trying to use files from another folder.
Under project properties, the source folder is only one.
|
|
Hi,
I'm using subversion (TortoiseSVN) and I want to remove the .svn folders from my project for deployment, is there an automated way of doing this using subversion or do I have to create a custom script for this?
Started by public static on
, 9 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
But if you don't want to use svn export (for... .
Also, a lot of FTP clients have filtering, which you can add .svn to just in you .
Use the .svn folders.
For more info
Do svn export <url> to export a clean copy without .svn folders.
|
|
On my first try, I've only included system/application/models, system/application/controllers, system/application/helpers, and system/application/libraries. I chose those folders because I think those folders contain the code that you want to be properly...
Started by Randell on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you add any plugin/library/whatever that requires to be outside of these folders, make sure you folders and where necessary have annotated:
system/application/controllers system/application/helpers.
|
Ask your Facebook Friends
|
I work with multiple projects and I want to recursively delete all folders with the name 'bin' or 'obj'. That way, I am sure that all projects will rebuild everyhing (sometimes it's the only way to force visual studio to forget all about previous builds...
Started by MichaelD on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
So when we change a project and add....
Works nicely that way.
As far as I remember project build script is responsible for it's output/temp directories.
I think you can right click to your solution/project and click "Clean" button.
|
|
I am new to SVN and I've poked around looking for an answer on this but I haven't found it yet so here goes:
Using TortoiseSVN, I bring up the REPO browser and navigate to the root of the repository where I can view all the projects.
Is there any way ...
Started by John Galt on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It is however safe to check out a project as many times as you like, all you stand to lose is any, or made major modifications to a project and left without committing even a single file.
|
|
Hi,
Does anyone know of an easy way to import a legacy project, whose "version control system" is a series of dated folders, into SVN, so that the history of the revisions is preserved?
The project I inherited was not under version control, and there ...
Started by Dan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Done
Rather naive code I know, but I would think that something a bit like this would do the job (subject... .
Something like this:
for d in 200* do cp -a $d/* svndir/ cd svndir svn add * svn commit cd . .
I think the shell script solution would not be too hard .
|
|
For e.g. if i am storing some files on a network server which is under many hiearchial folders.
Then i want to do backup. But i always encounter issue because the file path is more than 255?
How can i resolve this issue or work around it?
Started by Nick Long on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Maybe upgrade to an Operating System that's been updated in the last decade or so? Seriously, though - what OS and file system are you using? Even FAT32 supports long path and file names, though any single component of the path is limited to 255 characters... .
|
|
Hi there
I'm adding an eclipse project to our existing code-base, and I'd like to know if there is a way to exclude some directories from being picked up by eclipse at all? The reason is that we have a huge "third-party" directory in our repository that...
Started by jkp on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In your project explorer view, there should it, and go to Filters.....
A project in another location you can create linked resources to the folders you want to include in yourYes, you may place a custom filter on your project.
|
|
Hello, I'm a beginner so if there is a terminology for what I'm doing I don't know how to search for it. So forgive me if this has been asked before. So here is what I do. Before I make any major code changes, I make a copy of the projects folder and ...
Started by JimDel on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
But very powerful (more used when there are lots of people working on the same project, and even the same.
|
|
What is the best way to keep large projects organized with SSMS?
I want to do something like:
ProjectRoot SchemaObjects Tables Constraints Indexes Keys Functions Views Stored Procedures Scripts DataGeneration
And so on, but I cannot find a nice way to...
Started by Scott on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Sadly ....
Maybe a third party tool will give you this; there's a list of replacements for 2000 Enterprise Manager here ; not the most current, but probably a good starting point .
I don't think there's anyway way to do this in SMSS, at least not in 2005 .
|