3
votes
What is a good PHP library to handle file uploads?
I personally use HTTP_Upload from PEAR. It works pretty well for our purposes (uplaoding media files into a development system a …
1
vote
PHP object caching
What I always do if I have to be able to write is to ensure I'm not writing anywhere I have PHP code. Typically my directory structure looks something like this (it's varied between projects, but t …
-1
votes
PHP Application URL Routing
Zend's MVC framework by default uses a structure like
/router/controller/action/key1/value1/key2/value2
where router is the router file (mapped via …
2
votes
What’s the best process / app for automated deployment of PHP apps?
I've used a home-grown script for quite some time. It will (based on an application configuration file):
Run svn export on the repository based on a tag.
Package …
0
votes
What’s the best process / app for automated deployment of PHP apps?
I don't know if it works for deploying an app live, but phpUnderControl is a continuous integration suite (which I'm just now starting t …
1
vote
Standard connection libraries for MySQL, MSSQL, and Oracle in PHP
I'm supprised *Zend_Db* hasn't been mentioned yet...
PEAR's MDB2: very stable, also provides a layer that implements all MDB2-supported features in all datab …
4
votes
What’s the best way to only allow a PHP file to be included?
I have long kept everything except directly viewable scripts outside the web root. Then configure PHP to include your script directory in the path. A typical set up would be:
appdir
inc …
1
vote
Does anyone write really long, complex php apps, and if so, what is your problem domain?
My company works on educational software. We've recently started doing web-based content delivery, including video and audio, with the backend written entirely in PHP using MySQL. We have two prima …
0
votes
PHP strptime format bug?
Nothing obvious since both versions work fine in PHP 5.2.0. I can't readily check 5.2.6 at the moment, though. That will have to wait until I get home.
…
1
vote
Best practices to test protected methods with PHPUnit
I think troelskn is close. I would do this instead:
class ClassToTest
{
protected testThisMethod()
{
// Implement stuff here
}
}
Then, implement some …
0
votes
Deep recursive array of directory structure in PHP
I've had success with the PEAR File_Find package, specifically the mapTreeMultiple() method …
0
votes
mySQL - One large query vs Ajax indivdual queries
I pretty much agree with what everyone else has had to say. I will add this, though. It really depends on your data and how you intend to use it and/or cache it. If the 700-1000 rows can be cached …
0
votes
PHP how to treat nonexistent URLs on a single entry point site that uses mod_rewrite
I think what you are doing will probably work fine, in general.
As for what to put on the page, there's a few resources across the web. The one that comes to mind immediately is …
3
votes
Test if a directory is a sub directory of another folder
The best way I know of is to simply make everything but the upload directory unwritable by the user the web server runs as. For instance, on Debian, Apache runs as the user www-data. S …
1
vote
Module ‘eAccelerator’ already loaded php warning
It sounds to me like you've got the configuration in multiple files.
If your set up is on Debian (or something like Debian) it could be that eAccelerator is loaded in php.ini a …
