Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Your problem is very strange and also very non descriptive . You did not write what <code>version of Xampp</code> you are using , what <code>Version of PHP</code> , what <code>version of Wordpress</code>..</p> <p>You did not provide details of your folder structure ( where is xampp, where are the images ? different drives ? path ?? NTFS ? FAT ?</p> <p>You should at least post some sample code of an image that shows and an image that does not show .</p> <p>But ... Here is a list of things that you might want to check or verify</p> <ul> <li>Check that all the related folders has permissions of 755.</li> <li>The above means ALL wp folders (for testings) AND the images folders</li> <li>Check that all your images have legal names for regular php handling (only <code>english characters</code> )</li> <li>check that the images do not have long names .</li> <li>check that the urls do not contain illegal characters</li> <li>Put your images folder (dropbox or not ) INSIDE the xampp httdocs folder.</li> <li>Better yet - put it inside the wp uploads folder .</li> <li>check your scripts for the server delimiter <code>/</code> or <code>\</code> (if you copied and pasted the pathes ..)</li> <li>check that the paths do not exceed 256 characters (including the image names)</li> <li>If the dropbox folder is on the dropbox server and not on the local machine (you did not specify that ) than make sure you are using the PUBLIC URL .</li> </ul> <p>The most annoying problem that I have encountered has to do with the point of the english characters . Does the images that DO NOT appear has some umlauts , accents or non ( <code>a-z 0-9</code> ) characters ?? If they do , try to rename them .</p> <p>After you will provide some more details , it will be easier to help you pinpoint the problem..</p> <p><strong>EDIT I</strong></p> <p>After reading your comment , I believe that all your method of including images is a bit off-course , an not at all realted to xampp or your system´s folder structure / permissions. It seems to me , that you just do not know how to include files in wp themes (but I might be wrong..)</p> <p>In wordpress, to link theme related images , the images should ideally be located at the theme folder <code>wp-content/themes/your_theme/</code> or better yet </p> <pre><code>wp-content/themes/your_theme/img/ </code></pre> <p>then you would just call the images (in your theme) like so : </p> <pre><code>&lt;img src="&lt;?php echo get_template_directory_uri(); ?&gt;/img/yourimage.jpg" /&gt; </code></pre> <p>look at :<a href="http://codex.wordpress.org/Function_Reference/get_template_directory_uri" rel="nofollow">get_template_directory_uri()</a></p> <p>Alternatively you can look at <a href="http://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri" rel="nofollow">get_stylesheet_directory_uri()</a> and<a href="http://codex.wordpress.org/Function_Reference/get_theme_root_uri" rel="nofollow">get_theme_root_uri()</a></p> <p>The part where your css images would take a relative part to the css file depends on where you put them in a relative manner . are they in <code>themes/your_theme/img</code> or <code>themes/your_theme/css/img</code> or whatever . at any rate , you call them essentially the same but mind that the images that are called from WITHIN the css will always follow normal rules of css images , not the wordpress one (which is applied to php files) ..</p> <p>ALL images ( excluding admin ) , as a rule of thumb, should be located under the <code>wp-content</code> folder.</p> <p>Theme images under <code>themes/your_theme</code> and other images under <code>wp-uploads</code>.</p> <p>In wp , a path like you described/requested of <code>C:\xampp\htdocs\anneke_00\wp-content\img</code> is non standard , not recommended , and is used only in very extreme cases for very special reasons (surely not for theme display).</p> <p>If you want , you COULD in theory move your wordpress uploads folder using several methods :</p> <ol> <li><p>Method A</p> <ul> <li>Login into wordpress admin section.</li> <li>Click on settings -> Miscellaneous Settings</li> <li>Apply the file upload folder path.</li> </ul></li> <li><p>Method B</p></li> </ol> <p>as explained in the <a href="http://codex.wordpress.org/Editing_wp-config.php#Moving_wp-content" rel="nofollow">codex</a> :</p> <pre><code>define( 'WP_CONTENT_DIR', $_SERVER['DOCUMENT_ROOT'] . '/blog/wp-content' ); // in wp-config define( 'WP_CONTENT_URL', 'http://example/blog/wp-content'); // in wp-config </code></pre> <p>or only for uplaods </p> <pre><code>define( 'UPLOADS', '/wp-content/uploads' );// in wp-config </code></pre> <p>there are several other methods, but I am sure that with a bit of research you could find them ..</p> <p>Now , that being said , I am not sure that I understood what you want to achieve , but if it is not some special case for some extreme circumstances of an advanced image handling plugin or something - the problem is not in your images nor in your permissions, it is in your workflow and in how you use theme images in wordpress..</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload