Search results

  1. lemon-tree

    .htacces index.php

    Try this: RewriteEngine on RewriteRule ^index/? index.php
  2. lemon-tree

    Lifting suspension and asking a forgiveness

    The space provided here is specifically stated in the terms of service as only for sites and the files related to those sites and nothing more. Therefore, uploading any file to 'free up space' is a breach of the terms of service regardless of its type and has a consequence of a permanent...
  3. lemon-tree

    What are our DNS ?

    ns1.x10hosting.com ns2.x10hosting.com
  4. lemon-tree

    Are there two sine and cosine ratios?

    You've got the radians conversion in the wrong place, that's why. This following line will return in degrees, but as I said above you may get a negative number that you'll have to code for if (StartVForce/arrowLength) is ever negative. arrowAngle = (180 *...
  5. lemon-tree

    Are there two sine and cosine ratios?

    Use Math.asin(), Math.acos() and Math.atan(). The returned values will be in radians and will have the following ranges: Math.asin: -π/2 to π/2 Math.acos: 0 to π Math.atan: -π/2 to π/2 Also remember that for Math.asin() and Math.acos() the domain is from -1 to 1, so inputting any number outside...
  6. lemon-tree

    what did i do

    You used your hosting account for file hosting, that's what you did. This is a breach of the terms of service that you agreed to on signup and as a result your account is going to remain permanently suspended. You will not get access to any of your data prior to its deletion.
  7. lemon-tree

    Which is the best internet security suite?

    Unix...enough said In real terms, the price will probably be a pretty big factor; personally I use ClamXAV but that is only because I don't really need one. Also, how you actually use your computer can radically affect how likely you are to be a victim, so a little common sense goes a long way.
  8. lemon-tree

    My X10 account suspended... >.<""

    You were suspended for inactivity. This is a reversible suspension and can normally be undone in the account panel, but due to your errors I have done this for you. To prevent this happening again in the future you need to ensure you login to these forums at least once every 30 days.
  9. lemon-tree

    hello

    Welcome to the community
  10. lemon-tree

    cancel my suspension

    That will not be possible, as you broke the free hosting terms of service by uploading a nulled script. As clearly stated in the terms, this is a permanent suspension and you will not be given access to any of your data prior to its deletion.
  11. lemon-tree

    PHP code

    We really can't tell you what the issue is without you providing us with the code that isn't working; much the same as a doctor couldn't diagnose you if you just said 'I hurt'.
  12. lemon-tree

    review my disposable email site

    It's very yellow now (and not even a consistent yellow), almost to the point that some of the text may be a little difficult to read for people with less-than-great eyesight; in particular the 'partners' bit at the bottom is pretty much a yellow haze. Also, you've diluted the site with ads and...
  13. lemon-tree

    selling ajax interface temporary email site script for $22

    Well, considering that you didn't even write this script, I don't know how you think you have the rights to redistribute it. I quote from your own script named '2prong.js': Also, if you're only selling that single AJAX script then you are charging $22 for little over 220 (Coincidental pricing?)...
  14. lemon-tree

    Precisely

    Precisely
  15. lemon-tree

    Your colour sense is foul...

    Your colour sense is foul...
  16. lemon-tree

    Nulled vb suspension notification

    Whether or not you were planning on using it for tests or for release, running a nulled script is against the terms of service. If you want to run one of these scripts, you will need to pay for a license first. Due to this, your account will remain permanently suspended and you will not be given...
  17. lemon-tree

    string or int as primary key?

    I certainly wouldn't, I would create a table like this instead: USER_ID INT() - PRIMARY KEY EMAIL VARCHAR() - UNIQUE KEY etc for other user info This way, you can create more simple foreign keys between tables and cross-reference tables. Of course, it's always down to the programmer's discretion...
  18. lemon-tree

    string or int as primary key?

    I can't think of any situation in which a string primary key would be necessary, as the aim of the key is to provide a unique way of finding and linking rows across tables; whilst a string primary key would work, an auto-imcrement int key will not only be more efficient, but you'll also find...
  19. lemon-tree

    suspension for to high usage

    The usual culprit for these suspensions in wordpress is having too many plugins installed or attempting to use a caching plugin. Try stripping your wordpress install back to basics and then add any addons back one by one and see how the performance changes; however, don't bother trying to use...
  20. lemon-tree

    free hosting vs premium

    Premium hosting is run on different servers with a far lower user count per server, meaning that uptime and reliability is guaranteed. You will also get higher limits for a whole range of things, from CPU usage to database count. Realistically, none. Of course, if you're using huge, huge...
Top