0
votes
1answer
27 views

codeigniter handle code when application controller directory get accessed

My directory settings -- application -- controllers -- admin -- manage When I accessed 'localhost/admin', it redirect to 'localhost/'. Question is : - Where should I handle ...
0
votes
1answer
59 views

Codeigniter - share project files for duplicating website to mobile website

I need to replicate the website on another domain. the both domains will share same db and same logic behind. Now assuming this is my application scheme. application js css system .htaccess ...
0
votes
1answer
36 views

Ensuring security of files in folder on public_html

I have a directory structure of images in my public_html, like this: public_html/ design_images/ product_11/ 112342_234/ ... a bunch of images stored here for this product ...
1
vote
2answers
38 views

Methods for accessing files outside root

Hi all :D My file structure is as follow: /site /public_html /1 /2 /3 read.php /file file.doc For security reasons, I moved my docs outside public_html folder. ...
0
votes
1answer
27 views

RecursiveDirectoryIterator - signal upon first instance of string in path found

I'm using RecursiveDirectoryIterator(). I have a situation whereby I want to signal to my program that there should be a single file created upon the first instance of a specified string in a ...
0
votes
1answer
35 views

Find string within directory path using RecursiveDirectoryIterator

I'm looking for a way to test on a portion of a RecursiveDirectoryIterator's object output. I know how to identify a folder, but I am new to php and unfamiliar with how to look at the contents of the ...
0
votes
2answers
176 views

Directory Structure, if you do not use MVC

There are many documents about directory structures, but most of them about MVC directory structures. But what if we don't want to use any framework or MVC? Some people says "No need to move above ...
0
votes
2answers
67 views

Storing PHP OPP classes

I have a site which uses the library file lib.client.php which is stored in the php folder in my standard website root and contains a series of classes I have built. The library file contains about 5 ...
0
votes
1answer
78 views

Best way to organize a website root

I have made a website (WP based) and put every stuff inside the /site folder. I did that, thinking of creating "custom" systems, and putting each one inside a folder, so for example: /promo would go ...
0
votes
0answers
117 views

Using same config files for multiple codeigniter projects

I'm setting up a project where i wish to use the same codeigniter system + share some common models, libraries and even config files between the different websites. I have put my system folder and a ...
1
vote
2answers
73 views

Is there a difference between /../ and ../ in php?

I was curious if ../ and /../ is the same in PHP so I tried these: require_once('/../frame/header.php'); require_once('../frame/header.php'); Both of them worked. Was I just lucky or they realy do ...
0
votes
2answers
145 views

Custom Controllers in CodeIgniter

I don't know if this is a duplicate, I couldn't find anything. I'm sorry. Alright, so I've made a couple of classes like this: abstract class Bank(){} class HB extends Bank(){} class NO extends ...
0
votes
1answer
98 views

Make / link to the different directory VHost, PHP MVC

Im trying to create my own MVC. My folder structure is following: localhost (root, htdocs) - Project_1 - images - test.jpg - App - Controllers - Models - ...
1
vote
2answers
54 views

Organizing user images

I am developing a social system where users can upload images. I am not very sure how I should structure my files. The two ideas I have is the following: Add a folder with the userID as name and ...
0
votes
2answers
282 views

Clean url in php mvc

In first .htaccess,I send url to public/index.php: RewriteEngine On RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ...
1
vote
1answer
120 views

Auth code structure in CodeIgniter

I'm using CodeIgniter and Ion auth to develop a small web app. The app has 3 distinct types of users: admin: add, list all, consult an item, delete item; author: add, list all, consult; normal user: ...
0
votes
3answers
100 views

PHPStorm and module references

I have the following files at my PHP project: index.php private/module1.php private/module2.php The index.php references module1.php this way: require_once('private/module1.php'); By its turn, ...
0
votes
1answer
269 views

Zend Framework 2 - TemplatePathStack for several entities in module

