website not working after migrate

seachen

Verified User
Joined
Feb 3, 2007
Messages
491
I have a user host at my shared hosting server. it need to upgrade to dedicated server.

i try migrate it to new server. i use backup and restore method via directadmin. but at new server it cant working. may i know why like that.



I try migrate to another shared hosting server, it is working fine. Only this dedicated server cant working. May I know what thing missing?
 
Last edited:
when you open that 2 link, you will notice the different on some part like title, and page content. but it is restore from backup. i dont noe why it cant work at dedicated server. seen like something is missing
 
Try looking at the short tag setting in php. I noticed I saw <? and not <?php in the title. Either that or make sure all the opening tags are <?php
 
Hi,

May I know who can help me to check it? I will to pay for it.

Or who can teach me how to check the php setting
 
I have a user host at my shared hosting server. it need to upgrade to dedicated server.

i try migrate it to new server. i use backup and restore method via directadmin. but at new server it cant working. may i know why like that.

Shared Hosting: http://www.unwall.net/

Dedicated Server: http://76.10.222.135/~je4u/

I try migrate to another shared hosting server, it is working fine. Only this dedicated server cant working. May I know what thing missing?
Please make to scripts with the folowing code on each server:

Code:
<?php phpinfo(); ?>

Then post the links here. A full PHPINFO should show all the issues in configuration.
 
First of all I recommend you to downgrade or at least use the same PHP version on both servers. You have 5.3 and 5.2, there are applications that don't work correctly with 5.3 because there are many deprecated or unsupported functions. Also lots where changed at lower level including public,private classes and functions.

This could cause issues or bugs.
 
hi, may i know how to downgrade?

how much you charge? I like to hire you to help
 
There are a lot of How To here.
Try to search the forums.

About hiring and charging, contact me via PM.
 
As I said in an earlier post, you need to enable the short_open_tag in your php.ini file. All your code requires that to be enabled, you can downgrade/upgrade and do anything else, but if this is not enabled then your site won't work as it is coded.
 
As I said in an earlier post, you need to enable the short_open_tag in your php.ini file. All your code requires that to be enabled, you can downgrade/upgrade and do anything else, but if this is not enabled then your site won't work as it is coded.
I must Agree with this :)
 
Back
Top