Author Topic: Noob on 1.7 rc2- dreaded 403 on overview icons.  (Read 2868 times)

afpteam

  • Guest
Noob on 1.7 rc2- dreaded 403 on overview icons.
« on: June 02, 2010, 06:10:36 pm »
Hi,

New guy here, with great hopes for the Feng Office tool,  So far I'm very pleased, but that installation guidance might improve a bit in time.

I installed on a fairly good 98SE I had laying around.  PHP5, MySql 5n and KFWS Apache-like webserver.

Install went fairly typical + Pass-by-value solved in php.ini. 

Not until I got the admin login completed, did it then render me to the main "Overview" page and I noticed the png icons on the bottom row are zip nadda and log files for the server are telling me 403 on all these little guys.

I pointed the browser directly at the directory and hit one of the icons which renders fine, so the directory is accessible to me, but for some reason Feng or php is not able to render these and comes back forbidden.

All other icons on all other pages seem to be doing fine.  So before I tear things up to get some speed improved, anybody else seen this on rc2 or have any ideas I can shoot for?

Thank you for a nicely designed open project and for any help that might come this way.  ;)

Mike
------------------------
afpteam


afpteam

  • Guest
Re: Noob on 1.7 rc2- dreaded 403 on overview icons.
« Reply #1 on: June 02, 2010, 06:45:10 pm »
Hmmm,

Chrome's inspect element shows us something

Code: [Select]
<img src="http://192.168.1.2/fengoffice/public/assets/themes/default/images//16x16/message.png ">
There appears to be a double slash being written just before the image URI is tacked on.

Anyone fathom where abouts I might go to solve this one?

Thanks again,

Mike

cabeza

  • Administrator
  • Hero Member
  • *****
  • Posts: 1004
    • View Profile
    • Feng Office
Re: Noob on 1.7 rc2- dreaded 403 on overview icons.
« Reply #2 on: June 07, 2010, 12:45:19 pm »
in line 49
application/views/dashboard/widget_getting_Started.php

it says:

Code: [Select]
<image src='<?php echo image_url('/16x16/message.png')?> ' />&nbsp;

and should say:
Code: [Select]
<image src='<?php echo image_url('16x16/message.png')?> ' />&nbsp;

cabeza

  • Administrator
  • Hero Member
  • *****
  • Posts: 1004
    • View Profile
    • Feng Office
Re: Noob on 1.7 rc2- dreaded 403 on overview icons.
« Reply #3 on: June 15, 2010, 01:21:32 pm »
Was the problem solved with this fix afpteam?