I tried installing a script and keep getting this error Parse error: syntax error, unexpected T_STRING in/youradd/savefile_php/config.php on line 4 this is the Config.php info <? $sitename = "Your Add"; $siteurl = "http://www.youradd.com/savefile_php/ $admin25email = "email@hotmail.com"; $att_max_size = "5000"; $att_filetypes = "gif|jpg|png|zip|rar|tar|gz|jar|"; $dbServer = "localhost"; $dbUser = "user"; $dbPass = "pw"; $dbName = "db name"; $requirepaid = "1"; // 1 for paid. 0 for free $paypal_email = "email@hotmail.com"; $paypal_price = "1.50"; $paypal_subcode = "M"; $paypal_sub = "Monthly"; ?>
You're missing the close quotes on line 3... $siteurl = "http://www.youradd.com/savefile_php/ should read $siteurl = "http://www.youradd.com/savefile_php/"
That'll teach me to rush the post! Good spot krt. As you say, should be... $siteurl = "http://www.youradd.com/savefile_php/";