Maybe a wrapper around: http://flysystem.thephpleague.com/api/ with an Amazon S3 adaptor: http://flysystem.thephpleague.com/adapter/aws-s3-v3/ could be used as an extension to the assets module maybe. Or a simple interface for just for carrying out …
I was able to resolve it, it seems I was changing the config value for base url in my view code. I was trying to get pagination to work for my tags page. So I loaded the pagination library and my pagination config file, which had a config item with…
Here is the code for my tags.php file:
<?php
$slug = uri_segment(3);
if ($slug) :
$tag = $CI->fuel->tags->find_by_tag($slug);
if (empty($tag)) :
redirect_404();
endif;
$events_model = $tag->get_events(TRUE);
$events…
I ran into some URL resolving issues on event tags page. When i'm on the events tags page e.g. www.example.com/events/tags/car all my links become broken as it resolves to something like this: www.example.com/events/tags/blog or www.example.com/even…
Ah wrong choice of words, I should have been clearer. But you're correct, I was confused about getting the right URL for the anchor function. Thanks for clearing things up.
I get these errors whenever a non-admin view is loaded like the preview page or installation page. It seems that error is spawned through Fuel Navigation.
Thanks I've already created the ci_sessions table using the SQL query from the CI user guide and it's working fine now.
I'm using PHP 5.6 and yes I'm using the latest develop branch.
Edit: I see that there are some recent commits addressing some o…
Thanks for replying. Yes I meant 3.06
1. Hmm. I never had any Git issues making my Models and Controllers Uppercased.
2. Thanks I'll keep that in mind
3. Yes I plan to save sessions in the Database. Does the FuelCMS.sql file include creating a ta…