flyalaska Posted October 31, 2015 Report Share Posted October 31, 2015 I am helping someone with their site. He has this error file_exists(): File name is longer than the maximum allowed path length on this platform (4096) On the index page and the profile pages. We thought it was the skin, I uploaded a different skin to test that theory. Same error. phpVMS 5.5.2 php 5.4. We have also tried it with php 5.5 and 5.6 There is a route, airplane, and two airports in the database. There is some data. Any hekp would be appreciated. Quote Link to comment Share on other sites More sharing options...
web541 Posted October 31, 2015 Report Share Posted October 31, 2015 Have any hubs been added? Quote Link to comment Share on other sites More sharing options...
flyalaska Posted October 31, 2015 Author Report Share Posted October 31, 2015 Just one Quote Link to comment Share on other sites More sharing options...
web541 Posted October 31, 2015 Report Share Posted October 31, 2015 Hmmm, can you see if this works http://forum.phpvms.net/topic/22164-phpvms-55/#entry119612 Quote Link to comment Share on other sites More sharing options...
flyalaska Posted October 31, 2015 Author Report Share Posted October 31, 2015 Its already defaulted like that Quote Link to comment Share on other sites More sharing options...
web541 Posted October 31, 2015 Report Share Posted October 31, 2015 Have there been any flights in the database -> your skin might be looking for the past 5 flights. Have you tried it with Crystal? Quote Link to comment Share on other sites More sharing options...
flyalaska Posted October 31, 2015 Author Report Share Posted October 31, 2015 No flights yet. Error goes away with crystal. Quote Link to comment Share on other sites More sharing options...
web541 Posted October 31, 2015 Report Share Posted October 31, 2015 Is there anything that is the same on both pages that could be outputting that error? Quote Link to comment Share on other sites More sharing options...
flyalaska Posted October 31, 2015 Author Report Share Posted October 31, 2015 no, I put other skins on his site, all came with the same error. I will have him file some flights, see what happens. Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 1, 2015 Administrators Report Share Posted November 1, 2015 Does any of the airline names have a period (.) in it? If the end of the error message looks something like; <select name="code" id="code"> <opt in /home/u328252270/public_html/suava/demo/core/classes/TemplateSet.class.php on line 96 I would guess the airline name has a period in it or possibly the code of the airline is TPL or PHP Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 1, 2015 Author Report Share Posted November 1, 2015 No period, the Airline code is VAP http://www.klm-airways.com Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 1, 2015 Administrators Report Share Posted November 1, 2015 Try removing the registration form from the front page and see if the error goes away. EDIT: I meant login form Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 1, 2015 Author Report Share Posted November 1, 2015 No change Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 1, 2015 Administrators Report Share Posted November 1, 2015 Can you put up a phpinfo file and let me know the link? I think it is something in the config on the server, there is another site doing the same thing hosted on a Hostinger server as well. -> http://tamv.net/suav...hp/registration Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 1, 2015 Author Report Share Posted November 1, 2015 I sent you the link through PM Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 1, 2015 Administrators Report Share Posted November 1, 2015 Is your server (for flyaka) running on fastcgi for php? It would be in the first section of phpinfo and is labeled -> Server API Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 1, 2015 Administrators Report Share Posted November 1, 2015 I think you said you are running 5.5.2 of my version, if that is correct try this; /core/classes/TemplateSet.class.php line 117 should be if (is_string($value) && $value != '' && substr_count($value, $this->tpl_ext) > 0) { change to if (is_string($value) && $value != '' && substr_count($value, $this->tpl_ext."\n\r") > 0) { 1 Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 1, 2015 Author Report Share Posted November 1, 2015 That fixed it. Thank you! Yes on my AKA server - Server API CGI/FastCGI 1 Quote Link to comment Share on other sites More sharing options...
KLM Posted November 1, 2015 Report Share Posted November 1, 2015 Words cannot express my feelings, nor my thanks for all your help." I know it isn't much but I really want to say Thank You for everything My friend 1 Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 1, 2015 Author Report Share Posted November 1, 2015 This fix puts another error in the air. In admin know matter what link I click there is some sort error where a menu should be. It will display sidebar_dashboard.php for examplae, different for each link. Quote Link to comment Share on other sites More sharing options...
Administrators simpilot Posted November 1, 2015 Administrators Report Share Posted November 1, 2015 Ew... Lets try this. Change line 117 to; if (is_string($value) && $value != '' && substr($value, -3) == $this->tpl_ext) { 1 Quote Link to comment Share on other sites More sharing options...
flyalaska Posted November 1, 2015 Author Report Share Posted November 1, 2015 That did it. Thank you David! 1 Quote Link to comment Share on other sites More sharing options...
KLM Posted November 2, 2015 Report Share Posted November 2, 2015 That did it. Thank you David! Yeah thank you both of you, But especially Eddie, for helping me out so much. Quote Link to comment Share on other sites More sharing options...
FlyingMachine Posted May 11, 2016 Report Share Posted May 11, 2016 Ew... Lets try this. Change line 117 to; if (is_string($value) && $value != '' && substr($value, -3) == $this->tpl_ext) { Hi sir, I applied this rule to resolve the previous error "sidebar_dashboard.tpl" it resolved well, but the previous error shown again "Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (4096): /var/www/vhosts/....." FYI my php version is 5.3.29 looking forward Quote Link to comment Share on other sites More sharing options...
FlyingMachine Posted May 16, 2016 Report Share Posted May 16, 2016 Any idea! 1 Quote Link to comment Share on other sites More sharing options...
flyalaska Posted May 17, 2016 Author Report Share Posted May 17, 2016 Are you able to edit the php setting on your server? Quote Link to comment Share on other sites More sharing options...
FlyingMachine Posted May 19, 2016 Report Share Posted May 19, 2016 Yes, i do Quote Link to comment Share on other sites More sharing options...
flyalaska Posted May 19, 2016 Author Report Share Posted May 19, 2016 Is that the full error message? Quote Link to comment Share on other sites More sharing options...
FlyingMachine Posted May 19, 2016 Report Share Posted May 19, 2016 Warning: file_exists(): File name is longer than the maximum allowed path length on this platform (4096): (here the path of default skin) Thanks Quote Link to comment Share on other sites More sharing options...
flyalaska Posted May 20, 2016 Author Report Share Posted May 20, 2016 Go to your php settings and set open_basedir to none! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.