Skip to content
WJunction - Webmaster Forum

Search results

  1. M

    For Hire Web & Software Development Services

    Replied to your pm. And I will be available by next week for any work due to holidays, Best Regards
  2. M

    PayPal unlimited paypal

    if you are hoping to make "2500 euro every year" , take my advice and spend some time to work on other stuff, such as search how to make money using CPA, adsense and other stuff, and if you wants to make money hard way, learn to code or design and you will make much more money then "2500 euro...
  3. M

    how to curl and proxy download

    you need to check PHP: Streams. here is how it works 1. user give link 2. make script to grab download link 3. stream that content to user. on 2. you can save data into a file, like on that site its saving a link as (http://shimory.com/static/1234567), 1234567 is either in database or file...
  4. M

    How to setup a vps without a control panel for dummies

    the whole point of this tutorial is to mange all via command line, so you can create databases , change passwords, add users etc all via SSH, cPanel is a conrtol panel, which works via browser. You can also install phpmyadmin if you like to manage databases via browser, just download...
  5. M

    How to setup a vps without a control panel for dummies

    to make backup in ssh type this and enter: mysqldump DATABASE_NAME > BACKUP_FILE_NAME.sql change " DATABASE_NAME" with database name u wants to backup and "BACKUP_FILE_NAME" whatever u like. it will save a file named "BACKUP_FILE_NAME.sql" in ur current directory. to restore backup ( make sure...
  6. M

    How to setup a vps without a control panel for dummies

    yes its that simple, and about RAM i used to host a site using IPB Forum with 10k u/v a day on 256MB Ram.
  7. M

    How to setup a vps without a control panel for dummies

    I see often people ask me to setup vps for them so here I am going to include steps which can help you to install neccessary component to run a website or use any php based script with minimal server resources usage. Required Software: Putty ( Download from...
  8. M

    Help with CSS/HTML

    why are you giving that many pre tags in your post? and to fix that change this pre, code { font-family: Courier New, monospace; margin-bottom: 10px; } to pre, code { font-family: arial; margin: 0px; padding:0; width: 250px; } // change above setting as u like... actually u will just change...
  9. M

    Help with CSS/HTML

    first why are you using pre tag everywhere in post? u need to modify pre in your css, and that is most messed up CSS file I ever seen.
  10. M

    Say hi to Richard Lukas

    congrats man...
  11. M

    Lulzimg API

    i already mentioned, above screenshot was taken from fiddler.
  12. M

    Lulzimg API

    @hq320 cool script but your regex is not good, what if there is another server instead of i28? and u dont need to use BINARYTRANSFE or cookies in curl. here one improvment in your script. preg_match('#\[IMG\](.*)\[\/IMG\]#', $data, $matches); $image = $matches[1];
  13. M

    Lulzimg API

    for multiple images i checked with fiddler and seems u need to add a line break between image links then send ur post request. http://screensnapr.com/e/anuPIP.png
  14. M

    Lulzimg API

    u need to send request this way and then use regex or xpath to get image url: http://www.lulzimg.com/upload.php?submit=lulz&url=http://domain.com/logo.png
  15. M

    Lulzimg API

    there API exists but i dont think its public and not with a lot of options, contact 'Lifetalk' for information. Although it is fairly easy to upload images to lulzimg programmatically, just check the headers while you remote upload some image.
  16. M

    [req] php curl filepost.com uploader

    I just tested and it is still working. did u test it before it was working for you?
  17. M

    need help in filepost upload plugin

    if u know php and curl there is nothing else u need to learn and if i will make whole script for you, you will never learn. follow there api documentations. see FSApi_Upload how u will do it. hints: send curl request to link like in FSApi_Upload u first need to call this url...
  18. M

    need help in filepost upload plugin

    use filesonic api from http://api.filesonic.com/link to make plugin.
  19. M

    need help in filepost upload plugin

    preg_match will always return an array then you can catch it like $link = $match[1]; see below complete filepost upload. http://www.wjunction.com/1100819-post12.htm
Back
Top Bottom