I have a small web site running php on fusebox. The site requires a default fuseaction be executed everytime somewone logs on to www.mydomain.com. I know how...
] I have a small web site running php on fusebox. The site requires a ] default fuseaction be executed everytime somewone logs on to ] www.mydomain.com. <snip>...
hi -- i'm a php & fusebox newbie. i just set up the wireframe tool and it works fine, except it looks to me like i can't create a new page, only links on an...
hi -- i'm a php & fusebox newbie. i just set up the wireframe tool and it works fine, except it looks to me like i can't create a new page, only links on an...
jenlindner wrote: hi -- i'm a php & fusebox newbie. i just set up the wireframe tool and it works fine, except it looks to me like i can't create a new page, ...
Jeff Miller wrote: jenlindner wrote: hi -- i'm a php & fusebox newbie. i just set up the wireframe tool and it works fine, except it looks to me like i can't...
On Tuesday 09 September 2003 10:17 am, jenlindner wrote: ] i'm a php & fusebox newbie. i just set up the wireframe tool and it ] works fine, except it looks to...
Hi, in the fusebox hierarchy where would I place regular functions (PHP)? For example function for generating <select> box, or database connection function. Is...
Hi Dan, There are several ways to do this... :) If I have functions/classes that are used throughout the entire Fusebox I do a require_once() in the...
Hi, Is this a correct way of doing things? From root fbx_Layouts.php: (what I am concerned about is the circuit comparison) if($attributes["stoplayout"]) { ...
Another issue to keep in mind is, it's important to keep the code modular, but without having to worry about multiple versions of the same function. I don't ...
Hi All, I'm working on an e-commerce app that will store credit card data in MySQL. I want to encrypt them using mcrypt. My understanding of encryption is ...
] I'm working on an e-commerce app that will store credit ] card data in MySQL. <snip> ] The real question is, where should I store the key? Right ] now I'm...
Hi, I am trying to implement Search Engine Save, based on SearchEngineSave.php from bombusebee.com. I have included this file in index.php before including ...
... Hi Jerzy, Your ISP might be using suexec to run PHP for security reasons. If so, $_SERVER['PATHINFO'] doesn't get created. I've looked into it a little ...
Hmmmm, How $_SERVER['PATH_INFO'] should look like? Maybe, the simple solution would be to pass whatever is expected from $_SERVER['path_info'] into this...
Hi, SUB: http://www.subtledomains.com - Complete Website in PHP! This email is to introduce you to a new domain registration website with a good price, and...
... file, ... To me, that indicates that I should put a copy of fbx_Layouts.php inside a circuit if I want it to have a custom layout. So I tried that last...
Unless I've missed something all this time I haven't seen anything in the core code that would have you do it any other way. Your code is pretty standard. I...
One thing that I've done that helps is add a a boolean var called suppressLayout to the attributes array that I always check before setting the layout file &...
Anyone here storing credit cards in the db? If so, how much are you encrypting? Right now I'm just encrypting the number, but the paranoid side of me has me...
I guess the more encrypted the better. How are you encrypting and decrypting this? The only secure way I can think of is using public / private key encryption...
dont forget that if you store sensative data like this you need to be aware of certain privacy and data protection acts based on where you live. just a...
I'm using Mcrypt with TripleDES. This was recommended by PHP Cookbook The script has to be able to unencrypt them at times because it has to periodically post...
Hi Derek If I understand what you are doing then there is a problem in that if your server is broken into then someone only needs to find a few lines of your...
i'm a newbie but can't you encrypt with a key/password and then when someone wants to look at the credit card number, they would be prompted for the ...
Yes, but that doesn't lend itself well to automation i.e. a cron job that batches transactions. Unless I'm missing something... -Derek ... From: Rob...
... That's correct. For it to be (much, much more) secure, there has to be some human intervention. For example, manually entering the private key over SSL...