Page_Missing_InAlreadyC_reated_Site

Need help installing PHP, configuring a script, or configuring a server? Then come on in and post your questions! We'll try to help the best we can!

Moderator: General Moderators

Post Reply
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

Hi,
I am working on the site which is already live but on linux based, my task is to convert it in windows based things which i had done

1) Imported all the table into phpmyadmin
2) Place the application code in side HTDOcs
3) Now when i run the application it shows me error

Warning: include(Security.php) [function.include]: failed to open stream: No such file or directory in C:\xampp\htdocs\dealerdb\classes.inc on line 4

Warning: include() [function.include]: Failed opening 'Security.php' for inclusion (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\dealerdb\classes.inc on line 4

Warning: include(DDB.php) [function.include]: failed to open stream: No such file or directory in C:\xampp\htdocs\dealerdb\classes.inc on line 5

Warning: include() [function.include]: Failed opening 'DDB.php' for inclusion (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\dealerdb\classes.inc on line 5

When i inform about this problem to my client he gives me the reply like
this as below

The files above need to be included in the search path for PHP. So, somewhere in the php config file, the developers will need to set the directories where the missing files are located and make those directories part of the search path in php.


Please help me to solve out this problem to move from linux to windows server







Thanks
Last edited by harshida_1909 on Thu Aug 26, 2010 4:14 am, edited 1 time in total.
amargharat
Forum Commoner
Posts: 82
Joined: Wed Sep 16, 2009 2:43 am
Location: Mumbai, India
Contact:

Re: Page_Missing_InAlreadyC_reated_Site

Post by amargharat »

Make sure that Security.php and DDB.php exist in a dealerdb folder or not.
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Re: Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

I have already told to client that page is missing then after he reply me the


The files below need to be included in the search path for PHP. So, somewhere in the php config file, the developers will need to set the directories where the missing files are located and make those directories part of the search path in php.
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Re: Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

I am not geeting from where i set the path so the application will run.
amargharat
Forum Commoner
Posts: 82
Joined: Wed Sep 16, 2009 2:43 am
Location: Mumbai, India
Contact:

Re: Page_Missing_InAlreadyC_reated_Site

Post by amargharat »

Setting new path is another thing, first make sure that files are exist or not.

if you don't find files then it comes to look at another issue.
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Re: Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

I have searched and file is not exist............

and my application classes.inc file contain code


include ('Security.php');
include ('DDB.php');

and all the pages off the application contan code
include '../classes.inc';
if (!($security->canUpdate() || $security->canAdmin()))
{
...
}
and if i comment this page in claases.inc it shows mai that canAdmin() object missing.........
amargharat
Forum Commoner
Posts: 82
Joined: Wed Sep 16, 2009 2:43 am
Location: Mumbai, India
Contact:

Re: Page_Missing_InAlreadyC_reated_Site

Post by amargharat »

Basically solution is to put that files back at required place. thats it.
This is nothing to do with setting as of now
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Re: Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

I have no page in the application code folder............

is it possible that we can call the page named security.php and DDB.php from the 3rd party ..........
amargharat
Forum Commoner
Posts: 82
Joined: Wed Sep 16, 2009 2:43 am
Location: Mumbai, India
Contact:

Re: Page_Missing_InAlreadyC_reated_Site

Post by amargharat »

These two pages were made by you and then you have to find it and put it otherwise your app. won't work.
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Re: Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

Ok

Well thank you so much to give me the very very quick response.
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Re: Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

Hi,

Again now the question arise is that from where to start the coding procedure for the security.php and DDB.php page.
amargharat
Forum Commoner
Posts: 82
Joined: Wed Sep 16, 2009 2:43 am
Location: Mumbai, India
Contact:

Re: Page_Missing_InAlreadyC_reated_Site

Post by amargharat »

Look, That no stranger like me can't tell that what your missing pages should contain.

You have idea in your mind as you are developer of this app. So, if you want recreate this two files then you only have to think about it.

Good Luck :-)
harshida_1909
Forum Newbie
Posts: 10
Joined: Thu Aug 26, 2010 2:23 am

Re: Page_Missing_InAlreadyC_reated_Site

Post by harshida_1909 »

Ok

Thank You :)
Post Reply