![]() |
Any recent change on Dreamhost that stops CI from working? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Any recent change on Dreamhost that stops CI from working? (/showthread.php?tid=11683) Pages:
1
2
|
Any recent change on Dreamhost that stops CI from working? - El Forum - 09-19-2008 [eluser]Zarate[/eluser] Hi guys, Just realized that my CI site stopped working. It was working without problems and now it doesn't. I've done nothing and I know that because the site is under SVN control. I'm getting the "No input file specified" error that I know it's related to .htaccess, but again, I haven't changed anything lately. As I keep the site open source, you can check out my files: http://zcode.googlecode.com/svn/trunk/php/zv3/.htaccess http://zcode.googlecode.com/svn/trunk/php/zv3/system/application/config/config.php This was working maximum 2 days ago. Anyone else at Dreamhost? Thanks Any recent change on Dreamhost that stops CI from working? - El Forum - 09-19-2008 [eluser]Zarate[/eluser] Just for the record, the front page of the site works, but the moment it has to find out something I guess using .htaccess it throws a 404 error. For example: http://zarate.tv/xml/ Should return it was return an xml and if i look to the headers, it returns 404 error. Thanks Any recent change on Dreamhost that stops CI from working? - El Forum - 09-21-2008 [eluser]llbbl[/eluser] it works fine for me on DH. just look through your code and see if you can debug it to find where its having the issue. DH does have some basic things disabled for security ... like fopen and SOAP extension .. there may be some other things too that aren't coming to mind. Any recent change on Dreamhost that stops CI from working? - El Forum - 09-21-2008 [eluser]jtkendall[/eluser] I've got a couple of apps running on Dreamhost and haven't had any issues. Can you set line 176 of config.php to $config['log_threshold'] = 4; and see if any errors show up (if you post them here we can probably help)? Also make sure your "logs" folder's permissions allow writes. Any recent change on Dreamhost that stops CI from working? - El Forum - 09-21-2008 [eluser]llbbl[/eluser] don't post your logs here, thats insecure Any recent change on Dreamhost that stops CI from working? - El Forum - 09-21-2008 [eluser]jtkendall[/eluser] Ok, don't post your logs here. If there's a problem it's probably the last line in the log file for today. Any recent change on Dreamhost that stops CI from working? - El Forum - 09-22-2008 [eluser]Zarate[/eluser] Hi guys, Have just modfied config.php and set up log level to 4. However, I can't find the log file. Is not inside application/logs and I'm now looking at DH's logs folder (common to all your sites for that user) but doesn't seem to appear anything related. Just so I know, what does "No input file specified" exactly mean? Everybody seems to point out that is related to .htaccess but does it mean is at Apache level or CI has something to do with it? As I said before, the sites were working, under source control so I know I haven't changed anything and all of the sudden start failing so I'm a little bit puzzled. Thanks Juan Any recent change on Dreamhost that stops CI from working? - El Forum - 09-22-2008 [eluser]Zarate[/eluser] I just can't find any log, this is driving me crazy. After setting up $config[’log_threshold’] = 4; I still don't see anything in system/logs. I've chmod'ed +w logs folder like this: chmod -R +w logs/ No change as far as I can see. Also, trying to find Apache logs for my domain, following this page in DH's Wiki: http://wiki.dreamhost.com/Finding_Causes_of_Heavy_Usage I'd say my logs should be on logs/mysite/http. But access.log only has rows from 2/3 days ago and error.log is empty. My sites have been down for 3 days already. Not that i'm losing any money, but it's extremely frustrating. So far I'm clueless about the error. Any recent change on Dreamhost that stops CI from working? - El Forum - 09-22-2008 [eluser]Zarate[/eluser] Sorry for the mess. I've just found out that I've been moved inside DH. I was on one server, and now I'm in another one. That's why I couldn't find my logs! I've contacted their support team because it has to be something related with that move. I've just checked my PHP version and it's 5.2.6 which appears to be fine for CI. Will report back if the change has anything to do with CI and you guys need to be aware of. Cheers Juan Any recent change on Dreamhost that stops CI from working? - El Forum - 09-22-2008 [eluser]jtkendall[/eluser] You probably won't see anything inside your error logs. I had a client using ExpressionEngine who had a similar input file error. It wasn't showing up in error logs as it's not a PHP error, but an application error. There should be an error log in your system/logs folder if there is an error. Try changing this Code: $this->load->view('xmlview',$data); Code: $myXML = $this->load->view('xmlview',$data, TRUE); Code: echo $myXML; |