Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
9answers
8k views

Zend Framework on shared hosting

I'm new to Zend Framework. I would like to know how to implement zend framework on a shared hosting. Because of the zend framework folder structure all view files are put into the "public" folder. ...
3
votes
1answer
68 views

Do I need to create trunk/branches/tags in a Mercurial repository?

When creating a repository on our central server, do I need to create the folder structure of trunk/branches/tags or does Mercurial take care of all that?
3
votes
1answer
311 views

Best folder structure for storing image in filesystem?

I am in the process of creating a website for a small company, with a catalog page which shows categories and listing of all the products. I have images for each product, stored in one folder per ...
3
votes
1answer
340 views

C#: Folder structure with service layer, interfaces, and mocks?

I recently started creating services layers and making declarations like: MyService myService = new MyService(); myService.DoSomething(); This was inspired by some ASP.NET MVC videos and I like the ...
2
votes
1answer
92 views

How do I structure TDD in Node.js?

I have my folder structured like: backend |-Process1 |-Process2 |-app |-config |-controllers |-models public |-css |-js Where should I put my unit tests folder?
2
votes
1answer
73 views

.htaccess query string to folder format

I have a query URL with query string and I want to convert it to folder structured URL. For example: http://localhost/index.php?page=about-us http://localhost/index.php?page=contact-us how would I ...
2
votes
3answers
186 views

Python - structure of application

Morning, Got a python app I have been working on. Currently it consits of just a couple of files but as it gets bigger I am creating more and more files and the top of my main python file I am doing ...
1
vote
2answers
36 views

TFS Add a folder but now the files or folder contained within it

I have a mapping as follows $/Root/App/Folder mapped to C:\Root\App\Folder in C:\Root\App\Folder I have an existing folder called New that I want to add to source control but I don't want to add ...
1
vote
4answers
70 views

Maximum number of files/folders on Linux?

I'm developing a LAMP online store, which will allow admin to upload multiple images for each item. My concern is - right off the bat there will be 20000 items meaning roughly 60000 images. ...
1
vote
2answers
115 views

Nuget: Change package directory path and name

Is it possible to change the name and the path of the created nuget package directory? My current folder structure is like this: +src ++Project1 ++Project2 ++packages I'd like to ...
1
vote
3answers
141 views

ASP.NET Session & Delete Folders

I have a web app where the administrator can create news, pdf documents and other stuff in his cms panel. The problem is when the admin delete a new or something else the app deletes all the files ...
1
vote
4answers
124 views

Better solution for storing million images in folders? [closed]

I am planing to store my pictures in folders according to their types and sizes: images/{OBJECT}/{OBJECT_ID}/{OBJECT_ID}_{SIZE}.jpg // FOLDERS LOOK LIKE THIS: images/product/14/14_thumb.jpg ...
0
votes
3answers
47 views

Cleanup Codeigniter Applications Folder

I'm interested in cleaning up my codeigniter applications folder (just to clean up the clutter). I've seen a few applications that only include the important folder (ex. controllers, models, views, ...
0
votes
1answer
39 views

Creating Folder Structuring in jsp

How can we show a folder structure in jsp ,suppose i have a folder C:/Company/..... I have to just pass C:/company and the jsp will show the folder structure of this path in my page. Is there any ...
0
votes
1answer
105 views

Maven 2 Weblogic.xml replacement

I am having a problem about placing weblogic.xml under WEB-INF folder after mvn install. My weblogic.xml file is under src/main/resources/weblogic.xml and I want it to be placed under WEB-INF after ...
0
votes
1answer
45 views

PHP - Recursively Search within a directory for all folder paths

Ok, feeling a bit stupid here. I am trying to recursively search through a directory for all sub-directories within any directories of sub-directories. Basically all folders starting at the root ...
0
votes
3answers
70 views

class loading error after adding application/services to zend framework site

I'm trying to add a new folder to the application folder in zend framework, but none of the classes I create in the new folder can be found. What I have is this structure: application/ models/ ...
0
votes
1answer
23 views

Autoloading files in subfolders to helpers

I want to organize some helpers in subfolders in the helpers directory. I figured adding this in the initializer would do the trick, but not luck: config.autoload_paths += ...
0
votes
2answers
199 views

TFS2010 Automatic folder structure

I want to use TFS like a project repository; I have had a very good experience with SVN, CVS alike. But I am not sure how to achieve this with TFS2010. I have following collections CUSTOMERS ...
0
votes
2answers
74 views

User content Folder Structure based on UserID while hiding total users

I'm trying to figure out a folder structure for storing user content such as images, which will work for a massive amount of users. I was going to go with something like... 000/000/001 (user id 1) ...
0
votes
1answer
124 views

Matching folder names and namespaces? (Especially for extension methods)

I've always felt that it's very helpful if the folder names and namespaces match. I don't think I've ever strayed from that path yet. However, using more and more extension methods for sorting, ...
0
votes
1answer
17 views

Committing files/folder into second repository when within first?

i have a repostiroy structure "1" which is like: /a /a/b in /a/b i need to store files which willgo into repository "2", ideallyin the same folder structure /a/b as well. how do i dothis?
0
votes
2answers
131 views

X-Code folder structure for adding a library

I'm creating an iPhone app in X-Code. I have downloaded the ASIHTTPRequest library to make requests to my web server. What should my folder structure look like after adding this library? If I were to ...
0
votes
2answers
286 views

Folder structure for scripts and stylesheets vs plugins

I am curious as to the best practices/most efficient way to structure my data. options All scripts go in scripts folder, all stylesheets go in css folder. concerns with this method is that plugins ...
0
votes
1answer
512 views

Where do I put an external Java library in my program's directory structure?

I'm new to Java, and trying to figure out how to structure my program's files. I've downloaded a library (jnotify), which contains both a jar and also zip of the Java source code. So far, I've only ...
0
votes
2answers
147 views

Starting work with SVN and basic folder structure

I have read little about TortoiseSVN and it capabilities, but I just can't understand how should I use basic structure. /trunk /branches /tags I have created FSFS type repo and I have imported basic ...
0
votes
1answer
169 views

Specify build folder for iphone application

I've written an app that uses some of the user's camera roll images, and while it does so it stores them in the application root directory. The problem I have is that whenever I re-compile my ...
0
votes
1answer
54 views

folder structure for a plugin oriented site like wordpress

i just want to know about the files and folder structure for a site which is a plugin oriented like wordpress or joomla. my requirement is to develop a site and want to add more functions via plugin ...