Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

psc

About

Username
psc
Joined
Visits
13
Last Active
Roles
Member

Comments

  • It was a permissions issue around the cache directories not being writable. Fixed now.
  • > Is the Docker container essentially the same environment I'm running the identical container locally on my mac and it works perfectly fine. When I build the containers on the google environment, they appear to be identical, only it appears…
  • It's an old site. Fuel 0.91 php 5.3. My goal is to move the site as-is without upgrading all the things. There's plenty of things that need done but really looking to move servers here in the next week. When I removed the template codes from the …
  • It seems like as soon as anything is pulled out of the fuel_page_variables database table, the buffer's flushed and it gets output directly to screen. The HTML doesn't get so far as outputting the footer in this case. So if you have a page called ho…
  • Footer block doesn't seem to be the problem... It seems that only pages that are managed by the fuelCMS are having the issue. The footer block is displayed on pages outside the CMS normally, and I don't see the on pages not managed by the CMS. …
  • I can play with the footer block, but since I'm running the exact same code locally and it works fine, I'm thinking this is a server configuration thing. I don't know if you can think of anything besides error reporting that would cause this sort of…
  • Good idea. I've turned all the errors off, no change in behavior I'm not seeing any errors either (not when I had error reporting on, not in the apache log, etc) Any other suggestions? The footer block is not rendering at all, on most pages, in ad…
  • It wasn't a php error. It said that permission was denied for my db user connecting to table ci_session - not sure why it would be denied; unless it is using the wrong dsn connection (using the wrong database, as the dbuser i'm using has permissions…
  • Err. That worked good for a minute. I am trying to use CI's ability to store session data in the database, and that put me back to square one. The session update query fails (line 288 in fuel/codeigniter/libraries/Session.php) In that file it is…
  • I was able to get it to connect to both DBs properly by changing line 117 of fuel/application/core/MY_model.php to: $this->db = $this->load->database($this->dsn, true); originally it is: $this->load->database($this->dsn);
  • At this point I'm just trying to set up a normal model view and controller and learn how to implement the blocks and layouts from Fuel and make sure everything works before I get too deep into new logic. I've exteneded CI_controller in the control…
  • I got an error when trying to extend Controller - is there a Base_controller I need to extend ?
  • No that doesnt explian -- The page has editable elements (the header and footer, plus, in these cases, the body). the page is already imported to the CMS. It may be that there is a static view file, but, either way, it has already been imported to…
  • Yes uploading from the asset area. (site-> assets-> upload) Google Chrome on OSX. Firefox seems to work OK.
  • Also, when adding an image asset using the inline editing tool, the image selector div appears behind the inline editing box, making it difficult or impossible to select the asset.
  • Sweet that seems fixed. However, when I try to upload a new asset, all of the ligit files (*.jpg, *.pdf, etc) are grayed out, so I can't upload files. All's well if I FTP in to upload the asset.... no go through the admin cp. Thanks!!!
  • v 0.91 confirmed, it still just loads the first one from the pull down menu. Using google chrome on osx 10.6.5
  • pls remove, and see http://www.getfuelcms.com/forums/discussion/10/assets_excluded_dirs-editable_assets_filetypes/#Item_1 The image box loads but it just shows *css files as selectable
  • fwiw... here's a safer reset than the one included. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike,…
  • Great, Thanks!! I will make the switch to 0.91x in the next day or so after you've got those fixes cleared Thanks very much for working with me over the last hour or so, great support!! Let's fill this forum up with info to help everyone else!
  • No change. using the code you provided - you meant for that to go in the header block, right? here is my header, less some HTML. Not a huge problem for the time being I can just not use the block until you post the fix for the syntax. <!DOCTY…
  • I capitalized my HEAD tag! *fixed* throw in strtolower
  • Aweeeeesome. *you are the man* However, now: exception 'Dwoo_Compilation_Exception' with message 'Compilation error at line 16 in "string:" : The template has been closed too early, you probably have an extra block-closing tag somewhere' in fuel/…
  • quote: FUEL injects the inline editing CSS upon rendering the page if you are logged in so you won't see it in the header block. Sure -- but it's not showing in the view source even though I'm logged in. I manully added it as a work around, but …
  • YES, that explains that. BUT now when I have the header block, I get exception 'Dwoo_Security_Exception' with message 'Call to a disallowed php function : css' in application/libraries/dwoo/Dwoo/Compiler.php:2937 ; application/libraries/dwoo/Dwoo/…
  • Thanks for the tip on 0.91 I have 0.9... i thought I read that somewhere on your site. The reason I'm moving towards code igniter is because it does have great documentation (and I'm sure FUEL's will improve rapidly - but its format looks great (l…
  • Thank you so much! I'll look into making the css files editable. Thanks for the info. As far as the inline editing controls, I figured out what the deal was -- On your stock install, there is no coded line in the header file that loads the inl…
  • Thanks for the quick response, on a sunday no less! So on your recommendation I've changed views/_layouts/main.php to use fuel_block and that looks good. I can now inline edit the blocks which is sweet. And when I upload a new view via FTP i'm a…
  • I solved the 404 error by resetting MY_fuel setting: $config['fuel_mode'] = 'auto';