Ok, I have made lots of revisions in code and no longer receive connection error, but now I have new issue with admin/login.php page. The entire code for the page is too long to include in one message, but the error is for the last two lines of code:
"Parse error: syntax error, unexpected T_STRING in /mnt/edited/d31/s37/edited/www/thedomainname.com/admin/includes.inc.php"
Here's a condensed version of code:
<?php
session_start();
include "../includes/config.inc.php";
include "../includes/classes/common.class.inc.php";
include "../includes/classes/sitefunction.class.inc.php";
include "../includes/classes/users.class.php";
include "content_fields.php";
include ",,/includes/db_connect.php:;
$common = new common;
$sf = new sitefunction;
$usr = new users;
#--------------------------total adminstrators--------------#
'query the database
db=Where id is 1;
#--------------------------total adminstrators--------------#
#--------------------------titles change--------------#
'query the database
titles_texts = $db->select from titles where id is 1;
assign=titles_texts;
#--------------------------titles change--------------#
#--------------------------Domain Name--------------#
'query the database
domain_name = $db->select domain_name from general_settings where id is 1;
assign=include_domain_name;
#--------------------------Domain Name--------------#
#--------------------------dynamic pages--------------
'query the database
dynamic_pages_inc = select from dynamic_pages ORDER BY title asc;
dynamic_pages_qry_inc = $db->GetArray $dynamic_pages_inc;
assign=dynamic_pages_qry_inc;
#-------------------------dynamic pages--------------#
/*--------------------------Left Content Titles--------------#
content_titles = $db->select from content where page!=hot_products and page!=traffic and page!=list_building and page!=software_tools and page!=other_resources ORDER BY title1 asc;
assign=include_content_titles;
#--------------------------Left Content Titles--------------#
assign=left_plugin_top,$db->select from plugin_module where section=top;
assign=left_plugin_left,$db->select from plugin_module where section=left;
assign=left_plugin_center,$db->select from plugin_module where section=center;
assign=left_plugin_right,$db->select from plugin_module where section=right;
assign=left_plugin_bottom,$db->select from plugin_module where section=bottom;
assign=left_plugins,$db->select from plugin_module order by id;
#--------------------------------Content left titles(plugin names)-------------------#
assign=include_page_home_pluginname = $db->select title1 from content where page=Home;
/////I edited out several plugin strings here to condense for these purposes/////
assign=include_page_home_pluginname;,$include_page_home_pluginname;
assign=include_page_products_pluginname,$include_page_products_pluginname;
assign=include_page_forum_pluginname,$include_page_forum_pluginname;
assign=include_page_support_pluginname,$include_page_support_pluginname;
assign=include_page_features_pluginname,$include_page_features_pluginname;
assign=include_page_faq_pluginname,$include_page_faq_pluginname;
assign=include_page_about_pluginname,$include_page_about_pluginname;
assign=include_page_contact_pluginname,$include_page_contact_pluginname;
assign=include_page_Purchase_IMD_Gold_pluginname,$include_page_Purchase_IMD_Gold_pluginname;
assign=include_page_software_package_pluginname,$include_page_software_package_pluginname;
assign=include_page_Member_Login_pluginname,$include_page_Member_Login_pluginname;
assign="include_page_Affiliates_pluginname,$include_page_Affiliates_pluginname;
assign=include_page_Testimonials_pluginname,$include_page_Testimonials_pluginname;
assign=include_page_Sponsors_pluginname,$include_page_Sponsors_pluginname;
assign=include_page_Featured_Products_pluginname,$include_page_Featured_Products_pluginname;
assign=include_page_benefits_pluginname,$include_page_benefits_pluginname;
assign=include_page_News_pluginname,$include_page_News_pluginname;
assign=include_page_Newsletter_pluginname,$include_page_Newsletter_pluginname;
assign=include_page_Calendar_pluginname,$include_page_Calendar_pluginname;
assign=include_page_Archives_pluginname,$include_page_Archives_pluginname;
assign=include_page_Directory_pluginname,$include_page_Directory_pluginname;
assign=include_page_Resources_pluginname,$include_page_Resources_pluginname;
assign=include_page_Usefull_Links_pluginname,$include_page_Usefull_Links_pluginname;
assign=include_page_terms_pluginname,$include_page_terms_pluginname;
assign=include_page_privacy_policy_pluginname,$include_page_privacy_policy_pluginname;
assign=include_page_earnings_disclaimer_pluginname,$include_page_earnings_disclaimer_pluginname;
assign=include_page_copyright_notice_pluginname,$include_page_copyright_notice_pluginname;
assign=include_page_personal_license_pluginname,$include_page_personal_license_pluginname;
assign=include_page_reseller_license_pluginname,$include_page_reseller_license_pluginname;
assign=include_page_other_notices_pluginname,$include_page_other_notices_pluginname;
assign=include_page_contact2_pluginname,$include_page_contact2_pluginname;
assign=include_page_hot_products_pluginname,$include_page_hot_products_pluginname;
assign=include_page_traffic_pluginname,$include_page_traffic_pluginname;
assign=include_page_list_building_pluginname,$include_page_list_building_pluginname;
assign=include_page_software_tools_pluginname,$include_page_software_tools_pluginname;
assign=include_page_other_resources_pluginname,$include_page_other_resources_pluginname;
assign=include_page_category_text_pluginname,$include_page_category_text_pluginname;
assign=include_page_silver_features_pluginname,$include_page_silver_features_pluginname;
assign=include_page_platinum_features_pluginname,$include_page_platinum_features_pluginname;
assign=include_page_basic_features_pluginname,$include_page_basic_features_pluginname;
assign=include_page_affiliate_learn_more_pluginname,$include_page_affiliate_learn_more_pluginname;
assign=include_page_affiliate_banners_pluginname,$include_page_affiliate_banners_pluginname;
assign=include_page_affiliate_myid_pluginname,$include_page_affiliate_myid_pluginname;
assign=include_page_member_payment_pluginname,$include_page_member_payment_pluginname;
assign=include_page_member_subscription_pluginname,$include_page_member_subscription_pluginname;
assign=include_page_member_contact_pluginname,$include_page_member_contact_pluginname;
#--------------------------------Content left titles(plugin names)-------------------#
include "../includes/templates/.tpl;
compile_dir=../includes/templates_c/.tpl;
?>
These last two lines of code are causing the present error. Does anyone know the correct string I should be using to make this operable?
Thanks.