smokejumper
Forum Replies Created
-
Forum: Themes and Templates
In reply to: PHP5 and MYSQL4.1.1Hm… have you ruled out an error in wp-db.php?
Forum: Themes and Templates
In reply to: PHP5 and MYSQL4.1.1L90:
$login = $wpdb->get_row($query);
should become
$login[] = array();
$login = $wpdb->get_row($query);
Let me know if that works. I haven’t had to make that change, so this is definitely something interesting, unless it happens that the error occurs deeper (like in wp-db.php).Forum: Requests and Feedback
In reply to: PHP 5.0.0RC2 requestSo bumping this up and making a few comments about PHP5. So far as I’ve seen (I’ve been running PHP5 for about 3-4 months now), the biggest change is that PHP5 is a bit more strict on arrays. I’m pretty sure anything written for PHP5 would run on PHP4. I’m not so sure the opposite is true. It might make some sense then to write the code for WP so that it is both PHP5 and PHP4 compatible. Furthermore, it would give WP a step up on the other blog packages that cannot run PHP5. I haven’t looked at 1.2, but will be next week, and I will look into how hard it would be to change it to work with PHP5.
Forum: Themes and Templates
In reply to: PHP5 and MYSQL4.1.1wp-login.php v. 1.0.2 is no different than 1.0.1. I’ve made no changes to my wp-login.php. My only guess is that you might need to initialize $login as $login[] = array().
Forum: Themes and Templates
In reply to: PHP5 and MYSQL4.1.1ah… i’ve only got 1.0.1… I can download the new one and get it up and running by wednesday… i’ll work on wp-login.php first.
Forum: Themes and Templates
In reply to: PHP5 and MYSQL4.1.1Yeah, everything should work on my site (smokejumper.princeton.edu)
Forum: Requests and Feedback
In reply to: PHP 5.0.0RC2 requestoh yeah, im also running mysql4.1.1 so that might be a problem for some
Forum: Requests and Feedback
In reply to: PHP 5.0.0RC2 requestHey, I’ve been running php 5 for a while, and wordpress as well… there are still a few errors in my code, but i’ve made quite a few of the necessary changes (smokejumper.princeton.edu). If people would like, I can finish porting the code to php5. Some things, like chaning the categories of posts, aren’t working right yet. Oh, and I don’t think adding users is working either. But if people think this is something that they’d like me to do, just let me know.
Forum: Fixing WordPress
In reply to: Categories htaccess rehashedHm… It’s making the query correctly with the above url… so $cat gets set correctly, but I don’t see it ever get used again… any ideas?
Forum: Installing WordPress
In reply to: Step 3 — upgrade_072Well, I after a lot of hacking I got around the error. The problem, I feel, is more in php5 than anything else. Anyhow, if anyone is looking for a workaround in PHP 5, I’ve kinda got one.