Comments on: PHPbase web framework https://hm2k.org/posts/phpbase-web-framework Research and development Sun, 12 Jul 2009 21:44:36 +0000 hourly 1 https://wordpress.org/?v=5.5.1 By: Emanuel Giurgea https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-170524 Sun, 12 Jul 2009 21:44:36 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-170524 Hi,

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.

]]>
By: Maurice https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-99659 Sat, 13 Sep 2008 20:31:05 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-99659 Ok after some search in the code I found the handling for the checkboxes.

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.

]]>
By: Maurice https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-99589 Sat, 13 Sep 2008 14:00:19 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-99589 Hello all.
I am currently working on a car dealer website and I see a problem above from Martin with the checkboxes. I experience the same here. Was someone able allready to solve that issue?
You can use checkboxes and store a ‘checked’ value but you can not uncheck them anymore.
Hope someone can help, thanks guys.

]]>
By: Arthur Manning https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-83833 Mon, 14 Jul 2008 14:04:34 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-83833 I had to dig through this code for someone wanting to use it for a car dealer website. File uploads for ads were not uploading. Some code comments are very useless and look like the work of some high-school kid just learning PHP. Not very easy to navigate or debug. I got very nervous seeing an ‘eval()’ function based on customer-configurable .xml file data (very dangerous and likely easily broken/hacked).

]]>
By: Martin https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-76142 Wed, 18 Jun 2008 22:42:46 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-76142 Hey all, i’m actually editing the script car-dealer-website for another kind of script and im bumping off my head for a silly thing;

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?

]]>
By: Florin https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-27540 Wed, 05 Dec 2007 00:43:00 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-27540 Hi,

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.

]]>
By: hm2k https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-26173 Mon, 26 Nov 2007 21:37:46 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-26173 Ah yes, I did come across oxylus-development.com on my travels after finding “oxylus.ro” in one of the email addresses for one of the developers. As it seems their “service management” system, which was last updated 04-Oct-2006, appears to use a slightly updated version of the libs.

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.

]]>
By: Striker https://hm2k.org/posts/phpbase-web-framework/comment-page-1#comment-26167 Mon, 26 Nov 2007 21:19:40 +0000 http://www.hm2k.com/posts/phpbase-web-framework#comment-26167 I’m a PHP n00b poking around with a web dev project at work.

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 🙂

]]>