Jump to content

CustomCoders

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by CustomCoders

  1. Hello, The best advice we could give you is to come up with a business plan for your va. 1. Why do you want to start a VA. 2. What are the ambitions. 3. How are you going to achieve certain goals. 4. How are you going to keep pilots & staff interested. 5. Marketing Strategy. Cheers --- Stacey M.
  2. Hello Hello, Delete the local.config.php from the core folder and create a new one. Cheers. Scott P.
  3. Out of curiosity how are you able to do custom designs so cheap (unless ready made) also I see your domain is purchased with a privacy add-on, most people like myself like to know who we are dealing with. Thanks Stacey M.
  4. Hello, Setting the "ACARS_LIVE_TIME" to 1 minute you are forcing the ACARS system to refresh every 60 seconds which could cause the script to exhaust itself. If you were to set it to 10 - 15 minutes you are reducing the load quite drastically in my opinion. Cheers. Scott P.
  5. Hello, Yes that looks good. However i'm not entierly up on the AMD systems. Cheers Scott P.
  6. For now our virtual airline clients will be hosted on a very reliable small reseller. Our business clients are hosted on a dedicated server based in Amsterdam provided by leaseweb. The bigger the va client base becomes then we will definitely move all our va clients onto a second dedicated server. Cheers. Scott P.
  7. Hello, Your pilots can actually change their passwords via email or through the pilot centre http://yourdomain.com/index.php/profile/changepassword Cheers Scott P.
  8. Hello, I recently built a PC for my nephew primarily for FSX came in just under 720GBP. CPU: Intel Core i5 4570 3.20GHz Socket 1150 6mb Cache MOBO: Gigabyte GA-H87-HD3 Socket 1150 VGA DVI HDMI ATX MOTHERBOARD RAM: Corsair 8GB (2x4GB) DDR3 1600MHz Vengeance PRO Kit GPU: EVGA GTX 660 FTW 2GB GDDR5 Dual DVI HDMI Display Port PCI-E Graphics Card HD1: Samsung 120GB SSD 840 EVO - (OS INSTALL ONLY) HD2: 2TB Seagate BARRACUDA 3.5†SATA-III 7200rpm HARDDRIVE 64MB Cache Sguys probably find it hard to believe that this setup can achieve between 22 - 30fps with the PMDG 777 / NGX / Ultimate Traffic 2 / REX / OPUS / FTX GLOBAL / Most add-on scenery. I heavily tweaked the CFG using Kostas tweaks and I'm surprised that a spec like this is running FSX so well. Some people think that FPS between 20 - 30 in FSX is unacceptable but for my nephew it's more than satisfactory even with with the most demanding add-ons. Cheers Scott P.
  9. [b]Fatal error[/b]: Uncaught <blockquote><font face=arial size=2 color=000099><b>Last Error --</b> [<font color=000000><b>Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2) (2002)</b></font>]<br />[<font color=000000></font>]</font><p> </blockquote><hr noshade color=dddddd size=1> thrown in [b]/home/globalai/public_html/malaysiava.org/core/classes/ezdb/ezdb_mysql.class.php[/b] on line [b]99[/b] You need to edit the local.config.php and enter your database details. You could reupload the entire skin again. Cheers Ross P.
  10. You could always just use a <div>. <div id="awards" style="float:left;text-align:center;"> <img src="<?php echo $award->awd_image;?>" /> <br> <?php echo $award->awd_name;?> </div> Cheers. --- Ross P.
  11. OMG that will teach me for not doing my research. I don't think the boss will be happy. --- Scott Pickering Developer CustomCoders.co.uk
  12. Hello All, As you can see from above we have previously purchased 3 extended licenses for the Mega Menu and only been used on two websites as the fresh template has not been sold. Thanks --- Stacey Martin Finance Manager CustomCoders.co.uk
  13. http://codecanyon.ne...author=Vasterad
  14. Also for your information here is our entire navigation code we use on our websites. <nav id="navigation" class="style-1"> <ul class="menu" id="responsive"> <li><a href="<?php echo url('/'); ?>"><i class="icon-home"></i> Home</a></li> <?php /* Logged Out */ if(Auth::LoggedIn() == false){ ?> <li><a style="cursor:pointer"><i class=' icon-group'></i> Corporate</a> <!-- Second Level / Start --> <ul> <li><a href='<?php echo url('/about'); ?>'>About Us?</a></li> <li><a href='<?php echo url('/staff'); ?>'>Staff Team</a></li> <li><a href='<?php echo url('/partners'); ?>'>Our Partners</a></li> </ul> <!-- Second Level / End --> </li> <li><a style="cursor:pointer"><i class=' icon-briefcase'></i> Careers</a> <!-- Second Level / Start --> <ul> <li><a href='<?php echo url('/application'); ?>'>Become a Pilot</a></li> <li><a href='<?php echo url('/rules'); ?>'>Rules & Regulations</a></li> <li><a href='<?php echo url('/ranks'); ?>'>Ranks & Awards</a></li> </ul> <!-- Second Level / End --> </li> <li><a style="cursor:pointer"><i class='icon-cog'></i> Operations</a> <!-- Second Level / Start --> <ul> <li><a href='<?php echo url('/acars');?>'>Live Map</a></li> <li><a href='<?php echo url('/fleet');?>'>Our Fleet</a></li> <li><a href='<?php echo url('/schedules/view');?>'>Flight Schedules</a></li> <li><a href='<?php echo url('/pilots'); ?>'>Pilot Roster</a></li> </ul> <!-- Second Level / End --> </li> <li><a href="<?php echo url('/login');?>"><i class="icon-lock"></i> Log-in</a></li> <?php } ?> <?php /* Logged in */ if(Auth::LoggedIn()){ ?> <li><a style="cursor:pointer"><i class=' icon-group'></i> Corporate</a> <!-- Second Level / Start --> <ul> <li><a href='<?php echo url('/about'); ?>'>About Us?</a></li> <li><a href='<?php echo url('/staff'); ?>'>Staff Team</a></li> <li><a href='<?php echo url('/partners'); ?>'>Our Partners</a></li> </ul> <!-- Second Level / End --> </li> <li><a style="cursor:pointer"><i class=' icon-briefcase'></i> Careers</a> <!-- Second Level / Start --> <ul> <li><a href='<?php echo url('/rules'); ?>'>Rules & Regulations</a></li> <li><a href='<?php echo url('/ranks'); ?>'>Ranks & Awards</a></li> </ul> <!-- Second Level / End --> </li> <li><a style="cursor:pointer"><i class='icon-cog'></i> Operations</a> <!-- Second Level / Start --> <ul> <li><a href='<?php echo url('/acars');?>'>Live Map</a></li> <li><a href='<?php echo url('/fleet');?>'>Our Fleet</a></li> <li><a href='<?php echo url('/schedules/view');?>'>Flight Schedules</a></li> <li><a href='<?php echo url('/pilots'); ?>'>Pilot Roster</a></li> </ul> <!-- Second Level / End --> </li> <?php if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.fileurl('/admin').'"><i class="icon-bolt"></i> Admin Center</a></li>'; } } ?> <li><a href="<?php echo url('/profile'); ?>"><i class="icon-lock"></i> Crew Center</a> <ul> <li><a href="<?php echo url('/Login/logout'); ?>">Log Out</a></li> </ul> </li> <?php } ?> <li><a href="<?php echo url('/contact'); ?>"><i class="icon-envelope-alt"></i> Contact Us</a></li> </ul> </nav>
  15. This Menu navigation code is from codecanyon And every time we sell a template we purchase an additional license as per license conditions.
  16. Hello All, Thanks for your comments on my previous posts. Due to a shortfall in sales on the fresh template we have decided to focus on creating templates to order rather than just put a template out and hope for the best. If any of you are interested in the fresh template you can view it at http://preview.custo...ers.co.uk/fresh And you could own this skin for a small fee of £9.99. We have now put a price structure in place that we think is reasonable. You can see what we offer at http://www.customcoders.co.uk. Please note that our current site is a holding page while our new site is under development. If you require a quote for a bespoke design please contact sales@customcoders.co.uk and the team will assist you in finding the right solution. Thanks. ---
  17. Hello, If you want to show a phpVMS skin, why don't you just make a new install in the sub domain folder. if it's only a text information page just create a ".html" file. Thanks
  18. Looks good, however why don't you just skin phpVMS?
  19. 1. The purchaser has permission to host on 1 active web hosting account at any time. 2. The purchaser can backup their hosted skin as many times as they like as long as they do not distribute the backup. 3. The purchaser has the right to edit the skin as they please. I thank you for making your points and I will get my partner to edit the EULA where appropriate for now i will disable the EULA. Cheers.
×
×
  • Create New...