Skip to content
WJunction - Webmaster Forum

Search results

  1. S

    PHP session_start error

    I fail to understand how you are able to judge whether there is any whitespace or not if he has posted only partial code. @OP: If this issue is still not resolved, make sure you upload the actual files and not just paste the file content, because some editors also add BOM to the file which...
  2. S

    Pranav Mistry: The thrilling potential of SixthSense technology

    This guy is a genius and all of his projects are amazing. SixthSense is already opensource: http://code.google.com/p/sixthsense/ and https://github.com/sixthsense/sixthsense
  3. S

    Which programing language is best for bots?

    Agreed above, every programming language has its pros and cons. For eg: Youtube, twitter, facebook and those kinda bots could be created in C#/java and even in python. However, if you are looking to work on Gamehacks, then it would be good to start with lower level languages like C++/C (It...
  4. S

    Would you consider this illegal?

    This isn't illegal, but Unethical technique. You could show up a link to register at the website you are showing review of and alongside with it, add a link seperated from the review content to register on your website. Something like what you see on sites like download.cnet/softonic etc.. to...
  5. S

    Rewrite .htacess to ignore index.html

    Well, you didn't explained it well then. The last example you gave is all different from the one's you have given before. Add this in the root .htaccess file: DirectoryIndex index.htmlFor it to work in sub directories, you must set AllowOverride to All in httpd.conf/.htaccess
  6. S

    Rewrite .htacess to ignore index.html

    example.com/index.html <-- That's not what you stated in your post :sigh: Anyway, the above .htaccess code has to be entered in the /example directory. Add this .htaccess in the root directory for example.com/index.html to work DirectoryIndex /example/index.html Edit: You could also shorten...
  7. S

    Rewrite .htacess to ignore index.html

    In the .htaccess file, just enter this information: DirectoryIndex index.html
  8. S

    help me understand line of code

    PHP is whitespace insensitive, so there could be space or not even. Even in C#, that kind of statement would compile fine. Casting couldn't be done to variable names, you need to specify the type to cast to in that case
  9. S

    help me understand line of code

    The first line and the if statement is useless there. $changedDir is empty and if statement would always turn to true since $changedDir is empty. $changedDir = preg_replace('|wp-content.*$|','',__FILE__); The above statement seems like its trying to get the root path / Wordpress directory where...
  10. S

    PHP 5.4 & 5.5 Changes

    I like short array syntax. Generator / yield keyword would make things lot faster + efficient. PHP 5.4 upload progress support is simply awesome.
  11. S

    Future of Data: Encoded in DNA

    Seems interesting. "A device the size of your thumb could store as much information as the whole Internet" =]
  12. S

    Congratulations to cvrle77

    Congratulations. You deserved the position.
  13. S

    MEGA.co.nz - News, Announcements & Discussions

    Hmm, i tried to register for that from the kim.com/mega 2 days ago, it just shown to me Thank you or similar kinda message. But i never got any email regarding it. :wacko: Thought that they will send update when its released.
  14. S

    MEGA.co.nz - News, Announcements & Discussions

    Beta Access? I thought they only had "Press" account. Some features won't be able to run properly on other browsers except Chrome is a down for me. I will probably wait until they fully support Firefox
  15. S

    Login authorization to access the site

    Using .htaccess, you can add password protection as follows: http://davidwalsh.name/password-protect-directory-using-htaccess
  16. S

    Hi, Demo's are closed due to abuse and sales of LePo v3 would be closed soon. Please wait until...

    Hi, Demo's are closed due to abuse and sales of LePo v3 would be closed soon. Please wait until v4 is released
  17. S

    uploaded.net upload method via zoom uploader,API Upload or what?

    It is same in Zoom Uploader. They also first request that page, get upload server and then upload it. I highly doubt that there would be much difference in speeds while uploading using Zoom Uploader and web browser
  18. S

    uploaded.net upload method via zoom uploader,API Upload or what?

    No, it doesn't use any API, its just the way how file is uploaded from browser. You can get upload server url direct from here: http://uploaded.net/js/script.js
Back
Top Bottom