He deleted his cookies and still getting sent back to the login. Could it be a sessions problem? What other information can I extract for a clearer picture
I tested this on my dev environment A little web server in house and had the same results the Test.php controller did not return any results when the environment is in production. It does return in development. So I don't see it being a server issu…
PHP version 7.1.30 (cli)
I just made the index method echo Hello World. Same results. No print to screen in production. Would print to screen in development.
I created another controller:
<?php
error_reporting(E_ALL);
class Test extend…
I wasn't able to get it to throw an error nor print_r() the results of a query in PRODUCTION mode. DEVELOPMENT it would give me the query results.
Was it intended to not run crons in production mode?
The ENVIRONMENT is in production and I don't see any errors because in production has error suppression on but I will put error_reporting(E_ALL); at the top of my controller file and run it and see what I get. Ill get back to you
I cannot run any controllers from command line if the environment is in production. It works fine in development. How can I over ride this to run fire off a controller from the command line php index.php Send_controller
url is in the autoload['helper'] but the only thing in the fuel/application/helpers/MY_url_helper.php file is
require_once(FUEL_PATH.'helpers/MY_url_helper.php');
Nothing else.
function form_fields($values = array(), $related = array()) { $fields = parent::form_fields($values, $related); // put in your own specific code to manipulate the fields here $fields['timeposted']['type'] = "hidden"; …
FIXED!
So long story and I doubt anyone ever runs into this.... BUT... I developed a brand new site on a production server some time ago. Time to update needed a dev. environment. Configured a Raspberry Pi to be my dev. Downloaded the site and pu…
I uploaded the site to a remote server under a domain I had and the site works well in Chrome, no problems. The site does error out in MS Edge. Index page works and looks great. If I click a link it errors out with a 414
http://domain.com/index.p…
mod_rewrite is installed and on
I moved the site the the root of html to simplify trouble shooting
Now when I click about I get this is the URL and a Forbidden
http://192.168.0.55/192.168.0.55/192.168.0.55/................./about
with th…
Yes, I tried the other 2 settings PATH and the QUERY and changed it back to REQUEST and then changed the index.php (which was blank) to index.php? and none of it worked. I moved the site to the root just to make things simpler for now but still gett…
I moved my production site to a dev environment in a directory
Kinda the same issue I can only get the index page to work in the subdirectory where the site is on my test environment
192.168.0.55/jack/
The index page of the site comes up.
I…
I need this to be with the entire site now. I tried
RewriteCond %{SERVER_PORT} 80
RewriteCond %{HTTP_HOST} ^(www.)?fatjacksports.com
RewriteRule ^(.*)$ https://www.fatjacksports.com/$1 [R,L]
in the .htaccess fike and I get a too many red…
I can echo out the ENVIRONMENT constant in my footer but if I echo out my $config['ssl'] there's nothing.
echo ENVIRONMENT; // production
echo $config['ssl']; //