rodoy Posted January 29, 2012 Report Share Posted January 29, 2012 Ok, this is my VA site: http://www.airlinesofisrael.com/phpvms.full/index.php/ On the right you can see 2 buttons, "Our Fleet" and "Our Hub, Tel Aviv". Each button should link the a specific page. The "Our Hub, Tel Aviv" button should link to this page: http://www.airlinesofisrael.com/phpvms.full/index.php/pages/telaviv But somehow, there are times that the system itself removes the "index.php" from the address and when I press it I link to this: http://www.airlinesofisrael.com/phpvms.full/pages/telaviv, and of course this page doesnt work without the "index.php". Some does with the "Our Fleet" button. It seems like the system changes something in the files. Have anyone got this in the past? Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted January 29, 2012 Moderators Report Share Posted January 29, 2012 Ok, this is my VA site: http://www.airlineso...full/index.php/ On the right you can see 2 buttons, "Our Fleet" and "Our Hub, Tel Aviv". Each button should link the a specific page. The "Our Hub, Tel Aviv" button should link to this page: http://www.airlineso...p/pages/telaviv But somehow, there are times that the system itself removes the "index.php" from the address and when I press it I link to this: http://www.airlineso...l/pages/telaviv, and of course this page doesnt work without the "index.php". Some does with the "Our Fleet" button. It seems like the system changes something in the files. Have anyone got this in the past? Are you using pages for your fleet or telaviv? Cause you go over the buttons and you see the link at the bottom of the browser. Make sure you have linked your buttons correctly. Go to admin center Pages/News, click on pages and click on the link and make sure it shows what supposed to. Then check the button link. Quote Link to comment Share on other sites More sharing options...
disconett Posted January 29, 2012 Report Share Posted January 29, 2012 Working just fine for me Quote Link to comment Share on other sites More sharing options...
Dyl963 Posted January 30, 2012 Report Share Posted January 30, 2012 Are you using pages for your fleet or telaviv? Cause you go over the buttons and you see the link at the bottom of the browser. Make sure you have linked your buttons correctly. Go to admin center Pages/News, click on pages and click on the link and make sure it shows what supposed to. Then check the button link. Agreed. Also, if you want the pages to be public, make sure within phpVMS, the pages are "enabled". Just a thought Quote Link to comment Share on other sites More sharing options...
Jeff Posted January 30, 2012 Report Share Posted January 30, 2012 I haven't looked at your page, but if you are using php on your /pages/mypage you need to make sure that you DO NOT edit them via the Admin Center, as this will remove your codes. You must edit them using an fpt client or by the cPanel. Quote Link to comment Share on other sites More sharing options...
rodoy Posted January 30, 2012 Author Report Share Posted January 30, 2012 Are you using pages for your fleet or telaviv? Cause you go over the buttons and you see the link at the bottom of the browser. Make sure you have linked your buttons correctly. Go to admin center Pages/News, click on pages and click on the link and make sure it shows what supposed to. Then check the button link. These link are beind edited via the skin core files. The link is entered correctly Jeff, I edit the pages by using the admin panel. I dont know if you, guys, understand the problem. When I press one of the buttons, there are time that I directed to this address: http://airlinesofisrael.com/phpvms.full/pages/fleet When I should be addressed to this: http://airlinesofisrael.com/phpvms.full/index.php/pages/fleet This is the code of the links: <div class="sidebar_box"> <[b]a href="pages/fleet"[/b]><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/nightlife.png" alt="Night Life" border="0" /></a> </div> <div class="sidebar_box"> <[b]a href="pages/telaviv"[/b]><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/city-zoo.png" alt="City Zoo" border="0" /></a> </div> You can see that I have inserted the correct path to the correct pages, and if I will add "index.php" to the link in this code I will get this address: http://airlinesofisrael.com/phpvms.full/index.php/index.php/pages/fleet This problem happends to my crew too. Thank you for you help. Quote Link to comment Share on other sites More sharing options...
Jeff Posted January 30, 2012 Report Share Posted January 30, 2012 It seems to be working fine for me, but you might want to use these codes instead of what you have posted above since those are showing bb tags, used in forums and blogs. <div class="sidebar_box"><a href="<?php echo SITE_URL ?>/index.php/pages/fleet"><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/nightlife.png" alt="Night Life" border="0" /></a></div> <div class="sidebar_box"><a href="<?php echo SITE_URL ?>/index.php/pages/telaviv"><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/city-zoo.png" alt="City Zoo" border="0" /></a></div> and it is a lot cleaner this way. Quote Link to comment Share on other sites More sharing options...
Moderators Parkho Posted January 30, 2012 Moderators Report Share Posted January 30, 2012 These link are beind edited via the skin core files. The link is entered correctly Jeff, I edit the pages by using the admin panel. I dont know if you, guys, understand the problem. When I press one of the buttons, there are time that I directed to this address: http://airlinesofisrael.com/phpvms.full/pages/fleet When I should be addressed to this: http://airlinesofisrael.com/phpvms.full/index.php/pages/fleet This is the code of the links: <div class="sidebar_box"> <[b]a href="pages/fleet"[/b]><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/nightlife.png" alt="Night Life" border="0" /></a> </div> <div class="sidebar_box"> <[b]a href="pages/telaviv"[/b]><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/city-zoo.png" alt="City Zoo" border="0" /></a> </div> You can see that I have inserted the correct path to the correct pages, and if I will add "index.php" to the link in this code I will get this address: http://airlinesofisrael.com/phpvms.full/index.php/index.php/pages/fleet This problem happends to my crew too. Thank you for you help. <div class="sidebar_box"> <[b]a href="<?php echo url('pages/fleet') ;?>"[/b]><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/nightlife.png" alt="Night Life" border="0" /></a> </div> <div class="sidebar_box"> <[b]a href="<?php echo url('pages/telaviv') ;?>"[/b]><img src="<?php echo SITE_URL ?>/lib/skins/cityportal/images/city-zoo.png" alt="City Zoo" border="0" /></a> </div> Try these two codes, the link to your pages is not going through you site URL Your code: <[b]a href="pages/fleet"[/b]> My code: <[b]a href="<?php echo url('pages/fleet') ;?>"[/b]> BTW it's not tested. 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.