Tom
Members-
Posts
1517 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Tom
-
To be completely honest, you should be just as concerned about the frontpage design as they are, after all, it's the first thing people are seeing as an example of your work.
-
There is a function to produce urls... <?php echo url('/pages/mypage'); ?>
-
It's not a file... don't worry, as long as you don't go through the install process again when you reupload it'll be fine
-
Your database, your local.config.php and your skin if you have one.
-
So does a design not normally include a frontpage?
-
Add the following css to #main: overflow:hidden;clear:both; Also, move your inline styles for font-size into the block of CSS, at least then it's slightly less bad practice...
-
On your link tag add this attribute: media="all" Possibly... either that or when printing background images are just removed full stop.
-
Ok well, change it to this: body{ font:11px/20px Tahoma,Helvetica,sans-serif; color:#4169E1; background:url(http://atlasvirtuel.com/gestion/lib/skins/brilliancev1/images/top.jpg); }
-
The image doesn't exist at that path. Are you sure you've uploaded it?
-
Ok replace this: body{ background:url(/images/top.jpg;) font:11px/20px Tahoma,Helvetica,sans-serif; color:#4169E1; background:url(/images/top.jpg); } with this: body{ font:11px/20px Tahoma,Helvetica,sans-serif; color:#4169E1; background:url(/lib/skins/brilliancev1/images/top.jpg); }
-
Going to need a URL, don't read minds
-
In css: body{background:url(/path/to/image.jpg);}
-
Oh I see... that makes sense This is the only unmodified code I have to hand... cannot guarantee it's the most up to date. <?php /** * Codon PHP Framework * www.nsslive.net/codon * Software License Agreement (BSD License) * * Copyright (c) 2008 Nabeel Shahzad, nsslive.net * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * @author Nabeel Shahzad * @copyright Copyright (c) 2008, Nabeel Shahzad * @link http://www.nsslive.net/codon * @license BSD License * @package codon_core */ include 'core/codon.config.php'; if(Config::Get('XDEBUG_BENCHMARK')) { $memory_start = xdebug_memory_usage(); } $BaseTemplate = new TemplateSet; # Load the main skin $settings_file = SKINS_PATH.DS.CURRENT_SKIN . '.php'; if(file_exists($settings_file)) include $settings_file; $BaseTemplate->template_path = SKINS_PATH; Template::Set('MODULE_NAV_INC', $NAVBAR); Template::Set('MODULE_HEAD_INC', $HTMLHead); ob_start(); MainController::RunAllActions(); $page_content = ob_get_clean(); $BaseTemplate->Set('title', MainController::$page_title .' - '.SITE_NAME); $BaseTemplate->Set('page_title', MainController::$page_title .' - '.SITE_NAME); if(file_exists(SKINS_PATH.'/layout.tpl')) { $BaseTemplate->Set('page_htmlhead', Template::Get('core_htmlhead.tpl', true)); $BaseTemplate->Set('page_htmlreq', Template::Get('core_htmlreq.tpl', true)); $BaseTemplate->Set('page_content', $page_content); $BaseTemplate->ShowTemplate('layout.tpl'); } else { # It's a template sammich! $BaseTemplate->ShowTemplate('header.tpl'); echo $page_content; $BaseTemplate->ShowTemplate('footer.tpl'); } # Force connection close DB::close(); if(Config::Get('XDEBUG_BENCHMARK')) { $run_time = xdebug_time_index(); $memory_end = xdebug_memory_usage(); echo 'TOTAL MEMORY: '.($memory_end - $memory_start).'<br />'; echo 'PEAK: '.xdebug_peak_memory_usage().'<br />'; echo 'RUN TIME: '.$run_time.'<br />'; } ?>
-
I think the main problem here is... you're with Just Host. What a joke. Also, I don't think you would get a 403 error if there was a problem with your script, that's something to do with the server...
-
Looks like an infinite loop to me...
-
Well you do love to show it off don't you. All the ® and ™ symbols everywhere make your content near impossible to read... Maybe you should just leave it in the note at the bottom (Also, joeri where did you find that? I searched both the Canadian and US official trademark databases and found nothing...)
-
Sorry, I know this is only adding to what's not wanted but I can't let this go unaddressed: Dear stereotypical ignorant American, Welcome to the Internet. This is not America. You have no right to anything here. This website is hosted on a private server and the owner has every right to censor every word you type to whatever degree they feel appropriate. Also, your American government are actually leading the whole censorship movement in the western world [sOPA, PIPA, ACTA, etc] so you don't really have much of a point there anymore either. That is all
-
It wasn't intended as an insult to your coding abilities simpilot.
-
Modules are wide open to exploitation, especially if they're poorly written - that's why I ended up modifying VAForum way back...
-
To be fair, if you can't even commit to the prices for a phpVMS skin (and consider yourself lucky, professional design work costs at least 10x that) then, can you really commit to running a VA?
-
Just a couple of tips: index.php?content= links aren't particularly search engine friendly... if you want people to find you, you're going to want to do something about that. Also, your dropdown doesn't show above the map.