Avatar

Howdy, Stranger!

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

dblurred

About

Username
dblurred
Joined
Visits
22
Last Active
Roles
Member

Comments

  • Thanks. You got me pointed in the right direction and I am resolving the problem. I may upgrade to the newest version at some point but not critical right now.
  • Ok, that is good I have the layout set correctly. I have searched my entire directory and fuel\modules\fuel\controllers\fuel_router.php does not exist in my copy.. It is 0.9.3.. are you thinking of an updated version? As I still don't have any ide…
  • Hi, yes thanks for the help. I have it pulling the main.php default layout file. It does error on the header. Now I load the header in the view files.. first the layout then the header. But I see the layout main.php pulls in the header and foote…
  • MY_Log I looked at that as well. Not that I could have missed a mistake but not likely. It would make sense if that was the issue but I spent about 12 hours on this. I put it side by side to existing MY_Image_lib trying to see what it is I could…
  • I had to hardcode it into the Library file. No explanation unless some Unix filename thing.
  • Yes, I confirmed adding public function testit() to the my_image_lib works but to my_log does not even though it does in Xampp. I have reuploaded everything and doubt PHP.ini would cause this. Seems a core issue, not ini but just my guess. I am ce…
  • Hi thanks, it is 755. I can see that the my_image_lib will catch, and if I try the my_log it complains as it is extending the same function in the log class, but if I add the proper params it does not catch still. it is for some reason not paying a…
  • ok, seems running the cron from the actual cpanel user account, not in cron.d fixed that issue of it not running all the way. Also calling the model is working now. So, it must have been a permissions issue. For now seems we are fixed! Using th…
  • Hi thanks for the reply. I am running this in Apache on the server. I was using the command line just to test it before I put it on the cron job. So what I found was the first call to the model does not work, so I put the code inside the controll…
  • ok, so i was adding the xcache admin folder through root. Turns out that jacks the permissions up when apache tries to load it. So it works now, with no problem. However of course xcache is not working right, but at least i can access the admin. I…
  • Hi, yes I will try it. I am programming other stuff at same time and also have to wait till after people done working so I don't cause them to lose data rebooting apache if httpd changes. I do remember, it gave 404 and denied access. I can't reme…
  • I do need the htaccess because I do have 10 months of programming into the web app. I did try commenting out the htaccess but then I got an error. I did not remove it though. I will try what you mentioned. I am not an expert on htaccess files.
  • Thank you for replying. The xcache is installed on the server, so I was trying to keep it behind the webroot since the references in it would be better able to link to the proper place/path. It is a VPS so I have access of course. So you are sayi…
  • Thanks for the reply. No, I installed xcache because I am using TCPDF to make PDF's and it demands a lot. Xcache has an admin that works to give statistics on how it is improving the performance of the server. Op code caching. the admin can be in…
  • This saved me. I could not figure out what was going on, but alas, it was the old lowercase dilemma. It fixed my problem. Thanks for posting.
  • Makes sense, I would have to do some more work to get that. For now I am working around it. Good exercise though for the future even though I did not accomplish much.
  • ok, well I think I am doing this a bit different and maybe why it is not working. I was using this structure to explain it but I think the key is messing it up. I can't say for sure, but i tried what you have and it gives the other/item3 link as n…
  • ok, I will do that. I thought i tried that and the "/" would mess it up. I will give it a go.
  • If I do this $nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => ''); or $nav['other/item3'] = array('label' => 'item3', 'parent_id' => 'other', location => FALSE); The link is just text, it does …
  • oh wow ok. I thought I tried that. if I set the parent_id of item3/sub1 to 'other', that would give the sub1 to kick out into another submenu?
  • ok thanks. I am not really looking to add style as am using the default dropdown meny, I am just trying to make another submenu below a submenu item like the tree I have above. It would be a great option to be able to nest more submenus.
  • Great, ok. Can I make the item3 null also? Is there any way to get the submenu of item3 to shoot out to the right I listed?
  • Thanks, I did find this. Someone wrote a roles thing for tank_auth. https://bitbucket.org/mtsandeep/tank-auth-with-roles/wiki/Home That is what I am trying to do is have a user login for the public side that will allow say someone to delete somethin…
  • I tried tank_auth but it does not allow for groups, it only logs you in, registers. It is based on DX Auth and upgrades it but also removes features like: * Role based (admin, user, moderator, etc). Inheritance also supported (optional). Tank_Auth…
  • ok thanks. I was not sure. i do not need a registration as the admin would handle that part of it.. but sure I saw tank_auth but seemed overkill. but if you are saying your login is really only to control the admin access, then ok that makes sens…
  • Hi, I am trying to use the login feature but not let the user go to the admin at all. So I can redirect a user with the redirect property you made, but what keeps them from typing in fuel and it going to the admin area.. the dashboard etc? I am bu…
  • How to use this? Does it work with has_permissions? I do not see any code as an example. Any help? I am trying to allow the admin to setup group access and I need to know how to use your module to control that access.
  • ok thanks. The only users using this will be the administrators with different levels of access. It seems this is not how you intended fuel to be used. So these global errors at the top are not wanted, but turning them off kills the error reportin…
  • HI, I am also getting duplicate errors at the top and above the form. The user in this case will always be logged in, so I need the top screen errors to not show but i still need the errors above the form to show up. I am wondering what can be don…
  • I wanted to note something as I am learning. This line $CI =& get_instance(); in the global file does not hold in a controller file. You mention it should not be needed if set in the globals but I see it in some of your model examples. I am a…