Search results

  1. M

    Anyone out there from old members?

    Hi folks, great to be here again :)
  2. M

    i want to convert a php code !

    <?php $categories_to_show = array(1,2,3) // Categories ID's $this_category = get_category($cat); if(in_array($this_category->category_parent, $categories_to_show)) include (TEMPLATEPATH . '/cat-featured.php'); ?>
  3. M

    My Success story and Wjunction Part

    Thank you guys for all your kind words, Cheers
  4. M

    Looking for bootstrap tutorial!

    If you know html/css than its pretty easy to follow docs and in my opinion there is nothing better than these docs : Getting started · Bootstrap
  5. M

    I need coding in PHP, remove symbols in Title

    try this, noticed space after [3].' ??? : return $matches[3].' '.$matches[2].''.$matches[1];
  6. M

    I need coding in PHP, remove symbols in Title

    hm, For two spaces you can try to remove one of space between commas in title_callback function and see if works, .' '. to .''.
  7. M

    My Success story and Wjunction Part

    heartodark Thank you for your kind words, and I hope that too but mostly we are always lazy lol VersaceBoys Thank you too dear. msk19994 Yea its really hard to trust people around. I have been scammed various times at start (Elio one of the example here on Wjunction) but it did not mean we...
  8. M

    I need coding in PHP, remove symbols in Title

    Open /engine/inc/addnews.php At the end of file before ?> add this function // clean title function my_clean_title($title) { return preg_replace_callback('#[^a-zA-Z0-9]#', 'title_callback', $title);} // the callback function for title function title_callback ($matches) {...
  9. M

    My Success story and Wjunction Part

    Ar!yaN Thanks dear you are the special one, dont give up on your coding stuff, be in touch ;) filegrasper Much thanks for your kind words, To success. ausafali Thanks , Best of luck to you as well Raz3r That's good to hear, Congrats on your firm as well, Of course we have learned a lot of...
  10. M

    My Success story and Wjunction Part

    Thank you guys for all your kind words and I wish you all the best.
  11. M

    I need coding in PHP, remove symbols in Title

    I dont have access to DataLife Engine, post your files on pastebin and link in thread. engine/modules/addnews.php engine/inc/addnews.php one file is for admin panel and other for user.
  12. M

    My Success story and Wjunction Part

    @Rox Yea sure buddy that was the only reason to open this thread so guys here dont get disappointed, who are struggling online from years. Of course it takes time but never give up.... and much thanks for your kind words. Baraka haha right so you actually remember that domain too, that's...
  13. M

    My Success story and Wjunction Part

    Hello guys ! Its been long time I never participated much on wjunction due to my work. I wanted to thank you all the staff, clients and special guys who helped me to reach on this position. I was struggling online since 2008 to make some living out of basic coding stuff and by time I kept...
  14. M

    I need coding in PHP, remove symbols in Title

    If you are looking for a PHP solution, here it is: $title = 'The.Name.Of.Title [2010]-Post'; // pattern $pattern = '#[^a-zA-Z0-9]#'; $newTitle = preg_replace_callback($pattern, 'callback', $title); // the callback function function callback ($matches) { return $matches[3].'...
  15. M

    what kind of app - script from it i can get this info in auto way !!!

    I dont think u will find such app/script (unless someone has shared a code) , you can choose one of these languages to accomplish this.. PHP , Java, .NET, Flex , cURL etc... Or hire someone to do that for you by posting in Services Section.
  16. M

    Where should I get images from for my blog?

    Search on google "free stock photos" and you will see various sites providing copyright free pictures, such as Freerange morguefile Stockvault FreeDigitalPhotos stock.xchng etc.... And about 99% of time you can use images from manufacturer's site but make sure to read their usage policy or...
  17. M

    New server need help

    It seems you have bought an unmanaged server so cant blame on hosting site. You have to mount hard drives on server, Also if you want to combine all 4 drives then look into LVM . If it all sounds complex you should hire a server admin to setup all.
  18. M

    Hotmail account creator

    Some email hosts requires end user to activate account via Phone verification i.e Gmail, I am not sure about hotmail but if you are looking an application to create multiple accounts then try to search on google for your keyword, also be careful what u download from internet... Also you can...
  19. M

    Best browser?

    Firefox was best but since I moved to chrome I feel its more faster then other browsers, Now I only use other browsers for debugging purpose.
  20. M

    Best Antivirus

    my vote for Kaspersky but these days mostly 'best antivirus' depends on end user's online activities. There are various ways to make virus fully undetectable which no antivirus can pick. So be careful and always use trusted ( never trust always ) source.
Back
Top