3
votes
Where am I supposed to see FirePHP output?
I believe FirePHP required you install a Firefox extension (in addition to Firebug) that watches for the HTTP headers and puts them in the console.
If that isn't the problem then I'd recom …
0
votes
Facebook RSS application
You have two options.
Convert your user session (when the user accesses your app manually) to infinite session, then periodically update the profile information for a user. There …
2
votes
Caching paginated results, purging on update - how to solve?
You might also want to have a look at the cost of storing the cache data, in terms of your effort and CPU cost, against how what the cache will buy you.
If you find that 80% of your forum …
0
votes
CodeIgniter doesn’t like functions in views?
I'm not familiar with CodeIgnitor, but it could be including your templates multiple times. Try wrapping your function in a check:
if (!function_exists('myfunc'))
{
function myf …
2
votes
How to password protect streaming videos with php
Both nginx and lighttpd web servers have X-Send-File headers you can return from PHP. So you can do your checks in PHP and then conditionally server out the file.
if (check_user_can …
0
votes
PHP MySQL SQL parser (INSERT and UPDATE)
Facebook released a open-source PHP version of their FQL parser. From what I was it was quite neat code. You could possibl …
3
votes
Robust, Mature HTML Parser for PHP
PHP Simple DOM Parser looks good. I haven't tried using it yet though.
…
0
votes
Hash Collision - what are the chances?
The other comments have covered you on the probabilities, however if you look at this pragmatically then you can get a definite answer for yourself.
You said yourself that you are going to …
2
votes
Simulating a cookie-enabled browser in PHP
For a server-side HTTP client you should use the cURL module. It will allow you to persist cookies across multiple requests. It also does some o …
3
votes
Can you code a class function outside of a class in PHP?
No. You need to including all your function definitions inside the class block. If defining your functions in a separate structure makes you feel better you could use an interface.
…
2
votes
Is Symfony a good framework to learn?
I used Symfony for a (now defunct) project. It seemed really good, but in the end I wasn't too impressed with it.
It was very polished and had good documentation. There was nothing specif …
0
votes
PHP debugging - where to set the breakpoints? how to authenticate?
You want to change the current user's authentication details mid-way through a request?
I don't think this is possible. Zend Debugger is pretty much a read-only tool. Even if it were, you' …
2
votes
PHP debug_backtrace in production code?
You said in a comment
The callee's task is to call the same method that called it on a different computer. It's to avoid having a different API function for every possible so …
2
votes
Which PHP Framework is most closely cloned to ActiveRecord (RoR)
If you are looking for a ORM package then Propel is quite nice.
PHP has a little bit of trouble implementing the Active Record pat …
0
votes
How to obtain anchor part of URL after # in php
Edit: Whoops, this won't work. The other posters are correct in saying that anything after the hash never reaches your server.
Something along these lines should do you: …
