Wallpaper Script Forum » Announcements

Please help Wallpapers are not shown why

(30 posts)
  1. Hi,
    Today i have tried to change " URL word separator " and " URL token separator " by / and - but when i changed it my site is not showing the wallpapers although i have put the original url word separator and url token separator but it's not working working please see here http://www.wallpapersgeek.com/ and let me know how to solve this problem.

    Thanks
    Adeel

    P.S. Expecting a quick response.

    Posted 1 month ago #
  2. Tried clearing your cache?

    Posted 1 month ago #
  3. Thanks for your reply @zeero6. Yes i have cleared cache from Manage Watermarks module but the issue is still there :(
    Please tell me what to do now ?

    Adeel

    Posted 1 month ago #
  4. Try to put both same "-"

    Posted 1 month ago #
  5. I did but effect the issue is still there :(

    Posted 1 month ago #
  6. Help me out of this.....

    Posted 1 month ago #
  7. It seems you have updated your URL word separator: and URL token separator: in other way..

    make sure you update it with correct one..

    URL word separator: should be '_' ( underscore) and URL token separator: should be '-' ( hyphen)

    Let me know if this fixes your issues or not..

    Posted 1 month ago #
  8. Thanks for the reply "batu544" yes i have updated and that's why i am facing this problem. Now i put it in the same way as you said but the issue is still there :(
    I don't know what happen to it please assist me with it.

    Posted 1 month ago #
  9. Just few blind suggestions..

    1. Are you sure all your images are in place ? If yes, what is format of the file names like is it ends with -normal.jpg for something else ??

    2. Please replace your .htaccess file with your original file.

    lets see if this solves your issue..

    Posted 1 month ago #
  10. I am getting following error on your website..

    Warning: getimagesize(/home2/optiont0/public_html/wallpapersgeek/walls/scarlettjohanssonwallpapers16-normal5.4.jpg)

    Is carlettjohanssonwallpapers16-normal5.4.jpg file exist in your walls folder ??

    Posted 1 month ago #
  11. Yes all images are on place. This is the actual format of images and " scarlett_johansson_wallpapers_16_norma.jpg ".

    There is no image with this name "carlettjohanssonwallpapers16-normal5.4.jpg" in my walls folder.

    Replaced the .htaccess file but not working :(

    Posted 1 month ago #
  12. okay.. after seeing your actual image name .. what I guess is ..

    your both URL word separator and URL token separator should be '_' ( underscore)

    Just try this.. it may fix your issue..

    before this changes.. one more question.. Are you protected your files for hot linking ?? If yes, then just remove this direct linking stuff first and try to browse your website .. if the images will still not display, then change the url and token separator to '_' and let me know what's happening..

    Posted 1 month ago #
  13. If the above things will not work for you, then you have only 2 options left..

    1. Replace all your file with original ones and check whether it fixes the issue..

    2. If you have a paid version, then I think some admin can help you to fix this.. :(

    Posted 1 month ago #
  14. I also tried "_" but its not working. :(

    and yes i have paid version plus i have sent 3 emails to admin but they haven't replied yet :(

    I think i have to delete all the pics now and upload from start.....what you say ?

    Posted 1 month ago #
  15. hmm.. can you add a new image and see if all the thumb and images are displaying correctly or not ??

    Posted 1 month ago #
  16. Well its a bug, leave your mail id, i ll provide you a solution code / file so that problem never happens.

    Posted 1 month ago #
  17. Hi,
    I have upload a image but it only showing the new image thumbnail not correcting all.
    Nikhil Here is my email id: ad33lzia@gmail.com please contact me asap.

    Regards
    Adeel

    P.S. Waiting for your reply.

    Posted 1 month ago #
  18. @Nikhil .. first of all Welcome back !!! :)

    It will be better, if you can post your solution here, so that other users can also use it in future...

    Thanks,

    Posted 1 month ago #
  19. @ Nikhil
    I am anxiously waiting for your reply.

    Posted 1 month ago #
  20. @ Nikhil
    Please respond, i cant wait more its been 1 week that my site is :(
    I have to fix it asap so i continue the promotion work.

    Thanks

    Posted 1 month ago #
  21. @batu544 Thanks

    @ad33l Please try and upload attached file after unzipping. Then clear cache,

    Posted 1 month ago #
  22. I guess attachment is missing, so posting again. I m gonna be regular soon, :)

    :( attachment giving errors, let me try and paste code.

    backup thumbs.inc.php and paste this into it, removing earlier code.

    ...........................code..........................

    <?php

    $arr_item = explode(".",$page_name_pieces[1]);
    $arr_item = explode(URL_TOKEN_SEPARATOR,$arr_item[0]);
    $arr_item_temp = $arr_item;
    $arr_item_thumb_id = array_pop($arr_item_temp);
    $item_short_name = implode(URL_WORD_SEPARATOR, $arr_item_temp);

    $item_short_name = htmlentities(urlencode($item_short_name));

    $sql = "SELECT a.id, a.short_name FROM

    .
    a WHERE a.short_name='".$item_short_name."' ";

    $wallpaper = $DB->get($sql);

    if (count($wallpaper)==0)
    {
    redirect(WEB_PATH);
    }

    $ws_short_name = $wallpaper['short_name'];//WS::prepareName(
    $filename = THUMBS_PATH.$ws_short_name.DEFAULT_URL_TOKEN_SEPARATOR.$arr_item_thumb_id.".jpg";
    if (!file_exists($filename))
    {
    //generate thumbnail
    WS::generate_thumbs($ws_short_name, (int)str_replace("t", "", $arr_item_thumb_id));
    }

    if (!file_exists($filename))
    {
    redirect(WEB_PATH);
    }
    else
    {

    $filesize = filesize($filename);
    header("Content-Type: image/jpeg");
    header("Content-Length: $filesize");

    readfile($filename);
    }
    define("EXIT_NOW", "1");
    ?>

    Posted 1 month ago #
  23. Thanks @Nikhil
    But i am unable to use it because i am new and dont know how to use this code....can you please send me the file here ad33lzia@gmail.com and also tell me a little about it that in which folder i have to upload this file.
    If anyone else know how to do that then please let me know.

    Thanks
    Adeel

    P.S. Anxiously waiting for your reply.

    Posted 1 month ago #
  24. open thumbs.inc.php and paste the given code above into it, removing earlier code. Over writing the code that is in there and re upload file

    Posted 1 month ago #
  25. Thanks @ zeero6

    @ Nikhil i am done with it but its not working, the issue is still there :(

    Posted 1 month ago #

  26. Posted 1 month ago #
  27. Chat with me at nishkrant@gmail.com , lets sort out this trouble

    Posted 1 month ago #
  28. @ nishkrant@gmail.com added you please confirm and thanks :)

    Posted 1 month ago #
  29. No solution....finally going to delete all the wallpapers and installing the script :(

    Very very disappointed by the ADMINs....

    Thanks to all of you for your replies :)

    Posted 1 month ago #
  30. If you are a paid member then I think you need to contact them by their websites contact form..

    Posted 1 month ago #

RSS feed for this topic

Reply

You must log in to post.