Avatar

Howdy, Stranger!

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

Hawkeye64

About

Username
Hawkeye64
Joined
Visits
29
Last Active
Roles
Member

Comments

  • I've got the blog working again. Thanks! Question though: When you create an Author, then go back to edit that user, you can change it to a different Fuel user (it changes the fuel_user_id). But, the Display Name stays the same as the first User. I…
  • I did all this, but the resulting sql on the select part of the statement is still being appended with navtech_users.display_name (I changed it from name to display_name). display_name is one of the columns being returned, but somewhere it is being …
  • The name I want to show up as the default column (or display_column) is bound by this statement in the sql: CONCAT(fuel_users.first_name, " ", fuel_users.last_name) as name but, if I use this: 'display_field' => 'name', then the sql is change…
  • I did. That didn't fix the issues where I needed to make the code changes because it referenced the incorrect table.
  • Changing the last line here worked for the fix to creating a post: blog_posts_model.php: function __construct() { parent::__construct('blog_posts', BLOG_FOLDER); // table name $CI =& get_instance(); if ($CI->fuel->blog->config…
  • Also, if I try to create a post, I get this error: A Database Error Occurred Error Number: 1054 Unknown column 'fuel_tags.context' in 'where clause' SELECT fuel_tags.id, fuel_tags.name FROM (`fuel_tags`) LEFT JOIN `fuel_categories` ON `fuel_cate…
  • At least I think it should be. If I make the change, then clicking on the navigation "Posts" just gives me a continual spinner.
  • This still gets a problem: A Database Error Occurred Error Number: 1066 Not unique table/alias: 'fuel_blog_users' SELECT COUNT(*) AS `numrows` FROM (`fuel_blog_posts`) LEFT JOIN `fuel_blog_users` ON `fuel_blog_users`.`id` = `fuel_blog_posts`.`au…
  • Am I doing this right? git.exe pull -v --progress "origin" From https://github.com/daylightstudio/FUEL-CMS-Blog-Module = [up to date] master -> origin/master = [up to date] develop -> origin/develop Already up-to-date. So I…
  • Good to know! You're a good mentor. Thanks!
  • Yes, I already did that: $config['date_format'] = 'd/m/Y'; I figured since this is in a different format than the database isusing that it was coming from somewhere else.
  • I think I'll be testing this out later in the week once I get Fuel fully up and running the way I expect (I seem to be struggling a bit and not really finding the documentation I need, it seems there are a lot of expectations in the current document…
  • Getting this: Fatal error: Cannot redeclare class MY_Security_Policy in \Server\xampp\navserver\fuel\modules\fuel\libraries\MY_Parser.php on line 383
  • Does that also go for MY_DB_mysqli_utility.php, MY_Image_lib.php, MY_Profiler.php, MY_Typography.php and MY_Upload.php? That would leave MY_Profiler.php. Does that sound right?
  • Thanks for the help. I'll be sure to install GIT so I can do the upgrades properly.
  • Btw, totally given up on IIS and now using XAMPP. Working great.