Search results

  1. D

    Link checker idea

    I don't support the use of external services..but Yahoo is a reliable company and the limits are pretty much practical ..and can be used on live sites with decent traffic ..
  2. D

    Link checker idea

    Good idea :) YQL does allow us to make cross-domain GET requests.. http://www.wait-till-i.com/2010/01/10/loading-external-content-with-ajax-using-jquery-and-yql/ & https://github.com/codepo8/crossdomain-ajax-with-jquery-and-yql best way is to use JSONP , but I highly doubt that file...
  3. D

    Need some C++ help

    yeah..theres a better way.. User user7={7,21}; you can also nest structures .. ( structure in a structure ) if that wont work..get a better compiler + IDE .. if you want a free one.. Dev C++ is good .
  4. D

    How to earn money easily??

    easy money wont last long.. hard earned money will be with you for some time ;) so learn some skills, and start freelancing ..thats my opinion ..
  5. D

    javascript help

    http://jqueryui.com/demos/sortable/#default is what you need..read the documentation throughly . then you may have to create an custom update event which sorts the listings .. http://jqueryui.com/demos/sortable/#event-update
  6. D

    Need some C++ help

    syntax for structures in C++ struct User { int userid; int age; };declare a variable of structure : Assign Values User user7; user7.userid=7; user7.age=21; still using old syntax -_- start using name spaces .. #include <iostream> using namespace std; . . . . . . . .
  7. D

    proxy site on google servers

    Flash is supported.. will think about cookies :)
  8. D

    hosting my site on lighttpd

    just locate lighttpd.conf and edit it according to your needs.. http://redmine.lighttpd.net/wiki/1/TutorialConfiguration for example if you select /var/www/passwords.ws/ as server.document-root it means that you have to place all the file of that site in that directory.. and then reload...
  9. D

    apache2 not working

    /etc/init.d/apache2 status /etc/init.d/apache2 restart post the error log ..fixing apache is not difficult :P
  10. D

    Is it Just Me?

    This is a Webmasters forum, mainly targeting the warez niche , and there is no rule that only English speaking people can start a Warez site or be a member of a webmaster forum. I am sure that all the members are aware of the fact that ,English is the only Language of communication here, and...
  11. D

    proxy site on google servers

    thanks for reviews..looking for more :)
  12. D

    Help with Kloxo chmod permissions..

    it's not an issue with chmod .. the owner of the file is not the one who is trying to edit it , so he has to change the ownership of the files . or add the user to the user group which has the permissions to edit those files. chown username /path/to/directory/ you can also specify -R option ...
  13. D

    How to install Rar/Unrar

    just used php tag for syntax highlighting :P it's clearly mentioned in first line that it's a bash script :)
  14. D

    FTP client

    to check if you have shell access or not , do this download putty try to login with your cpanel details .. and then if you are in use can use mv command to move files/dirs
  15. D

    my site should be run on dedi or vps ?

    2 Gib Ram is more than enough for a site like yours. Nginx + php fpm <3 I am running a site which gets <= 10 K visitors on a 512 MB xen vps with no problems.. hire a server admin for optimizing your server .
  16. D

    How to install Rar/Unrar

    #!/bin/bash cd /tmp # 64 or 32 ? if $(uname -a | grep 'x86_64'); then echo "Installing 64 Bit RAR" wget http://www.rarlab.com/rar/rarlinux-x64-4.0.b3.tar.gz tar -zxvf rarlinux-x64-4.0.b3.tar.gz cd rar ./unrar else echo "Installing 32 Bit RAR" wget...
  17. D

    [C++/C#] What to learn now?

    OOP basics make sure you are very fluent with these things classes objects friend function Function & Operator overloading Inheritance
  18. D

    proxy site on google servers

    I ma OK with python..not good in GAE datastore .( learning )
Back
Top