Tagged Questions
0
votes
1answer
17 views
Trying to sanitize user input to dynamically set column name in PearDB prepared statement
I'm trying to write a simple method to sort some DB results. We are stuck using PEAR DB, which is an old OO data object class.
I need to dynamically set which column we sort by:
$query = ...
0
votes
1answer
16 views
PEAR DB, moving from MySQL 4 to 5, .ini file issue?
We're running a custom made CMS that uses PEAR DB class to handle the database. The database is using MySQL 4.0. Our hosting provider is updating to MySQL 5.0 and deactivating all databases using 4.0. ...
0
votes
1answer
32 views
Having trouble with MYSQL IN() function
I am building a dynamic news application for a site. The news will be split up into categories which may then contain subcategories(which may contain subcategories) and news articles. I have created a ...
0
votes
0answers
17 views
PEAR error with whereAddIn
In the below code it returns me entire table content, can anybody advice why my whereAddIn doesn't works.
$i=o;
$Jclients = \OA_Dal::factoryDO('clients');
foreach($linkedaccounts as ...
0
votes
1answer
107 views
Pear Error Deprecated
Well I have been writing in the same style for awhile now and all of the sudden i am getting an error in pear config.
Error:
Deprecated: Assigning the return value of new by reference is deprecated ...
1
vote
1answer
444 views
create tree from mySql database
I have a table in db with the fields
-----------------------
Id | Value | Path | Parent
-----------------------
1 | Asia | 1 | 0
2 | India | 1/2 | 1
3 | Goa | 1/2/3| 2
The list has all ...
0
votes
2answers
233 views
Difficulty changing SQL query in PHP document based on user input from form
I have a PHP document that query's a MYSQL database based on the input values from a search form. Everything is working perfectly except I am struggling to add one more feature which I believe would ...
0
votes
3answers
2k views
Difficulty using JQUERY AJAX to retrieve data from MYSQL
I am trying to use the jquery ajax api to retrieve data from a mysql database. The sql query I am using is working correctly as I have tested it by creating a user form and traditionally $_POSTing its ...
0
votes
1answer
51 views
Difficulty displayling custom error message using PEAR PHP
I need help displaying a custom error message when my search query returns MDB2 Error: no such field.
I can't figure how to do this in my program.
Any help will be highly appreciated! Thanks.
0
votes
2answers
121 views
Pagination within result view
I am currently using PHP PEAR for simple pagination. Does anyone have a recommended method or example of how to page record-sets within an existing result view? The typical model would be something ...
0
votes
1answer
153 views
Difficulty echoing error message if mysql query returns nothing PEAR PHP
I am struggling to echo an error message stating 'No results' when my mysql query returns nothing. I am using PEAR. Here is what I have at the moment.
while($rows =& $output->fetchRow()) {
if ...
0
votes
1answer
432 views
Fatal error: Call to undefined function: MDB2_Driver_MYSQL::getAll()
I am upgrading a site from Fedora 14, PHP4, and PEAR DB to Fedora 16, PHP 5.4 and PEAR MDB2 2.5.0b3, and I am getting the error
Fatal error: Call to undefined function: ...
0
votes
1answer
169 views
Difficulty querying two tables in Database using SQL in PHP document
I'm really struggling to get my code to work, and I can't figure out why.
I have a database in my PHPMyAdmin and it contains 2 tables:
tennisCourts
courtID
courtName
bookingFee
...
2
votes
2answers
124 views
Difficulty querying 2 different tables in Database using SQL in PHP document
I have a database in my PHPMyAdmin and it contains 2 tables:
tennisCourts
courtID
courtName
bookingFee
tenniscourts_Availability
courtID
court_dateBooked
I am writing a ...
0
votes
1answer
132 views
MySQL UPDATE is Creating New Record with Pear DB
I am working on a basic add/edit/delete form using PEAR DB. My add and delete functions are working correctly, but my edit function is creating a duplicate record instead of editing the active record. ...
2
votes
1answer
101 views
Fatal error memory owing to being exhausted at runtime
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to
allocate 51 bytes) in
C:\xampp\htdocs\project\App\library\PEAR\MDB2\Driver\mysql.php on line
1160
I have a large DB ...
0
votes
0answers
97 views
Correct method of connecting to database
Within our programming module we have been taught to connect to a database as follows:
<?php
require_once('MDB2.php');
include "mysql-connect.php"; //to provide $username='...'; $password='...'; ...
0
votes
1answer
279 views
MDB2 and PHP MySQL Extension on OSX
This has me stumped so far. I develop on a Mac, and I need to use MDB2, but when I try to install MDB2_Driver_mysql pear gives me
pear/MDB2_Driver_mysql requires PHP extension "mysql"
My ...
1
vote
1answer
140 views
PEAR HTML_Quick Form Functions And Processing Data
I have the following code wich is a form for user registration generated by PEAR's html-Quick Form:
<html>
<head></head>
<body>
<?php
require_once ...
2
votes
1answer
405 views
PEAR mail-queue tutorial configuration trouble
I believe that I am having problems with the .config file for the PEAR mail-queue tutorial.
I have checked my paths and they are fine.
<?php
require_once "Mail/Queue.php";
$db_options['type'] ...
1
vote
1answer
190 views
PHP PEAR's escape() vs quote() vs mysql_real_escape_string()?
Been developing an application using PHP's PEAR framework, but ran into an issue where I am double-escaping/quoting input and it wasn't letting newlines (\n) show up properly. Searching forums came up ...
3
votes
2answers
170 views
MySQL select from char column using int - leading zero causes unexpected result
I have the following data:
stockcode (CHAR) | description (VARCHAR)
----------------------------------------------
1234 | some product
01234 | some other product
I run ...
0
votes
1answer
458 views
Trouble using PEAR's Mail_Queue
I'm trying to implement PEAR's Mail_Queue package to queue some emails for a web application. I've used the documentation at ...
0
votes
0answers
140 views
how to install MDB2 for pear on window 7? [closed]
I have been install mysql、php、pear, and I dont konw how to install MDB2 on win7.
Should I install Wamp first?
0
votes
1answer
93 views
Does anyone know of a good PHP Pear Structures_DataGrid alternative for tabular output?
I've been searching around for hours looking at PEAR Structures_DataGrid with HTML_Table rendering, but it looks like the maintenance on Structures_DataGrid is not being kept up and MDB2 is getting ...
0
votes
1answer
169 views
Pear System daemon mysql_connect error
I have created a daemon using the PHP PEAR System Daemon Script. I call mysql_query within the Daemon script, but I get the error PHP Fatal error: Call to undefined function mysql_connect()
I'm ...
2
votes
2answers
2k views
pcntl and posix
I keep getting the following error
Fatal error: Uncaught System_Daemon_Exception: PHP is compiled without --enable-pcntl directive in
I have used the PEAR Daemon program to create a daemon but I ...
7
votes
3answers
605 views
killing zombie children in parent processes
So I want to do the following:
Set up a daemon that forks a bunch of processes.
So the Daemon forks a bunch of processes
then forks another bunch of processes
the problem is the child processes ...
1
vote
3answers
508 views
system daemon pear
Question,
How can I spurn another process within a daemon?
I want to use the pear system daemon library to spurn a daemon and then spurn off processes within that daemon.
So daemon runs
and then a ...
0
votes
4answers
2k views
Displaying an image with path stored in Database in a html template file with php
so my problem is that i have images storesd to a location on my server (not the web root, for security purposes) and i have the path to these images stored in the database. i ues php along with pear's ...
0
votes
1answer
69 views
What's the difference between MySQL's AUTO_INCREMENT and PEAR DB's nextID?
Is there an advantage of one over the other? Thanks.
0
votes
1answer
435 views
Where can I find a list of PEAR DB error codes?
I'm trying to establish a connection to a mysql database using PEAR DB. It's throwing the following error at me:
DB_Error Object (
[error_message_prefix] => [mode] => 1
[level] => 1024 [code] ...
0
votes
0answers
243 views
PHP encoding problem, moving to MySQL 5
I have an old but critical app written in PHP 4 using Pear::DB with MySQL 4.0 and encoding as latin1.
Now I moved the database system to MySQL 5 with UTF-8 and PHPMyAdmin works fine, it can correctly ...
2
votes
0answers
918 views
Installing PEAR on XAMPP
Attempting to install propel with PEAR on XAMPP.
This is the error I get when attempting to: pear install -a propel/propel_generator
ERROR: failed to mkdir
...
0
votes
1answer
653 views
Magento Installation Wizard Errors
I'm trying to install magento in a subdirectory on my hostgator server. I did the necessary pre install through SSH and am now trying to finish the install through the magento installation wizard ...
0
votes
1answer
2k views
Pear DB class not found
I have create a class called Database.php for interacting with MySql database using Pear Db class.
Database.php
<?php
require_once('DB.php');
require_once('cException.php');
class DataBase
{
...
0
votes
1answer
1k views
PHP Pear how to enable debug level?
I'm trying to migrate a website from 1 linux (php4) PC to another 1 linux PC (php5).
The website is made of Apache+PHP+Smarty+MYSQL.
Now I'm getting this error "DB_DataObject Error: Connect failed, ...
0
votes
3answers
144 views
1
vote
3answers
2k views
Cannot connect to database with PEAR php
Im having a little trouble connecting to a database with PEAR on my GoDaddy hosting account.
I am able to connect to my database with the standard mysql_connect.
I have downloaded the DB package ...
0
votes
1answer
782 views
PEAR “DB.php” error using EasyPHP
Using EasyPHP I've discovered an annoying error I can't seem to fix. I searched the internet, got a few hits, but I gained nothing from these blog posts and pages.
PHP and Apache works fine, but when ...
1
vote
1answer
295 views
Upgraded MySQL 5.0 Linux -> MySQL 5.1 Windows and now query doesn't work
First of all, I know this SHOULDN'T work. We're using a very old DAL/ORM (Pear/DB/GenericDao based) layer that incorrectly surmises that id is not an autoincrement/integer field.
This statement ...
0
votes
3answers
1k views
MDB2, Pear, Mysql error
I have PEAR, MDB2 and Mysql Driver installed however I keep getting:
Fatal error: Call to undefined function: MDB2_Driver_mysql::_isNewLinkSet(). in /home/**/PEAR/MDB2.php on line 1937.
The Server ...
0
votes
5answers
213 views
Has Anyone Here ever tried PEAR
Hi I have been reading alot of articles adoring the PEAR mail package and it seems like PEAR is something I need to try out.
I am interested in setting up a full mail server, similar to a ...
0
votes
1answer
313 views
Pear DB_DataObject and input cleaning
I normally use a function of my own to clean input before adding the values inside a query to prevent sql-injections. I also use pear DB_DataObject.
I read somehere that DB_DataObject cleans the ...
6
votes
6answers
6k views
Replacement for PEAR: MDB2 on PHP 5.3
I've been using pear packages in php for years. I'm in the process of upgrading/moving a sites that uses the MDB2 pear package and it has not been updated for PHP 5.3.X.
In 5.3, MDB2 is returning ...
0
votes
1answer
91 views
Adding a radio button against each record
The following code uses the DB extention provided by PEAR.
I want a radio button against each record so that the user can select only one record from the list and submit. There can be hundreds of ...
0
votes
2answers
5k views
PEAR::DB Error, Extension Not Found
I am attempting to install phpBugTracker on our web server. When I attempt to test the database connection on the installation screen, I get an error screen that reads "DB Test Failure... DB Error: ...
0
votes
5answers
1k views
Which should I use, pear MDB2 or pear DB_DataObject when I use MySQL when I can not use PDO?
Almost all of free web hosting server,
you can not use PDO + MySQL.
They lack PDO drivers.
So I am considering to select
pear MDB2,
or DB_DataObject.
Which do you reccomend to me?
Give me your ...
2
votes
5answers
861 views
PHP5: calling external functions, and logging errors
I'm painfully new to PHP, and was trying to set up phpBB on my local site. I have a stock debian install of apache2 and php5. The phpBB installer ran fine, connected to the database and created all ...
0
votes
1answer
1k views
MDB2 disconnects and forgets charset setting when reconnecting
We recently debugged a strange bug. A solution was found, but the solution is not entirely satisfactory.
We use IntSmarty to localize our website, and store the localized strings in a database using ...
