woot i got it working fully functional. for others ill post the resolution.
i went to my php.ini file and found register globals which was off and turned it on but i still had errors so i then used .... error_reporting(E_PARSE); command in the includes/config.pfp and it all works!
register_globals = on
UNCOMMENT
always_populate_raw_post_data = On
then this......
<?php
//Insert the un-remarked line into the very top of your index.php *OR* the confic.ing.php file that is included in all other PHP files of the site you wish to eliminated junk error reports.
error_reporting(E_PARSE); //Best for a running site. Still shows critical PHP parsing errors.
//error_reporting(E_WARNING & E_PARSE); //Ignores garbage errors.
//error_reporting(E_ALL); //The PHP Default.
thx all for the help and Muuss for the product appreciate it =)
|