![]() |
I am getting an error but not on other computers - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: I am getting an error but not on other computers (/showthread.php?tid=50367) |
I am getting an error but not on other computers - El Forum - 03-24-2012 [eluser]Unknown[/eluser] Hi, I am getting errors as follows when I am running the code but on other computers the same code works perfectly. Here is the error I am getting Quote:Parse error: syntax error, unexpected $end in C:\wamp\www\ttt\system\core\Loader.php(829) : eval()'d code on line 50 Regards Gayan I am getting an error but not on other computers - El Forum - 03-24-2012 [eluser]InsiteFX[/eluser] The error means that it is an unexpected end of file, which could be caused by a missing } braces on one of your blocks! Check and make sure that all opening braces have closing braces! It could also be a corrupted file when you installed CodeIgniter, try re-installing CodeIgniter on that system. I am getting an error but not on other computers - El Forum - 03-26-2012 [eluser]Unknown[/eluser] Thank you very much InsiteFX. I found the solution ust few minitus ago. The issue was with the short open tags of PHP. as Code: <? Gayan |