I built a quick application quite a while ago for the museum I work at. I finally built a small server for them so that we can use this program at our museum, but I am having a few problems.
When I moved everything over to the new server some things stopped working. Some of them I fixed by slightly changing the code, but I have 2 big problems that I have not been able to fix.
Here is a mirror of the application http://lphm.awardspace.com
If you go to list, and click on view more, it shows you more information on that object. On the new server this page comes up completely blank.
my other problem is if you log into the admin page (user - admin pass- adminpass) and go to edit. if you search for an accession number it comes up with a form filled in with the object info to edit. On the new server it fills in with the code (Ie. <? echo $acc ?>).
any ideas on why? I am not sure what version of php I am using now, it is the rpath lamp appliance (http://www.rpath.org/rbuilder/project/lamp/).
Having trouble
Moderator: General Moderators
Looks like you have short tags turned off on the new server. This means that <? ?> won't work, only <?php ?>.
You can either repleace all of the <? ?> with <?php ?> or change the php config file so that it allows short tags. Just open the config file and search around for short tags or something like that, then restart the web service.
You can either repleace all of the <? ?> with <?php ?> or change the php config file so that it allows short tags. Just open the config file and search around for short tags or something like that, then restart the web service.