Skip to content
WJunction - Webmaster Forum

Search results

  1. S

    Notification System

    1. Something similar to subscribing, but getting notifications over here on wjunction and not on mails. Its just like while using facebook, you don't end up to check your mail box to see who posted on your wall / commented on your pic 2. Liking, yeah it isn't needed. 3. You are partially...
  2. S

    Track every single person separately

    One simplest way is to give a separate link to each employee and track the traffic on that link, like modifying link to www.example.com/?source=empname or you can check for referrer header if you know the source from where each employee is generating traffic. And forget about accuracy in this case
  3. S

    Notification System

    I support this idea. Updates for private and visitor messages, posts in own threads @ marketplace/hosting/graphics section, tagged users and quoted posts are at top. However server do needs to be strong to handle the load Wonders whether live notification system is currently enabled or not...
  4. S

    MOD Rewrite - SEO Links

    Because you need to modify in your script to redirect it to adobe.html (you need to use javascript a bit)
  5. S

    MOD Rewrite - SEO Links

    Modify your .htaccess to this: Options +FollowSymLinks RewriteEngine On RewriteRule ^tos/?$ tos.php [L] RewriteRule ^contact/?$ contact.php [L] RewriteRule ^torrent/([^/]+)/?$ search.php?search=$1 [L] ErrorDocument 404 http://domain.com Your url's should be respectively available at...
  6. S

    Generating Paste2 using curl help ?

    function createPaste2($desc, $code) { $desc = urlencode($desc); $code = urlencode($code); $ch = curl_init('http://paste2.org/'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0...
  7. S

    Require Information regarding Youtube Embed

    fs=1 This enables full screen button to be shown. More here: https://developers.google.com/youtube/player_parameters#fs ap=%2526fmt%3D18 This is used to show high quality source of video
  8. S

    banners/ads on site

    Yes, you need to check the referer header sent. You can use $_SERVER['HTTP_REFERER'] in php to get the referer.
  9. S

    Selling themaPoster - multi-poster, reply / create threads, schedule, lots of automation...

    Dude, Whats wrong with you? You have been trying to make up one or other reason to misdirect users from the time news was posted about v2. As for the forum pack upgrade for which you seems to be crying, it isn't any kind of scam as you stated few posts before, nor even any close to it. Did he...
  10. S

    downloading from rapidshare with wget

    Have a look at plowshare: http://code.google.com/p/plowshare/
  11. S

    How to create a PHP script which generates text in various fonts?

    You can specify different presets in that script though, by adding to the $presets array like: $presets = array( 'testimonials' => array( 'font' => 'journal.ttf', 'size' => '36', 'font_color' => '3e4b4b', 'bg_color' =>...
  12. S

    How to create a PHP script which generates text in various fonts?

    Emm, It seems to work just fine for me. What did you specified in the url? It should work fine if accessed like this: http://xyz.com/font.php?preset=testimonials&text=koogle
  13. S

    How to create a PHP script which generates text in various fonts?

    Probably link to the entire script? It seems either you selected wrong "preset" or didn't specified any at all from the if statement
  14. S

    Widget Help

    Those are normal buttons provided by respective websites, no external website. Facebook - https://developers.facebook.com/docs/reference/plugins/like/ Twitter - https://twitter.com/about/resources/buttons Google Plus - https://developers.google.com/+/web/+1button/
  15. S

    Auto Image Resize

    Edit your css file: http://spicymoviez.com/templates/SpicyMoviez/style/styles.css .maincont img { border: medium none; padding: 5px; width: 350px; height: 450px; } Edit the width and height values accordingly
  16. S

    Hey, i am waiting for you on YM

    Hey, i am waiting for you on YM
  17. S

    Php Sending mail help

    Update your html code to this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <div class="heading"> <div class="shell"> <table width="990"...
  18. S

    Sorry, was away. Replied now

    Sorry, was away. Replied now
  19. S

    You must register before you can view this text

    Open and edit file: language\English\website.lng Find 'news_regus' and edit text on the same line. It should be something similar to this: 'news_regus' => "You must register before you can view this text.",
Back
Top Bottom