For issues relating to development using PHP, version 4.
0
votes
1answer
32 views
Debian aptitude install: 'find' not found in PATH or not executable
When I try to install any package such as php5, it gives me this error.
I did update and upgrade all libraries.
root@host:~# apt-get install apache2-mpm-prefork libapache2-mod-php5
Reading package ...
0
votes
1answer
22 views
How to restore local system time with PHP4
I have some PHP4 code in which I need to restore the system time after some code execution. I am looking for a simple statement with which I can store the current date/time, and restore it afterwards: ...
-7
votes
0answers
44 views
Content of includes not showing [closed]
The content of register.php doesn't show up on. All other includes from that folder works. Please help!
<div id="primary">
<?php include('includes/register.php'); ?>
...
1
vote
2answers
44 views
Path error with PHP include();
While I am developing my site I have it hosted on my current site in a folder. I'm not very good with levels, but this is how I set it up. In the top of my body I have:
<?php ...
0
votes
0answers
36 views
cURL settings issue in PHP5 but not in PHP4, solved, but what is the exact cause?
This is code running on a 1and1 (I know, I know) shared hosting server. Previously, it was running on PHP 4.4.9, upgraded to PHP 5.4.14, and ran into an issue wherein data was somehow being corrupted ...
0
votes
0answers
35 views
enable FTP in PHP
I need to move some files to FTP using PHP4. I tried with ftp_connect(). When I run the PHP page with this method, I got this error
Fatal error: Call to undefined function: ftp_connect()
After ...
0
votes
2answers
41 views
How to pass an additional variable into a cmp function for use with usort in php [duplicate]
I need to order an array using usort based on a string of text that comes from a mysql call using php4.
So far I have the mysql call to get the order:
$result=mysql_query("SELECT rank from order ...
-1
votes
2answers
58 views
PHP 4 code give errors on php 5 [closed]
I have PHP 4 code to check differences of two files, this works fine on old servers with PHP 4 versions, but on new servers I'm getting errors. For example:
$maxlen is no defined
And the ...
-1
votes
1answer
39 views
PHP Newbie trying to understand how to make a php4 script equivalent in php5
I am a newbie to php, so pardon me if this email sounds, well... dumb. I am trying to port some php4 code for my boss. Here is this one function that makes me stumped.
function ...
0
votes
0answers
69 views
PHP Call to undefined function errors in class [closed]
I am having a problem with a class in PHP 4.3 (hopefully updated soon).
The class:
class Course {
function get_course($assigned_id)
{
// Query to select course by assigned_id
...
-2
votes
1answer
41 views
convert script to PHP4
I'm trying to run this on an old router that has PHP embedded. It works on PHP5 but not 4.
<?php
$content = file_get_contents("test.txt");
$content = str_replace(Array("\r\n", "\r"), "\n", ...
0
votes
1answer
37 views
Solve PHP4 to PHP5 ugrade error
I have a client who have recently upgraded to PHP5. he have an error that says
Parse error: syntax error, unexpected T_CLONE, expecting T_STRING in ms/kernel/object.php on line 528
I am looking at ...
0
votes
0answers
170 views
XAMPP PHP 5 with PHP 4 site
I have a site which is PHP 4 and I am running on my local machine XAMPP PHP 5 and because of this, the site is not working on my localhost, will I have to uninstall XAMPP and install a previous ...
1
vote
2answers
141 views
Using mail() to send an attachment AND text/html in an email in PHP4
To make life difficult, the client I'm working for is using a really large yet old system which runs on PHP4.0 and they're not wanting any additional libraries added.
I'm trying to send out an email ...
1
vote
1answer
91 views
PHP version update from 4.4 to 5.3.6 broke site
Somehow when moving a site to a newer server, the php code broke. We did have it tested with a temporary site first, but it still broke.
All of the dynamic links for listings no longer work. I have a ...
1
vote
1answer
63 views
Does setting $this = &$otherObject change anything?
The comments indicate that I have to clarify my point: I'm a developer and consultant working on foreign code here. My current assignment is to help migrating an existing (very large) system from PHP4 ...
-1
votes
1answer
42 views
date gets converted to 1969 while using the php date function
Why do I get 1969 when I convert the following date to Y-m-d format.
$date1="01/02/2012";
echo date('Y-m-d',$date1);
NOTE: This is php4.
0
votes
1answer
53 views
unable to sort date using usort
I have user defined function sort which sorts by date. It works fine for the same year and does not work when the year changes.
This an example of the dates that is sorted by the function:
...
1
vote
2answers
152 views
PHP copying of remote image fails with timeout
there are many questions on this topic, but I couldn't find an answer to my scenario.
The client project I am working on is hosted on a server running PHP 4.3.9 and I am trying to copy a remote image ...
1
vote
1answer
95 views
PHP: What is wrong with my future date validator?
I have a date validator code segment, its supposed to validate any future date. For debugging purposes I want it to expire by Tomorrow, or in about 3 hours. As of writing this Tomorrow is Dec 18. Its ...
0
votes
1answer
45 views
php: script updates fields prematurely?
I'm making an auction type website that as you can imagine is supposed to delist products as they expire. the expiration is simply stored as MySQL datatype DATE.
so check_items.php:
<?php
...
0
votes
3answers
92 views
php4: wrong parameter count for mysql_query?
Not sure how much context I can provide. I just tried to do overdue homework and I get the error: Its supposed to be a simple login page, login check and loginsuccess and failure.
on check.php:
...
0
votes
0answers
48 views
Contact form php4 (lost cause?) [closed]
I have this old flash portfolio with a Contact Form I made using as2 and php4.
I'm not sure if its the as2 or the php4 which is deprecated, or both?
Here the PHP, would anyone know how to update it ...
1
vote
3answers
104 views
PHP: $_GET variable is not being properly read [closed]
I have 2 php pages: editpost.php simply generates a form to edit a user review. addcomment.php, in this case is supposed to update the mysql for that post. It simply tests to see if $_GET['edit'] and ...
0
votes
1answer
72 views
php: My regex can't validate simple phrases?
So I wrote this function:
function validate_text($text,$min,$max,$include_spaces=true)
{
$match = array();
$regex = ($include_spaces)?"/[a-zA-Z0-9 .\-_]":"/[a-zA-Z0-9.\-_]";
...
0
votes
5answers
124 views
How to resolve Warning “Cannot modify header information” in page redirect [duplicate]
Possible Duplicate:
“Warning: Headers already sent” in PHP
I have
following piece of code to do the 301 redirect at the top without any spaces and nothing above this code, but its giving ...
0
votes
0answers
128 views
Set-Cookie not working in IE
I am using the Set-Cookie function ..it works fine in chrome and firefox.
It sets the cookie and I can see it in firebug.
But for some reason it is not setting the cookie in I.E
Can anyone verify ...
2
votes
2answers
105 views
set-cookie expiration in seconds
Does the html header Set-Cookie function accept expiration in seconds?
header( "Set-Cookie:". $cookieName."=".$sessId."; expires=".$expireSeconds."; sessionID=".$sessId.";path=".$path."; ...
0
votes
2answers
78 views
PHP 4: Can not understand the OOP behaviour
While practicing for certification, I came across one MCQ the question. It was as below.
Q: Consider the following script. What will it output?
<?php
$global_obj = null;
class my_class
{
var ...
0
votes
1answer
14 views
PHP4: Wrong date
Apart from the discussion about old software, there's a problem with a PHP 4.3.10 instance in Apache 1.3.33.
This is the server date:
$ date
Qua Nov 14 11:41:25 BRST 2012
The PHP date seems to be ...
-1
votes
1answer
71 views
PHP: Help troubleshooting when echo's won't execute?
I asked this question here originally:
http://www.daniweb.com/web-development/php/threads/439484/why-arent-more-echos-being-executed
uploaded to the server(form):
...
0
votes
1answer
442 views
Does there exist Amazon EC2 AMI preconfigured with PHP4?
I'm having a very difficult time setting up a PHP4 LAMP stack on an EC2 instance. Does anyone know of any pre-configured AMI which supports PHP4?
For the record, I do not have the option to develop ...
0
votes
1answer
64 views
PHP 4 Variable losing value on scope change
echo $uid; // RETURNS INTEGER VALUE
if (isset ( $_POST ['cashpaid'] )) {
$queryfinal = "select * from " . $db_prefix . "customer_det
where `id` = '$uid'"; // UID RETURNS NULL
....
...
0
votes
0answers
91 views
PHP4 was fine. Now in PHP5, ADODB returns 'EOF' on Execute($query)
We have an old app we migrated from PHP4 to PHP5. It seemed to work just fine. Then we started seeing intermittent issues.
Here is the code segment:
function getMD5($partID) {
$conn = ...
1
vote
3answers
99 views
moving from php 4 to php 5
I got this project developed with PHP5. The project was given to me with full details (php version to use, mysql version to use, etc). My client said to develop the project using PHP5, I am glad about ...
0
votes
2answers
105 views
Getting error database not selected
code:
<?php
session_start();
$_SESSION['msg'] = "";
$con = mysql_connect('localhost','me','omglol');
mysql_select_db('test',$con);
$q = mysql_query(sprintf("select * from UserTable where ...
0
votes
0answers
29 views
code works supper on my own laptop but other machines can't work with it [closed]
I've made a from and I had to adapt it from php5 standards to php4 standards so this shut not be the problem. local it works fine butt on other machines it fails. I don't know why!?
I don't know why ...
0
votes
1answer
68 views
xml parsing in php4
I know that this might be way too much to ask, but I have been reading about xml parsing and I just do not understand it! I did not realize that my client had PHP 4 until I was done programming (a ...
1
vote
1answer
202 views
Convert captcha generator from PHP4 to PHP5
I have an old image captcha generator written in PHP4 that i need to convert to PHP5
Any suggestions for what I need to change to get it to start working? The main error I'm getting reads "Resource ...
0
votes
4answers
80 views
PHP 4 how to strip a specific variable from the URL
PHP 4 how to strip a specific variable from the URL in this case "?lang=en"
/filename.php?lang=en
2
votes
0answers
97 views
Xdebug prevents PHP to process the page
I have a weird problem with XDebug.
First the project setup (it's completely deprecated, but it's a customer project and I can't change a thing):
PHP 4.4.9
XDebug 2.0.2 (last stable version for ...
0
votes
2answers
43 views
How to clear garbage in PHP 4
I have written an application. But there is an issue of memory overflowing. Is there a way to clear all garbage values in PHP 4?
0
votes
1answer
80 views
php4 to php5 call of another file-php with input type is not working
after a change from php4 to php5 a problem occurred, i cant find it in the migration FAQ.
<form method='post' action='galerie.php'>
<input type='hidden' ...
0
votes
4answers
74 views
Comparison failing after PHP upgrade
This code used to work in earlier versions of PHP4 but no longer works on my website now that the hosting server has been upgraded to PHP5. Any easy way to alter this code to make it work again?
...
0
votes
2answers
139 views
Declare one class variable via another
sorry for the vague title... I have a problem with a php4 class that seems hard to put to words.
My class has a "possibleValues" array, that holds information on what kind of values are acceptable ...
0
votes
0answers
64 views
Captcha script for PHP 4.3.X
I have php 4 installed and I am using recaptcha for captcha, But its not so user friendly, So i am looking for any captcha script that is user friendly, easy to implement and must be compatible with ...
0
votes
1answer
72 views
Getting empty mails from website
I have php 4.x installed in server, I have a script to send mails, generally 1 Out of 10 mails i receive will have no body but the subject will be there. The mail sending code is below.
$headers = ...
0
votes
4answers
155 views
How can I make the deprecated functions to work in PHP's latest version?
How can I make the deprecated functions to work in PHP's latest version?
I don't want to change the alternate function of it in each and every page, it's highly impossible in the maintenance project ...
2
votes
1answer
87 views
how to properly manage triggered errors in PHP4
m maintaining a project, that has to be compatible through PHP 4.X to 5.2. The project as several errors wich are not very well handled.
What I want to do is redirect user to a "nice" error page, and ...
0
votes
2answers
263 views
Unable to execute shell script in exec dir
We have a server running PHP 4.3.9 with safe_mode ON and safe_mode_exec_dir setted to /usr/local/bin/php/
So, as it is written on php.net, we can't execute any script which is not in ...


