Igor Mihaljko wrote:
Failed to load resource: the server responded with a status of 403 (Forbidden)
You should check to see if you have this file present on the server
Igor, I have checked and this file is present on the server. If I try and load the same path relative to the root domain, the file loads in my browser. But if I try and load the same file relative to the directory I have installed this test site into, a 403 is returned. I have run permissions fixes, deleted caches etc etc but I'm stumped why this is.
prim wrote:
Looks like the Google fonts are not loading, I wonder if this is caused by Suhosin. Can you try to disable that and check if it makes any difference?
Prim, I have disabled Suhosin as you suggested but it didn't make any difference. In case you can spot a clue, the php.ini settings I tried were:date.timezone = "Australia/Melbourne"
disable_functions = show_source, passthru, exec, popen, proc_open, allow_url_fopen
memory_limit = 64M
max_execution_time = 30
magic_quotes_gpc = off
magic_quotes_runtime = off
register_globals = off
max_input_time = 60
upload_max_filesize = 24M
post_max_size = 24M
extension_dir = "/usr/local/lib/php/extensions/no-debug-non-zts-20090626"
realpath_cache_size = 16K
realpath_cache_ttl = 120
zend_extension = "/usr/local/IonCube/ioncube_loader_lin_5.3.so"
I have since reset them to their previous setting (Suhosin enabled):date.timezone = "Australia/Melbourne"
disable_functions = show_source, passthru, exec, popen, proc_open, allow_url_fopen
memory_limit = 64M
max_execution_time = 30
magic_quotes_gpc = off
magic_quotes_runtime = off
register_globals = off
max_input_time = 60
upload_max_filesize = 24M
post_max_size = 24M
extension_dir = "/usr/local/lib/php/extensions/no-debug-non-zts-20090626"
realpath_cache_size = 16K
realpath_cache_ttl = 120
zend_extension = "/usr/local/IonCube/ioncube_loader_lin_5.3.so"
extension = suhosin.so
suhosin.executor.include.max_traversal = 6
suhosin.apc_bug_workaround = On
suhosin.memory_limit = 256
suhosin.upload.disallow_elf = On
suhosin.post.max_vars = 2000
suhosin.request.max_vars = 2000
suhosin.log.syslog.facility = 9
suhosin.log.use-x-forwarded-for = Off
I have since downloaded the Gantry J3.1 RocketLauncher from the gantry-framework.org website and installed it on my localhost. I then updated it to J3.2.1 and noted there are no issues with Gantry's admin cPanel layout so the issue is specific to the sites I am trying to update and isn't caused by my PHP.
I also noted today that I had a menu item on the site that displays a link in a pop-up using the Modals plugin from NoNumber
http://www.nonumber.nl/extensions/modals
. The syntax to generate the pop-up is {modal}{/modal} but this no longer works and the tag text is being rendered instead being parsed.
I then installed the Modals plugin into the base Gantry site and configured the menu exactly the same and saw that the modal tags parsed correctly.
I have also found a Gantry related plugin that is disabled and throws an error when I try to open it. The plugin is called "Installer" and the Element is "GantryFrameWorkinstaller". If I try to open it I get a 500 error " The file GantryFrameWorkinstaller.xml could not be found.". I can enable/disable it directly from the plugins list though and although it was disabled, enabling it doesn't fix the problems. The 500 error when trying to open it is concerning though. Surely that's not good, right?
Thanks very much for both chipping in with your suggestions.