dansss Posted May 29, 2011 Report Share Posted May 29, 2011 Tātad,gribu ielikt mlapā vienkārši attēlu, konkrētajā gadījumā tas būtu logo. Izmantoju: <img src="/images/logo.gif" width="241" height="84" /> Gribētu uzzināt kāda velna pēc manis izvēlētais attēls neuzrādas? Ko daru nepareizi? Quote Link to comment Share on other sites More sharing options...
briedis Posted May 29, 2011 Report Share Posted May 29, 2011 Gan jau ka neeksistē tāds ceļš kā norādīji. Ieraksti sava pārlūka adreses laukā: www.tavalapa.lv/images/logo.gif un skaties, vai tiek parādīts attēls vai nē Quote Link to comment Share on other sites More sharing options...
verd Posted May 30, 2011 Report Share Posted May 30, 2011 Man bija tas pats, ievadi tajā src interneta vietas adresi, piemēram, nohostē bildīti bildites.lv, un ieraksti kodu iekšā . Nezinu vai tā ir pareizi, bet man tā parādīja bildi. Forma <img src"www.bildites.lv/(tavs nohostētais attēls).(jpg,png.)"> un ja gribi ,lai uzbraucot uz bildes rādās , piemēram, vārds "mana bilde" vai kāds cits, tad pievieno klāt title="Mana bilde" un alt="Mana bilde". Quote Link to comment Share on other sites More sharing options...
daGrevis Posted May 30, 2011 Report Share Posted May 30, 2011 Hostēt attēlus uz ārējiem serveriem nav gluži pareizi! Kā jau briedis teica, ceļš nav pareizs. Pamēģini noņemt pirmo slešu (Viņam arī ir nozīme)... Quote Link to comment Share on other sites More sharing options...
Kemito Posted May 30, 2011 Report Share Posted May 30, 2011 (edited) <img src="/images/logo.gif" width="241" height="84" /> iespēju dažādība? <img src="images/logo.gif" width="241" height="84" /> <img src="./images/logo.gif" width="241" height="84" /> <img src="../images/logo.gif" width="241" height="84" /> <img src="../../images/logo.gif" width="241" height="84" /> Use PHP? Absolūta ceļa adrese vienmēr gatavībā PHP daļa: define('FPATH', dirname(__FILE__).'/'); HTML daļa: <img src="<?=FPATH?>images/logo.gif" width="241" height="84" /> Nehostē uz ārējiem resursiem bildes, reāli ja tev ir teiksim vienāsadaļā 10 bildes, kuras visas ir jālādē no ārēja restursa - ņā laba turbīnes ātrumā darbosies viss "" .com vēl. Edited May 30, 2011 by Kemito Quote Link to comment Share on other sites More sharing options...
dansss Posted May 30, 2011 Author Report Share Posted May 30, 2011 Paldies par atbildēm ! Viss izdevās kā nepieciešams. Quote Link to comment Share on other sites More sharing options...
EdgarsK Posted May 31, 2011 Report Share Posted May 31, 2011 (edited) Use PHP? Absolūta ceļa adrese vienmēr gatavībā PHP daļa: define('FPATH', dirname(__FILE__).'/'); HTML daļa: <img src="<?=FPATH?>images/logo.gif" width="241" height="84" /> Nehostē uz ārējiem resursiem bildes, reāli ja tev ir teiksim vienāsadaļā 10 bildes, kuras visas ir jālādē no ārēja restursa - ņā laba turbīnes ātrumā darbosies viss "" .com vēl. Rezultāts: <img src="/var/www/projects/www/project.com/system/templates/images/logo.gif" width="241" height="84" /> I'm just say'in Edited May 31, 2011 by EdgarsK Quote Link to comment Share on other sites More sharing options...
marcis Posted May 31, 2011 Report Share Posted May 31, 2011 @Kemito ļoti labs tas php piemērs, ja webserī document root ir uzstādīts kā servera root. Quote Link to comment Share on other sites More sharing options...
Val Posted May 31, 2011 Report Share Posted May 31, 2011 Nav pārbaudīts uz pārāk daudz serveriem, bet vajadzētu strādāt. $pos = strrpos($_SERVER['SCRIPT_NAME'], '/'); $dir = 'http://'.$_SERVER['SERVER_NAME'].substr($_SERVER['SCRIPT_NAME'], 0, $pos); define('DIR', $dir); <img src="<?php echo DIR; ?>/images/logo.gif" width="241" height="84" /> 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.