Jump to content

tinkertron

Members
  • Posts

    49
  • Joined

  • Last visited

    Never

Everything posted by tinkertron

  1. Warning: mysql_pconnect() [function.mysql-pconnect]: Access denied for user 'dev'@'localhost' (using password: YES) in C:\xampp\htdocs\phpgrid\adodb\drivers\adodb-mysql.inc.php on line 373 Could not connect to the database
  2. Is there any other dezend that won't drop the HTML?
  3. Well I don't know what happen but I can tell you this, this file was ZEND and I used a DEZENDER. Do you think the DEZENDER didn't work right?
  4. So I just install this software I bought acouple of days ago, and durning the setup of the phpgrid.php I get this error: Parse error: syntax error, unexpected ')' in C:\xampp\htdocs\datagrid\include\cls_control.php on line 52 Here's the cls_control.php file: <?php class c_htmlcontrol { var $type; var $varname; var $text; var $val; var $is_choosen; var $is_disabled; var $attr_select; function c_htmlcontrol( $newtype, $newvarname, $newval, $newtext, $new_attrselect, $disable = false ) { $this->type = $newtype; $this->text = $newtext; $this->varname = $newvarname; $this->val = $newval; $this->is_choosen = false; $this->is_diabled = $disable; $this->attr_select = $new_attrselect; } function render( ) { $html = ""; switch ( $this->type ) { case "select" : $html .= "<option value='".$this->val."'"; break; default : $html .= "<input name ='".$this->varname."[]' id ='".$this->varname."[]' type ='".$this->type."' value='".$this->val."'"; $html .= $this->is_disabled ? " onfocus='blur();' " : ""; } $html .= $this->is_choosen ? " ".$this->attr_select." " : ""; $html .= " />".$this->text; echo $html; } } class radio extends c_htmlcontrol { var $type; function render( ) { ( ); } function radio( $newvarname, $newval, $newtext ) { ( "radio", $newvarname, $newval, $newtext, "checked" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } } class dropdown extends c_htmlcontrol { function render( ) { ( ); } function dropdown( $newvarname, $newval, $newtext ) { ( "select", $newvarname, $newval, $newtext, "selected" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } } class checkbox extends c_htmlcontrol { var $delimiter; function render( ) { ( ); } function checkbox( $newvarname, $newval, $newtext, $newdelim ) { $this->delimiter = $newdelim; ( "checkbox", $newvarname, $newval, $newtext, "checked" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } function get_delimiter( ) { return $this->delimiter; } function set_delimiter( $newdelim ) { $this->delimiter = $newdelim; } } class multiselect extends c_htmlcontrol { var $delimiter; var $size; function render( ) { $html = ""; $html .= "<option value='".$this->val."'"; $html .= $this->is_choosen ? " ".$this->attr_select." " : ""; $html .= " />".$this->text; echo $html; } function multiselect( $newvarname, $newval, $newtext, $newsize, $newdelim ) { $this->size = $newsize; $this->delimiter = $newdelim; ( "select", $newvarname, $newval, $newtext, "selected" ); } function get_value( ) { return $this->val; } function set_value( $newval ) { $this->val = $newval; } function get_delimiter( ) { return $this->delimiter; } function set_delimiter( $newdelim ) { $this->delimiter = $newdelim; } } ?>
  5. OK I found their disclaimer to the software, and this is what it says: http://www.phpgrid.com/grid/license.php SOFTWARE MODIFICATIONS Although phpGrid does not have restriction on modifying the software by the end user, due to the nature of scripting language the source code of phpGrid is easily exposed to the end user, thereafter, PhoebeSoft Inc does not provide support of any sort if users have modified the source code of the software in any way. So if someone can teach me how to decode about 16 php files, that would be greatly apperacated!
  6. Why do I have to explain myself? It's a stright foward question. Simply is there rules in this forum about people asking for help from others in this forum to crake or decode php files. Gezzzzzz. There does not seem to be any attached copyright or terms and conditions attach to the files, but I want to decode the file so that I can learn the php layout and try to build from it for my personal uses. The files are from phpgrid. I bought the software last week and it's encoded with ZEND optimizer, which I installed but i'm still unable to run the php software file. Here is another question. The software in question is a datagrid software. So If I have to install Zend optimizer, and once I publish the grid online, do the users also have to install Zend optimizer to view my grid?
  7. Is it illegal for me to ask for someone here to either decode or crack a code php file in this forum?
  8. I want to protect my site with a PHP/MySQL. I've search high and low for a simply basic not to fancy PHP/MySQL user and password protection. No need for fancy grapchics and all that crap. What I do need is: A log in screen A admin control panel to add and remove users and a code to add to each page that will be protected and a code to log-out and re-direct users to another page. Your help would be greatly appreciated!
  9. I think i might have found what you are looking for: PHP Version 5.3.1 System Windows NT SPARKY 5.1 build 2600 (Windows XP Home Edition Service Pack 3) i586 Build Date Nov 20 2009 17:20:57 Compiler MSVC6 (Visual C++ 6.0) Architecture x86 Configure Command cscript /nologo configure.js "--enable-snapshot-build" Server API Apache 2.0 Handler Virtual Directory Support enabled Configuration File (php.ini) Path no value Loaded Configuration File C:\xampp\php\php.ini Scan this dir for additional .ini files (none) Additional .ini files parsed (none) PHP API 20090626 PHP Extension 20090626 Zend Extension 220090626 Zend Extension Build API220090626,TS,VC6 PHP Extension Build API20090626,TS,VC6 Debug Build no Thread Safety enabled Zend Memory Manager enabled Zend Multibyte Support disabled IPv6 Support enabled Registered PHP Streams https, ftps, php, file, glob, data, http, ftp, compress.zlib, compress.bzip2, phar, zip Registered Stream Socket Transports tcp, udp, ssl, sslv3, sslv2, tls Registered Stream Filters convert.iconv.*, string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk, zlib.*, bzip2.*
  10. I believe that this is the only php.ini file on my system, cause I did a whole search on my system for php.ini and my system shows the php.ini in C:\xampp\php folder... I don't not understand this statement
  11. I just bought a PHP form maker by appnitro.com MachForm. When viewing form on my server I get alot of error messages as soon below. Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 1561 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 1643 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 1654 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 1704 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 1892 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 1975 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 1986 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 2042 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 2212 Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\machform\includes\view-functions.php on line 2272 I was told to make changes in my php.ini. To fix this, you'll need to modify your php.ini file. Search a line which contain this variable: error_reporting Change it to become like this: error_reporting = E_ALL & ~E_DEPRECATED Save it and then restart your XAMP server. The error message should be gone now. But after doing this over and over I still get the same messages. Could my php.ini be corrupt?
  12. I tried Russell code first and this is what I got: Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\display.php on line 9 here's the code: Would this be because it does know what database or table to pull from?
  13. Thanks Russell! I just found how to add entries into my MySQL db using a basic html form. I feel so great that I will pick up on this piece by piece! I can't believe I have already created my first online db!
  14. As mention before, i'm new to the whole PHP programming, but can some tell me how to display my db from MySQL to the web? I know you need to call the db up from MySQL, but how is it display to the web page as a table like excel? I have about 17 colms and there is going to be at least 600+ rows. Someone start me off so I can start learning.
  15. I need a webpage phpgrid, I've seen so many out there one I really want, but don't know if I can trust them if I need service, cause they won't return my emails with question that I have, and I want to make sure that if I slap down alot of money, that I would get the help that I need. The other companies out there are cheaper, but also don't want to pay alot with customizing help. I'm very new to the whole php programming. Can I get some suggestions? Here are the two companies that I'm looking at right now. http://www.phpgrid.com/grid/ <--- this one has great grids, but I have acouple question about getting somethings cutomized, and it's hard to get them to response in a timely manner and there is not phone or address contact from these people. http://www.apphp.com/php-datagrid/index.php <---- this one is OK and the price is better then the phpgrid.com, and plus this company offers installation for less then $20.00, they offer custom needs, but don't offer any information about priceing on customizing. So if you know any that are better then the ones i've listed, I would like to see them.
  16. I'm going to start using PHPgrid http://www.phpgrid.com/grid/ or PHPDataGrid http://www.apphp.com/php-datagrid/index.php?page=examples but my "control panel" will be seprated from the appilcation, so I will need to crate a "frame" of some sort. I readed about staying away from HTML frame, and foces more on the iframe or ccs frame, and then I saw something about using PHP frames. Can anyone suggest which I should uses when it comes to this type of stuff? I want a header of my page to remain still with the controls visable at all times, I don't mind if the database table scrolls up and down and left to right, but I need something that will work with the database. Also I will be using a AJAX/Javascript popup form box
  17. I have a MySQL database setup, now it's time for the table (gridview) design in php. Here's the problem i'm having. I have about 22 colms, but from colm 10 to 16 I want to place in one colm from 1 up to 6 rows. 10 through 16 are allegation. Can someone make a simple php table so that I can learn from the source code. The only problem I have is understanding how to get (if) only 1 allegation is inputed into the database, compare to if 2 or 3 or 4 or 5 or 6 allegation will fit into only colm. Here are my headers Officer Date LastName FirstName SID# InstantOffense DischargeDate ArrestDate Booking# Allegation1, Allegation2, Allegation3, Allegation4, Allegation5, Allegation6 Type CourtDate InterviewDate HearingDate HearingType BoardDate BoardDecesion As you can tell there are 6 type of allegation, there might and might now be up to 6 allegation, but how would i do a php table like this? I do have a simple HTML table at http://tdcj.homeip.net if you would like to view what i'm talking about...
  18. Hey thanks for the ezdatabase file, but it doesn't look like something I need or was hope for what I though it was. This program doesn't have the funcation of forms to do data entries.. All it does is provide a secure loggin screen and option to upload your current excel spreadsheet database. I need a funcational database with forms and sercurity login and logout
  19. Will you suggest a price range? I think I have a beginner that willing to do it for $50.00 from the UK. From the pro side I've been told anywhere from $1000.00 to $2500.00. Please visit my site tdcjdallascounty.com , there I have a none working visual database on what I want and how I want it to look. Take a look, and give me your idea of a price.
  20. I'm looking for two types of PHP/MySQL database on of them being very simply like (Tracking Incoming Files and Outgoing files) The other is very details and needs alot of features tracking about 700 offenders in a pre-revocation process for the Texas Dept. of Criminal Justice. Might be willing to hire someone, depending on price. As far as the simply database for tracking incoming and outgoing files I seen something around called ezdatabase, but can't find the delevoper website or anyone with a copy for download.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.