| jhoiby wrote: |
| Does this look appropriate?:
MDPROSID g43mul7gtku308hdknfqtsqe17 dev.drats.org/ |
| jhoiby wrote: |
| 4.) I saw your PHP5 compatibility warning in other forum posts. I *really* don't want to start messing with PHP and Apache recompiling (I can do it, I'd just like to avoid it if I can), and I like having PHP5 available for other programming projects. I'd like to exhaust other options first. |
| jhoiby wrote: |
| Would turning on PHP error reporting help me determine if the error is related to PHP compatibility? |
| jhoiby wrote: |
| 5.) I can do this, but do you have any recommendations on what to watch for in the packets? |
| jhoiby wrote: |
| 6.) I can't access this site (dev.drats.org) by IP since it's a name virtual server. However to be thorough I changed the default site to the new MD Pro site and tried it via IP. Same login issue. |
::Same solution
| Quote: |
| register_long_arrays = On |
| Code: |
| php_flag register_long_arrays On |
| cdfranck wrote: |
| If I add an htaccess file with only the register long arrays directive I get a 500 error. Adding a php.ini file doesn't seem to do anything.
|
| Code: |
|
DROP TABLE IF EXISTS `md_session_info`;
CREATE TABLE `md_session_info` ( `pn_sessid` varchar(32) NOT NULL default '', `pn_ipaddr` varchar(20) NOT NULL default '', `pn_firstused` int(11) NOT NULL default '0', `pn_lastused` int(11) NOT NULL default '0', `pn_uid` int(11) NOT NULL default '0', `pn_vars` blob, `pn_antispider` varchar(64) NOT NULL default '', PRIMARY KEY (`pn_sessid`), KEY `idx_last` (`pn_lastused`), KEY `pn_antispider` (`pn_antispider`) ); |
| Quote: |
| I have enabled PHP4 and register_globals is now On for you. I can't however stay logged in. I must be logged in but I get told I don't have authorisation. |
| Code: |
|
if (version_compare(phpversion(), '5.2.0', '>=')) {
register_shutdown_function('session_write_close'); |