Tagged Questions

K2F is a brand new framework for helping people write web apps rapidly with the right tools while at the same time having the ability to make your apps run on different systems (CMSes, CRMs etc) without changing a single line of code.

learn more… | top users | synonyms

7
votes
3answers
535 views

PHP proc_open opens multiple times

I have a utility function used for executing a program through CLI (cmd, bash etc). It returns an array of 3 items: STDOUT, STDERR and EXIT CODE. So far, it's been working nicely without issues. In ...
3
votes
1answer
411 views

Proper shell execution in PHP

The problem I was using a function that made use of proc_open() to invoke shell commands. It seems the way I was doing STDIO was wrong and sometimes caused PHP or the target command to lock up. This ...
1
vote
4answers
210 views

Using eval() to enhance security

I admit the title is mostly a catch 22, but it's entirely relevant, so please bear with me for a while... Background As some may know, I'm working on a PHP framework whose major selling point is ...
1
vote
0answers
352 views

Wordpress create fake frontend menu pages

In all this confusion, my main objective is to show some menu items in the frontend that link wherever I want (subject to filtering). To do this, I first looked up the code in wp_list_pages() and ...
1
vote
3answers
444 views

PHP strange DOCUMENT_ROOT

So basically, I'm writing a framework, and as part of it features, it's supposed to provide a set of well-established URIs/paths to the end-developer. Some two of these paths make use of ...