A while ago I followed the tutorial and included the TemplatePathStack like it is described here. The tutorial suggests for the view directory a structure like view/album/album in which all the ...
0
votes
1answer
78 views

Folders protection in PHP

What is better way for folders protection in PHP? for example in folder views I have file index.php and if go on this addres: mysite.com/views/ opened file and I dont want this. My idea is rename ...
1
vote
3answers
175 views

Controlling Exact Folder/Directory where Packages are Written by Composer for PHP

The Background I'm trying to use Composer to manage dependencies for WordPress plugins. I've built several PHP libraries (RESTian & Sidecar) I want to include in subdirectories for each of ...
0
votes
1answer
94 views

Which models to be used ? MVC, Joomla [closed]

I have a Joomla component. Backend File Structure Frontend File Structure In Joomla in the front-end component we can use the back-end models rather than using front-end models. According to ...
1
vote
1answer
51 views

in codeigniter, how do i load a library that has multiple directories

for example, here is my path to one of my library: application/libraries/samples/samples.php now how would i load the samples.php library in codeigniter, since it is not at the root level of the ...
1
vote
2answers
34 views

PHP: One system directory for a framework

Is one system directory for a framework used by multiple projects (applications) a good idea? Or should one have a single system folder per application? It would be easier to update just one base, ...
0
votes
1answer
67 views

Place sensitive files outside the root (multiple programming languages)

I'm going to use multiple programming languages (Python, Ruby, PHP) in highload project and I'm interested if it worth to place sensitive files such as database configuration files or server ...
0
votes
3answers
315 views

How to get project root directory in php with user friendly URL

I created initialize.php to define my project's root directory. defined('DS') ? null : define('DS', DIRECTORY_SEPARATOR); defined('SITE_ROOT') ? null : define('SITE_ROOT', DS.'works'.DS.'myproject'); ...
0
votes
3answers
133 views

Is it typical to put all pages in subfolders? Even if it's a single page?

More and more I find websites that show this kind of links: website.com/page/ and testing if there's in index.php inside the folder like website.com/page/index.php I found always true. So my ...
4
votes
1answer
1k views

What is the correct or preferred directory structure for a Zend Framework 2 module?

I would like to get to grips with Zend Framework 2 by using it for a small project. I have been through various blogs articles, docs and of course the fantastic tutorial by Akrabat (Rob Allen). ...
3
votes
1answer
108 views

RegEx with character set inside positive lookbehind, Is it possible?

I need to match "name" only after "listing", but of course those words could be any url directory or page. mydomain.com/listing/name so the only thing I can "REGuest" (request) is to be some parent ...
1
vote
1answer
327 views

MVC based system general files/folders structure

I'm trying to figure out the correct layout of classes, methods, files and folders for a MVC design based system. Let say we have a Page. Page is a simple page with title, text and a sub menu. And it ...
0
votes
1answer
96 views

My php app directory structure is a labyrinth

I'm working on an old php web application. The problem is the organization of all the files is more or less random. My favorite is at one level there is both an 'include' folder and an 'includes' ...
2
votes
1answer
258 views

How to organize and structure user albums of images in PHP/MySQL

One of my sites has a lot of users. They currently each have one profile pic. To keeps things fast and efficient, I've spread the profile images out based on their unique UserID so that no directory ...
-3
votes
2answers
153 views

Where should a PHP framework be placed on a webserver?

Does anyone have an idea on where is it best to upload a PHP framework such as Yii, or CodeIgniter? Should I upload the files into a sub-directory within my website, or right into a root directory ...
1
vote
3answers
416 views

CakePHP controllers and models in subdirectory

hello i was wondering how can i put my components and models in sub sub directories, lets say i have a web application that have 3 different areas (admins, users, developers) each one of them performs ...
-3
votes
1answer
426 views

errors keep cropping up implementing a basic phpthumb script…Permission denied on line 1070 of GdThumb.in.php

