Just include both.
Have the items that are for sale here as referrals (http://wiki.envato.com/referral/basics-referral/referral-program/) and also include the items that aren’t for sale here on your website.
That way if someone is looking at your items, and they have never been to code canyon or any of the envato websites, if they sign up or purchase (even not your item) you will get a percentage of that sale.
There were done about 6 years agofor that company: Videos
Everyone can stand certain levels of a voice pattern and I won’t speak for myself or anyone else about another teachers voice. But in my head I believe my voice is different from this “Effect” you say people have? Maybe not because we all hear ourselves differently. 
My very first thing they put on hold until they got my master business license, drivers license and a signed copy of the agreement between myself and the company I was dealing with.
For me I just called them after I had scan / faxed in any document and within a few days they removed all limits I had.
Since then, I have never had any problems knock on wood 
But really, a phone call to their toll free number will help you out a lot once you get some documents together.
The other great place to have a gander is the Extra’s page http://extras.envato.com/
xstortionist said
Just wondering if there were going to be any Black Friday or Cyber Monday sales from the Envato team. This week is the biggest week for sales through-out the entire year, and I thought that Envato was going to jump in and maybe have a bundle sale or something like that. Anyone have any insider information?
I do not believe there was anything last year
SplitV said
Catch22Music saidYou have to use something on the server side for it to have any possibility of being secure. If you have an Apache server throw up a quick htaccess password protected directory if you want something really simple.
Hoping someone can help.I am looking for a very basic web code to password protect one page of my website. Happy to buy something if needed, but I need to do it using HTML and Java Script, I don’t want to use PHP .
Just something really really basic. Everything that I have tried online does not work, so if anyone can point me in the right direction, or share some code here, or link to a code and sell it to me that would be great!
Thanks
Agreed, if it isn’t server side it isn’t secure. You will either need to use PHP (or even offsite PHP ), htaccess or another method that relies on checking something on a server.
Plain JavaScript can be seen in the browser and decoded.
So just to test why not try a for loop?
$varArray = do_something_that_returns_an_array();
for($i=0; $i <= count(varArray); $i++)
{
print $i .' = '. $varArray[$i];
}
This “should” print the array just like the for each, and won’t hurt to try.
You can find some good people here on Code Canyon as well if you need to beta testing done.
Most of us our authors and willing to help one another out when needed, so don’t be afraid to ask here as well.
As Designcise mentioned you cannot provide any links to free software that you plan on selling later. However, you can ask for users to email you or signup in order for beta testing in which you can host on your own server and get feedback on. This stuff has been done in the past.
As long as you are not asking people to beta test a JavaScript file that is wide open, then you should be ok. Just host the application yourself (if it is server side, like PHP ) and you will be fine.
Contact me through my profile page and we can talk about this projects and it’s specifics.
Thanks, Mickey
Perhaps you could be a bit more precise on what you actually want to achieve? (what is knlevel used for, experience points, etc?)
for($i=0; $i <= 10000; $i++)
{
print 'Level '. getLevel($i) .', $i = '. $i;
print '<br />';
}
function getLevel($knLevel)
{
$level = 1;
if(intval($knLevel) > 0)
{
$level = floor($knLevel / 2);
$level += 1;
}
return $level;
}
