Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
0 user currently in Acmlmboard support?.
Acmlm's Board - I2 Archive - Acmlmboard support? - acmlmboard compatability with php5 | |
Add to favorites | "RSS" Feed | Next newer thread | Next older thread
User Post
Sokarhacd

Ball and Chain Trooper
Resistance is Futile
You Will Be Assimilated
Hab SoSlI' Quch
Level: 61

Posts: 146/1757
EXP: 1799888
For next: 76708

Since: 03-15-04

Since last post: 6 days
Last activity: 4 hours
Posted on 05-11-04 09:47 PM Link | Quote
so far, im testing php 5 on my webserver, just to see if everything works, but the acmlmboard does not, nothing happens, just a white blank page, anyone else know if there is a way to get it to work with php5 right now?
seanbox344

Double hammer
Level: 10

Posts: 7/31
EXP: 4017
For next: 397

Since: 05-09-04

Since last post: 190 days
Last activity: 137 days
Posted on 05-12-04 03:09 AM Link | Quote
Do you have it set up properly?
Sokarhacd

Ball and Chain Trooper
Resistance is Futile
You Will Be Assimilated
Hab SoSlI' Quch
Level: 61

Posts: 147/1757
EXP: 1799888
For next: 76708

Since: 03-15-04

Since last post: 6 days
Last activity: 4 hours
Posted on 05-12-04 03:59 AM Link | Quote
yes, it is, but I also noticed a phpbb wouldnt work, so I just went back to using php 4.3.6 maybe when its released fully it will work.
Sandy53215
Acmlm (10:55:31 PM): they're having fun for the first time in so long
Level: 47

Posts: 46/948
EXP: 713034
For next: 53169

Since: 03-15-04
From: Milwaukee, Wisconsin (U.S.A)

Since last post: 1 day
Last activity: 4 hours
Posted on 05-12-04 06:44 PM Link | Quote
Yeah, maybe. Hopefully everything will work fine. I havent tried putting it on a server with php5.:/ Hope all goes good.
Vystrix Nexoth

Level: 30

Posts: 131/348
EXP: 158678
For next: 7191

Since: 03-15-04
From: somewhere between anima and animus

Since last post: 3 days
Last activity: 2 days
Posted on 05-12-04 07:05 PM Link | Quote
look in php.ini and make sure register_globals is turned on. it's off by default in PHP 4.2.0 and later. acmlmboard requires it to be on.
AJ 187

Micro-Goomba
Level: 7

Posts: 5/15
EXP: 1369
For next: 79

Since: 04-26-04
From: Chicago

Since last post: 177 days
Last activity: 2 hours
Posted on 05-12-04 07:27 PM Link | Quote
Originally posted by Vystrix Nexoth
make sure register_globals is turned on...acmlmboard requires it to be on.


*smacks forehead*

so that's why it wouldn't work when I tried it on my server!

*AJ 187 hates scripts that require register_globals to be on... Such a damn security risk.

