1

I have a PHP application created (on RentACoder) in RADPHP. When I run it from RADPHP IDE it works. However, when it is online only a small part of the interface is shown.

Any hints about what I should do to make it work?

Gabriel
  • 20,797
  • 27
  • 159
  • 293
  • when you say it throws no errors, have you checked in the server error log; a live web server would typically have error reporting switched off so that it wouldn't show PHP errors in the browser, but they will still be in the server logs. – Spudley Jan 12 '11 at 13:47
  • you have to provide much more information to get good answers! on what system to you develop, what live environment do you have, how does your file structure look like, through what url do you access the respective sites, etc. – markus Jan 12 '11 at 13:49

3 Answers3

3

However, when it is online only a small part of the interface is shown.

A missing extension? Could be anything really. Put this at the beginning of your script to make PHP more verbose:

ini_set('display_errors', 1);
error_reporting(E_ALL);

and take it from there, I guess.

karim79
  • 339,989
  • 67
  • 413
  • 406
1

There´s not a lot of information here, so I´ll just take a wild guess: Perhaps your offline environment is case-insensitive and your online environment is not.

jeroen
  • 91,079
  • 21
  • 114
  • 132
0

Solved. This is a bug in RadPHP. It happens when the user edits the Font property (for any control on the form).

Gabriel
  • 20,797
  • 27
  • 159
  • 293