php - Warning: include_once() [function.include]: Failed opening -
i have seen question asked haven't been able find answer.
i made small change on 1 page of site. (changed link of icon in header) 1 page in ruins. there seems several files included page.
db_conn_open.php languagefile.php includes.php 70and100mphclub.php metainfo.php prototype.php getminicart.php style.css em_popoutmenu_blue.css ac_runactive_content.js
atleast these open in dreamweaver source code when open 70and100mph.php, 1 wanted in first place.
now have warning on page looks this:
warning: include_once(maxampsdigital/public_html/vsadmin/inc/languagefile.php) [function.include-once]: failed open stream: no such file or directory in /home/maxamps/public_html/70and100mphclub.php on line 7
it has 1 every php file connected. source code , 70and100mph.php
both have @ beginning:
<?php session_cache_limiter('none'); session_start(); ini_set('url_rewriter.tags', ''); include_once "maxampsdigital/public_html/vsadmin/db_conn_open.php"; include_once "maxampsdigital/public_html/vsadmin/inc/languagefile.php"; include_once "maxampsdigital/public_html/vsadmin/includes.php"; include_once "maxampsdigital/public_html/70and100mphclub.php"; include_once "maxampsdigital/public_html/vsadmin/inc/metainfo.php";?>
i thinking need find script pulling these links fix this? don't know begin... or if correct. sorry length, wanted specific possible. please help! camryn
since file inside same root, use relative path:
include_once('db_conn_open.php');
Comments
Post a Comment