Search results

  1. bigot

    Any suggestion for creating a bot or a software with Java ?

    Are you looking for an idea, or programming help?
  2. bigot

    Wordpress Help Needed!

    I hope you learned your lesson: try a different file next time lol. Glad you solved it. inb4 exe injected into jpg
  3. bigot

    Wordpress backup solution

    Fuck yeah, love it! Unfortunately what I'm about to say is a complex script, and a more difficult solution... but worth it (I think) If you have the programming knowledge and want to avoid manual work: Consider installing mysql on your back up server, make a manual backup utility that...
  4. bigot

    Front end for MySQL

    Except Access - You can make fairly complicated database forms/reports/etc. with no coding experience.
  5. bigot

    Is there a tool to get emails of members inside Facebook groups?

    I don't think personal info is shared with group admins, only friends, correct? If so, then no. For friends; you could make a bot that goes through all your friends and scrapes their emails. Otherwise, what @frzs90 said is your only option.
  6. bigot

    Any one know a trick to get star ratting on the homepage to show up?

    Should be the same code as subpages. But Google advises against this since you're supposed to use it for one item/product/location/etc. So it may be blocked on their end.
  7. bigot

    Best PHP framework for e-commerce website

    I recently installed Magento. It's a steeper learning curve for sure, but I've read you get a lot more than WP+Woo. Keep in mind if you pick Magento, you will probably need at least a VPS - lots of permissions and access required that shared hosts don't provide.
  8. bigot

    Front end for MySQL

    There's still authentication, they can't just get in by knowing the IP and port. Still worth being careful in case a new exploit is found; change the port if your host lets you, and use IP whitelist if your host has the feature since you will be using workbench from very few IPs.
  9. bigot

    Japanese characters in my websites description

    It's ok, I used IE5. Strongly agree, also check "passthru", "system" and "shell_exec". Most of the time these (as well as base64_decode) are encoded as hex strings like "\x3F", so searching for them directly doesn't always work. If that's the case, search for the hex string footprint "\x". If...
  10. bigot

    [C#] Displaying Currency

    No problem. Take a look at "chcp" command-line command if you've gone off the deep end and become interested in command prompt character encoding, lol.
  11. bigot

    [C#] Displaying Currency

    You should still try to resolve this issue even if you're going to go with GUI. You're dealing with web bots, so eventually you're going to have to deal with text manipulation. Slap together a quick fix for now if you're in a hurry, but investigate this issue later when you have time. These kind...
  12. bigot

    Is The F-B-aight Sending Me A Secret Message?

    I opened my BHW alerts, and without reading them, I open all the links in a new tab. It's just how I do it: open a bunch of tabs, read, maybe respond, close tab, and repeat until I run out. Weird, I'm already caught up on every single threads I got an alert for... I went back into my alerts...
  13. bigot

    [HELP] Composer error

    Do you have cURL enabled on your PHP installation? If not, enable it. What PHP version do you have, 5.5.9 or above? If not, upgrade.
  14. bigot

    Front end for MySQL

    Depending on your host, they usually disable "remote" connections (connections not from localhost). You can turn this on in cPanel. Try NaviCat. It's not free, but I like it a bit better than workbench. phpMyAdmin is nice if you know what you're doing and write your queries by hand. Sounds...
  15. bigot

    Hostgator - What happened?

    Same story here basically, but about 6-7 years ago. Their support has also gone downhill. I switched off them too but I didn't have to do any passport or ID crap. I didn't auth them on my PayPal though; I always avoid this in favor of paying manually, so nobody pulls the "hide charges in fine...
  16. bigot

    Paypal buttons and PHP

    Gotcha; the IPN callback URL is not set on your account, it's set on the button like in the video. Be sure to use the "encrypt my button" or whatever the option is called, or use the hosted button feature in PayPal. That way no one can look at your success string and fake PayPal's IPN calls...
  17. bigot

    Has my site been hacked?

    No. You're welcome. This is my real account and only account on this forum. I don't give a shit about post count. Take a look at my other posts, I'm actually quite helpful when people don't post the same Base64 code 38 times while screwing up the CODE tags. Thanks.
  18. bigot

    [PHP] how can I add a delay after a line of code?

    Read what OP wants to do (above his CODE tag). PHP's sleep won't help; the browser will wait for the remainder of the document and not load the page, then when it finally does load the page (after the delay) it will immediately go to the second page. So basically the user would get a "loading"...
  19. bigot

    Paypal buttons and PHP

    Not sure if you're using IPN, please clarify. The guy in the video is definitely using IPN. Go to the end of the video where he expands Step 3 of creating a button. When you say you're not sure if you're using IPN, then your only alternative is to use the "Take customers to this URL when they...
  20. bigot

    Has my site been hacked?

    For the love of god use CODE tags with square brackets not angle brackets. At least you tried. Points for effort.
Back
Top