Search results

  1. descalzo

    Photo Gallery has given random error and stopped working

    // comment out $current_gallery = array_pop(split("/", dirname($img))); add below it $current_gallery = array_pop(explode("/", dirname($img)));
  2. descalzo

    Photo Gallery has given random error and stopped working

    Deprecated: Function split() is deprecated in /home/enforcer/public_html/enforcer/libraries/thumb.display.php on line 204 is one problem on the first page when you click on the thumb. Again, post the code lines 195 - 210 from thumb.display.php and I will try to find a fix (tomorrow, going to...
  3. descalzo

    Photo Gallery has given random error and stopped working

    Comment out the line ( add // in front ) and add on the next line after it: $gd['num'] = preg_replace('/[a-zA-Z\s()]+/','',$gda['GD Version']); ALSO, four lines below that, comment out: $gd['jpg'] = $gda["JPG Support"]; and add $gd['jpg'] = $gda["JPEG Support"];
  4. descalzo

    Name servers

    The nameservers here are ns1.x10hosting.com ns2.x10hosting.com
  5. descalzo

    Photo Gallery has given random error and stopped working

    They upgraded to PHP 5.3 which causes the "Deprecated" warning. Since it is just one line, why don't you post lines 90-110 from that script and maybe we can rewrite that part for you. Please label line #96 (if you open the file in cPanel->File Manager Code editor, it has line numbers) Not...
  6. descalzo

    problem with address http://www.bgweek.pcriot.com/

    Your script is out of date. That is what the 'Deprecated' warnings are about. The servers have been updated to run PHP 5.3 and your script uses features that are 'deprecated', ie they work, but they are discouraged and may not work in future versions of PHP. You have to either 1. Get an...
  7. descalzo

    Php Mail

    The following works on Chopin. It even gets to Hotmail (you might have to check the Spam folder, at least it does not get bounced back). <?php // TEST OF THE MAIL SYSTEM USING PHP mail() date_default_timezone_set('America/Los_Angeles'); echo date('l jS \of F Y h:i:s A'); echo...
  8. descalzo

    What happened to Free hosting?!?!?!?

    Exactly what is the problem?
  9. descalzo

    Error

    What is in your .htaccess for the site?
  10. descalzo

    suspension

    Cleared. Sometimes the suspension does not fully clear and it has to be kicked a bit.
  11. descalzo

    Need 1 More MySql Database

    The only way to get more databases is to pay for an upgrade. But you can usually use the same database for multiple applications by using "table prefixes". igor_info can hold tables prefixed with wp_ for a WordPress install, droopy_ for a Drupal install, wp2_ for a second WP install, etc.
  12. descalzo

    How many accounts are we allowed?

    You can use any of the x10 subdomains as an add-on, just as you use them for main domains. (note: co.cc are not controlled by x10 and have to be registered separately).
  13. descalzo

    How many accounts are we allowed?

    You are allowed one Free Hosting Account. That account can host 3 separate sites (main domain and two add-on domains). The two MySQL databases can each be used for multiple scripts (WordPress, Joomla, Drupal, etc) by using table prefixes.
  14. descalzo

    'www' CNAME record

    You don't seem to understand. The DNS system does not allow two CNAME records for the same domain, period. Free hosting or paid.
  15. descalzo

    'www' CNAME record

    You cannot have two CNAME records for www.yourdomain.com If you want to have one point to Google, you have to edit the one that is already there (or delete that one and create another).
  16. descalzo

    Log out in every page in cPanel

    cPanel is a third party application that cannot be "hacked". It does have some customizations available, but I do not think your suggestions are among them.
  17. descalzo

    custom pages

    I put mine in a subdirectory of public_htlm , errors . Name them for the error ( 404.html, 500.html, etc ) In the .htaccess file in public_html add the line: ErrorDocument 404 /errors/404.html for each custom error you want to handle. (replace 404 with the error code you are interested...
  18. descalzo

    Ssl

    Shared SSL is no longer offered on the Free Hosting Accounts. Any information you might have seen on this site would have been out of date.
  19. descalzo

    Files get cut off on FTP - is this a joke?

    You have been told that what you propose to do will cause a suspension. You have been warned.
  20. descalzo

    Spry Menu bar not showing on my site

    You uploaded the .js scripts to the wrong place. From the source of your index page: script src="Scripts/swfobject_modified.js" script src="SpryAssets/SpryMenuBar.js" link href="SpryAssets/SpryMenuBarHorizontal.css" so you have to make subdirectories Scripts and SpryAssets in public_html...
Top