Business Registration. A way to verify business is actually a business? [closed] - php

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there a way to verify that the business signing up is actually a place of business? I found a thread on Stackoverflow, Verify Business Identity, but it did not actually answer the question directly. So here is the issue and question.
A website allows businesses to register to their site. What can be done to verify that an actual place of business, that has employees, is signing up and not just some random person creating bogus accounts for non-existent companies?

You could require/solicit from the company their EIN (Employer Identification Number). This is from the IRS, so it would only work for US-based companies. Some sole proprietors will not have one.
Here is a helpful source to get you started: http://www.sba.gov/community/blogs/community-blogs/business-law-advisor/how-do-i-find-ein

I would suggest you to look for Business Verification Services like this one http://datamarket.azure.com/dataset/dnb/businessverificationoffice

Related

PHP duplicate content detection system [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Are there any popular PHP libraries or services that can help detect duplicate content?
I run a site that has user generated content and I want to detect content that are similar or duplicated. Are there any popular libraries out there that can help with this?
Text similarity/plagiat/duplicate is a big topic. There are so many algos and solutions.
Some projects use the "adaptive local alignment of keywords" (you will find info on that on google.)
Also, you can check this (Check the 3 links in the answer, very instructive):
Cosine similarity vs Hamming distance
Hope this will help.

Getting IP geolocation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have a database that has a "users" table where i have a last_login_ip field for each user that stores the IP address of the device where they last visited my website. I'd like to know country, city and state of all my visitors. I've been investigating IP addresses theory but i can't find a way to get this information aside of websites that already have this service, the problem with these websites is that i have to insert each IP address individually and i can't do that to 4000+ users. What would be the best way to do this?
There are a lot of APIs to do that. Like for example this one very simple :
http://www.hostip.info/use.html
An example of code in php using this API would be
<?php
$ip = "replace_with_your_ip";
// Get country
$data = file_get_contents("http://api.hostip.info/country.php?ip=".$ip);
//Get other location infos
$data = file_get_contents("http://api.hostip.info/?ip=".$ip);
?>
It can be more convenient in some case to use Javascript and make Ajax calls on these URLs.

GET Spell Checker/Correction API? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have done a lot of research, and found nothing, but does anyone know of a spell checker API?
So when you send a request to http://spellcheck.com?spellcheck-api=this is a sentnse, and it returns this is a sentence.
Please, tell me how to make my question better in the comments without downgrading, I'll fix it as fast as possible. I am a new SO member.
Check this awesome script: http://www.phpspellcheck.com
What you practically do is just fetch your $_GET['spellcheck_api'] (convert %20's if needed to spaces). And let the script (include() or require()) handle check your string for spelling errors.
Good luck !

Free and secure PHP user management system [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for an secure php usermanagement system. It should be just the logics, so no markup or too much content (like messages etc.). I know I could just build it myself, but I doubt if it will be the most effecient usermanangement system.
The system should be at least
able to verify if the user is human
very secure (security against hacks, but also protect the users from their stupidity)
effecient (number of users will start at 1k and from then grow exponentially to around 100k)
capable of handling roles and capabilities
You guys got any recommandations?
You can use any of the following scripts:
http://sourceforge.net/projects/phploginsystemw/ (Login with 5 levels of security)
http://usercake.com/
http://www.downscripts.com/user-management-script_php-script.html
http://userpie.com/
http://gscripts.net/free-php-scripts/Login_Management/PHP_Login_Script/details.html
http://www.webresourcesdepot.com/free-php-user-management-script-log-me-in/
You should probably take a look at this:
http://www.hotscripts.com/category/scripts/php/scripts-programs/user-management/
I have use this before:
http://sourceforge.net/projects/phploginsystemw/
worked for me.
Take a look at drupal. It is a framework with modules for this stuff. You will be able to get away with very minimal coding.

php/mysql client management software? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for some software that will allow me to do the following:
alt text http://patrickg.net/lookingfor.png
I don't need anything fancy, just basic information, back and forth dated comments, etc. No payment integration, or file handling.
Thought I'd ask before I write my own
Good luck with that - but from what I've seen, most of the stuff out there have x100 more features, and an appropriate learning curve. I don't know if you can find something with the exact features you've asked.
What's the problem with rolling your own, though? As long as you use a framework, isn't it just a couple days' work (maybe even a day)? Learning/using a full-fledged CMS might take more time.
This may be overkill, but you may want to take a look at SugarCRM

Categories