I wanted a script that automatically generates thumbnails when from a folder full of larger images. I've ran into some problems implementing it. I was getting some errors early on because I hadn't ...
2
votes
4answers
476 views

PHP directory structure confusion

I am attempting to create a website utilizing PHP as the driving power behind the gears. The idea behind the site (generally) requires that each user be presented with the option of creating their own ...
0
votes
1answer
122 views

PHP - Relative Paths! Easy for experienced developers, I should think

Okay, Long story short, I have this code: The story is; I have a website where I sell digital downloads, and have been trying to set up PayPal express checkout for some time. I am finally getting it ...
0
votes
2answers
1k views

PHP - The system cannot find the path specified. (but it finds it from another file)

My main app is at: '.app/index.php' What I do from there is parse a directory foreach (new DirectoryIterator('./app/uploads/images/') as $fileInfo) { if($fileInfo->isDot()) continue; ...
0
votes
2answers
54 views

Best way for checking new files which need to be processed

This is more a general question than really a language-specific one. I have to implement a program, which automatically processes csv files (read the file, write to database, move file). This isn't ...
1
vote
1answer
386 views

Building A Log Reader with PHP RecursiveTreeIterator

I have this dir structure for logs logs -2012 --01 ---01.php ---02.php --02 ---20.php ---23.php I want to be able to use PHP's RecursiveTreeIterator to be able to display a tree having actual php ...
0
votes
2answers
79 views

Just 3 images per user, do I need to go to the trouble of creating a clever directory structure?

I've read several questions about storing images in a database as opposed to folders on the server, and I've decided to go with folders, but I'm wondering how clever I need to be. I've found a lot of ...
0
votes
4answers
2k views

XAMPP Local installation File Path problems

I like to work on websites locally before uploading to my host. I use PHP/MYSQL servers in an XAMPP install. I have multiple directories in XAMPP htdocs directory (one for each project). Each project ...
1
vote
4answers
81 views

How to eliminate lengthy relative include paths

Is there a favored method for specifying the root folder of your website/application without having to resort to code like this: require '../../../../config/settings.php'; I've used various methods ...
0
votes
1answer
875 views

How to create a module-based php-application

I am quite new to php and are about to start developing a system that will be favoured by having a module-oriented design since new isolated/independet "services" will be added to the system over ...
0
votes
0answers
200 views

Howto setup a good and basic directory structure

I've been thinking quiet some time about the directory structure I'm using for my library at this moment. I'm not very happy with the looks of it and it doesn't feel right. In my structure I tend to ...
5
votes
2answers
64 views

What is the best practice for saving libraries from their actual projects

For some educational reasons I've started a while ago to build my own library. It started out as a simple library with some usable classes, but as it still grows everyday and I've been using it ...
1
vote
1answer
342 views

What is correct web-app file structure? And why? [closed]

What is a typical file structure for a web-app? You've got your brouchure websites: [+] root [+] images [+] css [+] javascripts [+] pages - index.html - biographies.html - ...
1
vote
1answer
59 views

How to load view in webroot?

Here i want to do. User can upload his/her template like wordpress. So the controller would load depend on what template they selected. Here my simple folder structure /app/webroot/files/ <--- ...
2
votes
1answer
585 views

Recursive directory to array in PHP; relative mapped to absolute

I'm pulling results from a recursive directory listing into an array, and was wondering if there is a better (read faster, briefer, etc.) way of doing it. Specifically, I'm creating an array of: ...
0
votes
1answer
236 views

Codeigniter views: How can I create subdirectories for my views?

In my views folder for codeigniter I would like to have a sub directory for each of my categories. /home /about us /services and each of these will contain different views. How can I point the ...
10
votes
4answers
8k views

Are there best-practices for the structure of a website?

Are there any guidelines on how to structure the directories of a website? Where to put the PHP files, Javascript, HTML pages, resources like images, etc?

1 2