I found this page accidentaly, but i’ll answer some of the questions :).
First of all what you got from that websites its a very small part and unmodularize framework of what we used to call Phpbase, and later it become OXYBase.
The framework its for our internal use only, the only time it was distributed freely on the internet was when we made some small projects for that guy with adveritments you mentioned above ( i think there are about 10+ applications he got from us ).
If anyone has problem using that has questions or needs a newer version ( compatibile with php5, and modularized ), mail me at [email protected], its nice to see somebody was able to reuse some of our work .
Take care
Emanuel Giurgea
OXYLUS Development.
To store checkbox items in the correct way do the following.
-In the database create the checkbox items as INT(1)
Then locate and edit ../admin/lib/sqladmin.php
– locate the line: switch ($val[“type”]) {
(this is somewhere around line 204 in the code)
– Add the folowing code;
case “checkbox”:
$_POST[$key]=isset($_POST[$key]);
break;
– Safe the file and voila.
Goodluck guys.
]]>I used for a regular checkbox. The checkbox works fine but when it comes to uncheck the checkbox the form doesnt take in charge the new value for this checkbox which is suppose to be ‘nothing’ because I’ve unchecked it.
I dont know if you guys really understand what I mean..
When I check the checkbox and send the form, it works fine and the database takes in charge my value but when I go to edit this form and uncheck the checkbox, the database keep the old value …
What I want is when it comes to uncheck the chexbox this value is reseted to ‘nothing’.
Any ideas?
]]>I found this framework on the internet too and I got in contact with the guys from oxylus. This was some kind of limitated framework for applications released as GPL. I managed to get their commercial framwork and it has nothing to do with the one you discuss. It modular, and the most importants its fully compatible with php5.
From what i can see even i’m a novice on this the code looks preaty neat, but without proper documentation its kinds useless.
]]>I had a look at the code, it seems (excluding comment changes), only common.php, database.php, forms.php, html.php and template.php has significantly changed.
There appears to be a few fixes added, and some missing.
It’s an interesting framework to look at, but ultimately it’s bad code, and it would require a revamp to survive PHP4 becoming obsolete at the end of this year.
]]>I found those spam-like pages and was interested in how the framework ticked. I’ve been working with it for awhile and have learned a lot about PHP the devleopment of a user-based login system with MySQL functionality.
Here’s their latest site with updated framework. Looks like this framework is still in use, they have a more complete release that requires purchase. 0.2 is open source and free to use.
http://www.oxylus-development.com/
Enjoy everyone 🙂
]]>