Search Results

1
vote
2answers
206 views

Cake PHP plugin/img/ diectory throws missing method instead of 404

I have a Cake PHP plugin that I have written. The plugin has its own controller so that it can serve up some dynamic code on the plugin's index page (/keyedit/ or /keyedit/index). When imag …
0
votes

How do I replace ‘php3’ with ‘php’ inside every file in a directory.

sed -i 's/php3/php/g' * Assuming you are using a unix-like operating system. …
51
votes

Defend PHP; convince me it isn’t horrible

In addition to the above, php's documentation kicks ass. http://www.php.net/rand and you go right to the doc page for it, as well as tons of use …
0
votes

Connect to a MySQL server over SSH in PHP

I would use the autossh tool to create a persistent ssh tunnel to your mysql database. Then all you have to do in your PHP code is p …
0
votes

Scaling LAMP

Barrett's answers are pretty much what I would do -- id the bottlenecks, look at memcached, move the DB to a separate server from web services, etc. I would add that Amazon has a new servi …
1
vote

How to remove excess whitespace added to code by FTP program?

You may also be having a problem with the other editor using tabs when you are using spaces (you are using spaces, right?). I have seen similar problems when sharing source between developers on Li …
1
vote

How to fix Apache instability ?

Check your timeout settings in /etc/apache2/apache2.conf, I have seen similar problems when Timeout is set high and the system gets hit with a bunch of dropped connections. …
0
votes

What is the best way to get the errors from a production site in PHP?

One thing I have used in the past is epylog, it is a very flexible log monitoring app written in python. You can set it up to monitor y …
8
votes

Subversion… practical with a PHP framework app or not?

Subversion allows you to store your source in a central location, make changes from multiple places (ie. laptop, desktop), track changes and revert changes to your source tree if needed. Ha …
5
votes

How can I implement commit/rollback for MySQL in PHP?

Take a look at this tutorial on transactions with PDO. Basically wrap the long running code in: …
0
votes

Optimize feed fetching

The best thing to do is to be 'nice' and not overload the feeds with lots of needless requests. I settled on a 1 hour update time for one of my webapps that monitors about 150 blogs for updates. I …
1
vote

How to redirect to (or enforce) SSL connection?

Take a look at the PHP header manpage, specifically this user contribution regarding https handling and redirecti …
2
votes

Should I use PHP or Perl for massaging my data and storing/retrieving it with MySQL?

PHP works fine from the command line. If it is what you are familiar with, and more importantly what the company is familiar with (think of who has to maintain it after you). …
0
votes

PHP - Function/variable naming

Yes, the most important thing is consistency. If you are the lone developer, stick with a method. If you are working with a team, talk to the other team members. Differentiating between globals, fu …