(and if you're gonna yell at me for that: http://www.php.net/release_4_1_0.php)
Sokarhacd

Ball and Chain Trooper
Resistance is Futile
You Will Be Assimilated
Hab SoSlI' Quch
Level: 61

Posts: 155/1757
EXP: 1799888
For next: 76708

Since: 03-15-04

Since last post: 6 days
Last activity: 4 hours
Posted on 05-12-04 08:52 PM Link | Quote
yes, I made sure register_globals was on....so aparently it doesnt work on php5...
seanbox344

Double hammer
Level: 10

Posts: 8/31
EXP: 4017
For next: 397

Since: 05-09-04

Since last post: 190 days
Last activity: 137 days
Posted on 05-12-04 10:13 PM Link | Quote
Originally posted by Vystrix Nexoth
look in php.ini and make sure register_globals is turned on. it's off by default in PHP 4.2.0 and later. acmlmboard requires it to be on.


Not really I have it off and it works.
ErkDog

Fuzz Ball
Level: 47

Posts: 399/982
EXP: 752190
For next: 14013

Since: 03-15-04
From: Richmond, VA

Since last post: 40 days
Last activity: 19 days
Posted on 05-13-04 02:45 AM Link | Quote
there is actuallya work around to that

1.9 doesn't require globals... and globals is off on my server...

you can actually convert the variables in function.php ... here's the code......

if(!ini_get('register_globals')){
$supers=array('_REQUEST','_ENV','_SERVER');
foreach($supers as $__s) if (is_array($$__s)) extract($$__s, EXTR_OVERWRITE);
unset($supers);
}
if(get_magic_quotes_gpc() and is_array($GLOBALS)) while(list($key,$val)=each($GLOBALS)) if(is_string($val))
$GLOBALS[$key]=stripslashes($val);


put that right after "require config.php"
seanbox344

Double hammer
Level: 10

Posts: 9/31
EXP: 4017
For next: 397

Since: 05-09-04

Since last post: 190 days
Last activity: 137 days
Posted on 05-13-04 04:44 AM Link | Quote
Well now the board just wants to lay dead for me on my test server. I am just going to stay with the old version.
Sokarhacd

Ball and Chain Trooper
Resistance is Futile
You Will Be Assimilated
Hab SoSlI' Quch
Level: 61

Posts: 163/1757
EXP: 1799888
For next: 76708

Since: 03-15-04

Since last post: 6 days
Last activity: 4 hours
Posted on 05-13-04 09:21 AM Link | Quote
and ill just stick with php 4.3.6 and wait for 5 to be a full release then try it.
Jizuko

Jiz Is The Magic!
This board has run out of mana and can no longer use The Magic
Level: 51

Posts: 278/1191
EXP: 1004683
For next: 9255

Since: 03-15-04

Since last post: 230 days
Last activity: 213 days
Posted on 05-13-04 08:40 PM Link | Quote
They say not to use php5 for commercial use, but in school we wanted to learn object oriented programming so we installed php5 on the server there. Most of the things worked fine, our site, a friends own made forum, but wordpress (blogging engine) didn't work. When you try to go to it, you get a big nothing.
Try it In firefox, you won't even leave this thread, it won't even try to go into the page. In IE I think you'll get a page not found. But believe me, it's there

I don't know what the difference is between php5 and php4, or rather, what's lacking in php5 that php4 had. It's annoying.
Do you get the same blank page?
Sokarhacd

Ball and Chain Trooper
Resistance is Futile
You Will Be Assimilated
Hab SoSlI' Quch
Level: 61

Posts: 167/1757
EXP: 1799888
For next: 76708

Since: 03-15-04

Since last post: 6 days
Last activity: 4 hours
Posted on 05-13-04 10:19 PM Link | Quote
I clicked on that link, and it said page cannot be displayed, I wonder why there are a few things that wont work with php5, like I tried a phpbb, and it wouldnt work either, wouldnt even install right....
ErkDog

Fuzz Ball
Level: 47

Posts: 421/982
EXP: 752190
For next: 14013

Since: 03-15-04
From: Richmond, VA

Since last post: 40 days
Last activity: 19 days
Posted on 05-14-04 04:01 AM Link | Quote
I'm pretty sure when it's closer to completion PHP5 will work with PHP4 scripts

it would be insane for it not too... nobody would upgrade and use it
FreeDOS

Lava Lotus
Wannabe-Mod :<
Level: 59

Posts: 427/1657
EXP: 1648646
For next: 24482

Since: 03-15-04
From: Seattle

Since last post: 6 hours
Last activity: 4 hours
Posted on 05-14-04 04:32 AM Link | Quote
Yeah, I'd say that it's a safe bet to say that PHP5 is currently focused on newer functions, and older specialised functions are ommitted for size purposes.

Wait until PHP5 makes a full release.
Sokarhacd

Ball and Chain Trooper
Resistance is Futile
You Will Be Assimilated
Hab SoSlI' Quch
Level: 61

Posts: 170/1757
EXP: 1799888
For next: 76708

Since: 03-15-04

Since last post: 6 days
Last activity: 4 hours
Posted on 05-14-04 07:02 AM Link | Quote
Yeah, or atleat I hope so, although I still see lots of the Professional web hosting servers use Php 4.3.2 or earlier, and 4.3.6 is out, so I dont see why none of them are upgrading, it doesnt take long to upgrade....
ErkDog

Fuzz Ball
Level: 47

Posts: 451/982
EXP: 752190
For next: 14013

Since: 03-15-04
From: Richmond, VA

Since last post: 40 days
Last activity: 19 days
Posted on 05-14-04 07:11 AM Link | Quote
http://fiftypounds.com/phptest.php

I'm using 4.3.2 and I think it was newest when I setup my server
it works so why fuck around and maybe break something upgrading it ?
Sokarhacd

Ball and Chain Trooper
Resistance is Futile
You Will Be Assimilated
Hab SoSlI' Quch
Level: 61

Posts: 172/1757
EXP: 1799888
For next: 76708

Since: 03-15-04

Since last post: 6 days
Last activity: 4 hours
Posted on 05-14-04 08:20 AM Link | Quote
I doubt you'd break something when you wouldnt have to change anything, just replace all the current php files with the ones from 4.3.6 .....

http://xpg.homeip.net/phpinfo.php

theres my phpinfo test...


(edited by Chaosflare on 05-13-04 11:22 PM)
Add to favorites | "RSS" Feed | Next newer thread | Next older thread
Acmlm's Board - I2 Archive - Acmlmboard support? - acmlmboard compatability with php5 | |


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.013 seconds.