Search results

  1. descalzo

    MySqlserver Connection problem

    Where is the current DB and where do you want to import it to? phpMyAdmin as a feature where you can dump the db into a text file. You can also import from a text file. These can also be done via command line if you have shell access at the other end but nothing like phpMyAdmin.
  2. descalzo

    Error 403/Forbidden

    In the subdomain folder, find or create a file named .htaccess Add or make sure you have the two lines: Options All -Indexes DirectoryIndex index.html The first prevents the listing of the contents. The second tells Apache to serve up index.html as the default page. You can...
  3. descalzo

    Path to send mail???

    sendmail is a *nix program that, well, sends mail. It is not always stored in the same location. Third party applications who send mail often use sendmail and have to be told where the program is located when being installed. Open cPanel and on the left side, near the bottom, it should list...
  4. descalzo

    MySqlserver Connection problem

    Remote access in either direction is blocked. You can use mysql to dump the database (table structure and data) at one end and then import it to the other end.
  5. descalzo

    MySqlserver Connection problem

    Try using 'localhost' as the server name.
  6. descalzo

    SQL File Corruption

    phpMyAdmin does not show InnoDB as an option on Chopin any more. I tried to create an InnoDB table via php script. Script ran. Table created. Shows up as myISAM. After the recent mySQL changes, two of my test tables were suddenly listed as 'Views'. At least one of them had been InnoDB.
  7. descalzo

    Javascript Image Changer

    For diabolo's solution, you have to download the jQuery js libraries and then upload them to your site.
  8. descalzo

    Do you need to post?

    Just log into the FORUM, not the cPanel. You do not have to post, and just posting 'Hi' or similar is considered 'spam', a waste of resources. But stay awhile and check News and Alerts. Maybe play the arcade. The systems seems to take awhile to recognize you are here.
  9. descalzo

    how do i install jbilling?

    'open source billing software php' + Google ---> Some other options
  10. descalzo

    CPanel incorrect password

    Forum password is different from cPanel password. http://x10hosting.com/login.php Login with forum username & password. Proceed to Account Panel On left shows your cPanel info. On right has link to change your cPanel password. Set to new one. Use username shown on left side.
  11. descalzo

    php_value in .htaccess - does it work for you?

    No offense, but there does seem to be small differences in the free machines. Add: tried it and got a 500, here is the error log entry... [Thu Oct 15 20:18:04 2009] [alert] [client 130.65.109.103] /home/******/public_html/.htaccess: Invalid command 'php_value', perhaps misspelled or...
  12. descalzo

    Greetings From Jamaica

    Welcome Suzann. Nice to have an author and an attorney in the house. I will see if I can read your book. I do like science fiction (currently reading E. Moon's The Speed of Dark and just finished [re]reading Simmons' Hyperion series)
  13. descalzo

    uploaded image appears as text/x-generic

    Are the images stored on your computer with extension: JPG (capitals)? If so, try renaming then so the extension is lower case and re-upload. Seems to be a 'feature' in FileManager that JPG is listed as text/x-generic and jpg as img/x-generic. Added... IE7 seems to display the image...
  14. descalzo

    DATEDIFF Function

    Well, the error message is telling you that you have the wrong number of parameters for that function. You have 3: d , payment_date and NOW() DATEDIFF , from the mySQL manual, only has two parameters, the two dates you are trying to get the difference of.
  15. descalzo

    Include file

    Try removing this line and replacing it with <?php echo "Hello There"; ?> The problem is, I have no idea how SiteReptile works. index.php clearly controls the site, but if all it does is put together pieces/templates with some basic template substitution, it may never run the final page...
  16. descalzo

    Do you guys have XSLT processors?

    Sablotron went out in PHP 4.1 x10 does have the XSL functions available on free hosting.
  17. descalzo

    My websites URL

    If you want xxxxx.com or xxxxx.com/ to open portal.php and portal.php is in public_html directory: 1. In public_html find a file called .htaccess. 2. Open in an editor 3. Add the line : DirectoryIndex portal.php index.html This tells Apache (the webserver) that the default...
  18. descalzo

    unable to login into hosting account

    The site you listed shows as being hosted by x10 (generic new site welcome page). Cannot tell if it yours or someone else has it. http://x10hosting.com/login.php Login with Forum username/password. Continue to Account Panel. Info on the left should tell you what your cPanel username is...
  19. descalzo

    Include file

    If <?php include('web_documents/filename.html'); ?> shows up in the page output, you are doing something very wrong. Please post the code where the above is supposed to be executed.
  20. descalzo

    php and quotation marks

    To be even more thorough, one should sanitze # and & by translating them to &#35 (#) and &#38 (&) by something like preg_replace. That will catch some of the more advanced attacks that use Hex encoding.
Top