Thanks. Have switched form off for now as won't get a chance to look at it until this weekend, but will take the above on board then and give that a go.
Cheers
I remember having something similar a while back. I think I went through my code and blanket changed all references to the problematic column to [table].id . Not very clean, but it worked!
Any further than that and I'm afraid I'm stumped too.
What…
@Pierlo - would love to see some more tutorials. Would love to get to the stage of being able to add some myself one day, but at the moment, answering the odd question on the forum is about my level. I also spend time wondering if I am doing things …
Hard to tell what's going on without seeing the full code.
Maybe you could try and include these constants in the global.php variables file, instead of using an includes?
Sounds good, sounds workable, and would be interested to see how it goes! To allow total felxability, will you be allowing your client access to the _MODULES_ array, to be able to add modules to each page layout?
Sorry I wasn't been able to nail d…
Ok, think I understand you, apologies if I don't! I'm assuming that you want to link contacts to the modules that are added to each page.
Your client has a contact module where he can enter all the contacts with their details.
Then, when he enter…
Not too sure what you are describing from "I could extend the page layout...". But, yes, you could include as many modules as you wanted in one layout:
header
Tour module
Contact module
footer
Within the view page of each module I wrap it in self …
The layouts should be used to describe the 'layout' of the page (:-)) Should 'Press' not be a module? In that case you could have a layout like, for example:
echo fuel_block('header)
load->view->('press')
echo fuel_block('footer')
Within …
Or you can set the max upload width and height globally in fuel/application/config/MY_fuel.php
Just search for
assets_upload_max_width
assets_upload_max_height
Cheers.
Thanks for the feedback, and gives me some perspective on how I should be using a CMS/Framework, and in particular Fuel. Having only used Fuel, I guess there's the nag at the back of my head that I may be 'missing out' by not going for Wordpress, fo…
Try putting this before you try to load the model:
$CI = & get_instance();
Not sure why this works, read why it did a while back, but have forgotten. Maybe someone else can refresh? Cheers.
Could it be something to do with the layout you are using for creating the page in admin?
If Admin(David) can help here - If I am right and you import a page, for it to be editable from admin, you would need to make sure that your view page has var…
For those of you interested, or who may suffer the same or similar in the future, I think I've got to the bottom of the issue, with some help from people on the forum of course :-)
The inline-editing issue only occurs in Firefox, and doing a ctrl+F…
I've stripped out every piece of javascript in my site and it seems to working now. So will start adding everything in again slowly and see what trips it. Already done this once, but guess I missed something!
EDIT - cleaned out my cache and everyth…
Yeah, I've loaded in the jquery library from ajax.googleapis.com/ instead of the one supplied with Fuel, and that has got rid of all the errors when just viewing the page. However, when I log in, I still get the following whether viewing my pages or…
Well, think I'd best give up for the day!
I've stripped out all the javascript from my page, left in only:
php echo js('jquery,main')
and I'm still getting three errors when viewing my page logged into fuel:
- missing ] after element list
[Br…
Just been for a run to clear my head :-)
Ran through the diagnostics you suggested on my development box - seems the undefined issue is there as well. It seems connected to a jquery carousel I am running. There is no noticable errors, but when I re…
In the console, under the Net section, there are two HTML requests. One for the actual page (www.mydomain.com), and this gets a 200 ok. The page loads with this request then about half a second later, as the fuel admin bar and editing icons load, I…
Hi Pierlo,
Thanks for the reply. Ok,will have a look into clean_urls config. In the meantime, here is some more info:
Using firebug, when I load any page whilst logged in to admin, I get the following two errors in my console:
-missing ; before s…
Ah-ha! Think it's solved.
I went into admin and resaved the home page - that seems to have solved it. I had added the page through admin on my development site. I thought I would just be able to drop everything in from my development box to the li…