Search results

  1. descalzo

    Need help in jQuery Mobile

    URLs in CSS are relative to the .css file directory, NOT the page displayed background-image: url(images/icons-18-white.png) will make the browser look in the images directory located in the directory that contains the .css file. Which isn't there.
  2. descalzo

    Cron problem

    /usr/bin/php /home/balkanx1/public_html/o/ow_cron/run.php >>/home/balkanx1/public_html/cron_log.txt 2>&1 any errors or output will go to /cron_log.txt
  3. descalzo

    Cron problem

    /home/YOUR-CPANEL-USERNAME/public_html etc Not your site name
  4. descalzo

    how to point my domain to my free hosting domain here?

    The problem right now is with your computer or ISP. Clear your browser cache and history.
  5. descalzo

    Default Web Page being shown instead of my Index file

    I take it that the index.php redirects to your .com add-on domain. Clear your browser cache and history before checking again.
  6. descalzo

    how to point my domain to my free hosting domain here?

    Seems you have it working, after a fashion. You have wix's nameservers pointing your domain to your server, Starka. But you have a redirect from your .com name to your x10.mx name, which shows up in the browser address. Don't think that is what you want. You should remove the redirect and...
  7. descalzo

    So can this host run ASP?

    ASP.whatever does not run here. Most Free systems do not run it either. You can try Google.
  8. descalzo

    Best User Autentication System

    Your question is way too vague.
  9. descalzo

    Problem with my contact.php page

    1. Define "doesn't work" 2. What have you tried to find the cause? 3. Format your code so that it is readable.
  10. descalzo

    Troubles and confusion...

    You should just delete it then
  11. descalzo

    Troubles and confusion...

    Go to cPanel. Click on reset all interface settings Click on File Manager. Select "Web root" Check "Show hidden files (dotfiles)" and usually "Don't show this again" You can see/edit/copy .htaccess in File Manager. ------------------- I can see your site now using isaeldallaire.com ...
  12. descalzo

    Troubles and confusion...

    Why did you put your files in public_html/home instead of directly into public_html (where they normally belong)? To clear up the redirection problem, post your .htaccess file here and I can tell you how to edit out the problem. (a parked domain shows exactly the same content as your main...
  13. descalzo

    Street photograhy, what do you think.

    I like the graytone color scheme concept. Just that the site is a bit too dark for me (ie, I might like lighter grays and/or more use of white). Color can be used as an exclamation point. Not a fan of the "Valid HTML" link on any site. Pages should validate, period. And maybe incorporate...
  14. descalzo

    File get contents php - - need help

    It's usually best to assume that whatever you are doing in programming is case sensitive.
  15. descalzo

    File get contents php - - need help

    Why do you think $_post['urltoedit'] contains the contents of that form field? PROVE IT TO ME. Cite a source anywhere on the web to support the claim.
  16. descalzo

    File get contents php - - need help

    Filename cannot be empty ---> file_get_contents($filename); is the problem ---> $filename is the empty string ---> $filename = $_post['urltoedit']; puts the empty string into $filename ----> $_post['urltoedit'] is the empty string. Why do you think it has anything in it?
  17. descalzo

    Default Web Site Page instead of site

    Your domain shows your jewelery website now. Please clear your browser cache and history before checking it again. Note that your server, Boru, is undergoing some maintenance, which might have been the cause of your problem.
  18. descalzo

    php error - i need help!

    file_put_contents($filename, $content);?>
  19. descalzo

    My cron job just stopped running

    /usr/bin/php -q /home/scstcal/public_html/scripts/calsync/goosync.php >>/home/scstcal/public_html/scripts/calsync/cron_log.txt 2>&1 That way any output or errors will go to cron_log.txt and you can catch them. You can add commands to the script to help debug the output. Does the script...
  20. descalzo

    my oscommerce shop won't work,please help

    It is trying to load a file via: require(includes/languages/.php) .php is not the name of a file. Looks like a "Language" setting is blank, when it should be "english" or "serbian" , etc.
Top