
patva1
Members-
Posts
125 -
Joined
-
Last visited
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by patva1
-
I tried that and I still can't get them to show up. It still acts as though the images do not exist.
-
How exactly can I create a navigation drop down menu in phpvms? I have found multiple programs/tutorials on the web, but I can't get any of them to integrate into the site.
-
All of a sudden phpvms/my site will not load the CSS. It shows this error in Firefox's error module: Outdoor.css was not loaded because its MIME type, "text/html" is not "text/css" Everything was working fine earlier today. Quick help is greatly appreciated.
-
I got the header image displayed. But it still will not display image links.
-
Shouldn't the images folder be in the skin folder though, or am I supposed to put the images in a created folder inside the base phpvms directory?
-
I am having some problems with images showing up in my skin. All of the images that phpvms uses/displays all show up fine. But, images related to the skin, such as the header image and html link images I have been trying to put in, do not. In Firefox they simply don't show up. Where the html image links should be, all that shows up is a little box. In IE it shows the little box in the upper left corner with the red x. Here is a link to the site if you want to look: http://www.patva1.comli.com/phpvms
-
That is for the page I created. If you mean what phpvms asked to name the page, then it was Route Map.
-
Here is what the header/title looks like: <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Route Map</title> </head>
-
It allows you to view changes to your CSS, things such as width, in real time, then all you have to do is go in to your CSS on the server and change it permanently. When you open it, click on the inspect button. Then you just have to move your pointer over the area you want to change and it will automatically pull up the appropriate entry in your CSS.
-
Could you please explain what you mean/how to fix it. I think I understand what you are saying, but I want to be sure. I apologize for the extent of my questions, I am not very good at coding, as you can probably guess. Thanks for all of your help so far.
-
If you have Firefox or don't mind using it I would suggest Firebug: http://getfirebug.com/ I was told about it by Nabeel and it has helped me a lot. If you need any help just let me know.
-
Could anyone tell me what this error is saying/how to fix it? I have been trying to fix it/ trace the route of the problem for quite some time, but to no avail. Thanks.
-
When I use that I get the following php error: Warning: file_exists() [function.file-exists]: open_basedir restriction in effect. File(/home/a8930745/public_html/phpvms//core/templates/<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Route Map</title> </head> <body> <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAmh5p1i5yMwpb66nDaOw1eRQwTXokuW8BVf_s5QXPuQRNUwc0eRRF4KMwcmpt4u7wbdAJNLbxS-w5jA" type="text/javascript" charset="utf-8"></script><script type="text/javascript" charset="utf-8"> //<![CDATA[ /************************************************* * Created with GoogleMapAPI 2.5 * Author: Monte Ohrt <monte AT ohrt DOT com> * Copyright 2005-2006 New Digital Group * http://www.phpinsider.com/php/code/GoogleMapAPI/ *************************************************/ var points = []; var markers = []; var counte in /home/a8930745/public_html/phpvms/core/classes/TemplateSet.class.php on line 95 Thanks.
-
Here they are. Thanks for all of your help so far. routemap.htm RouteMap.php.txt
-
The file for the page where I am calling for the route map, the actual route map file, or both?
-
I got the file edited, but all that will show up is the title, still no map.
-
When I try to save the file I get this error: Warning: ftp_put() [function.ftp-put]: Can't open that file: Permission denied in /home/manager/public_html/includes/filesystem.inc.php on line 1367 Status: This file could not be saved.
-
Thanks for the help. There are no more errors, but when I go to the page it loads but no map shows up. I have a google API key, and the live flight map works, just when I go to the routmap nothing loads on the page.
-
Here it is $shownroutes = array(); $centerlat = 0; $centerlong = 0; # Create map foreach($allschedules as $schedule) { $route = $schedule->depicao.$schedule->arricao; if(in_array($route, $shownroutes)); { continue; } else { $shownroutes[] = $route; }
-
I get this error when I try to view the route map: Parse error: syntax error, unexpected T_ELSE in /home/a8930745/public_html/phpvms/core/modules/RouteMap/RouteMap.php on line 31 I checked and double checked, and that particular part of the code is exactly as Nabeel said to make it. Any help is appreciated.
-
Every time I try to put in the /> even with the space it keeps being automatically deleted by phpvms.
-
I have been trying to make an HTML image link, however all that show up is a small white box with a grey outline. The code I used looks like this: <a href="hangar"><img src="www.patva1.comli.com/phpvms/lib/skins/patva_template/images/hangar.jpg"/></a> If there is something wrong please let me know, but I thought I was doing it right. If you click on the small white box it takes you to the right page, just the image does not show up like it should.
-
Thanks man. I am going to work on it, and let you know how it goes.