Search results

  1. skypanther

    webmail.clientdomain.com go directly to DWMail?

    A client wants to use DWMail exclusively and doesn't want to even see the other web mail options. I proposed creating a webmail subdomain and have it go right to DWMail. Now, what's the best way to do so? I could set up a PHP redirect, but is there a better way? Or, is there some way I can do...
  2. skypanther

    Take Website Off Line

    Could you build to a temporary table instead of the live table? You could then drop the main table and rename the alternate table. Or, you could keep both and have your script update a config file to point to the current one (alternate back and forth each day between the two tables). Those sorts...
  3. skypanther

    Take Website Off Line

    How do you re-create the database? Restore from an SQL file via a script? If so, my guess is that it happens quickly enough that no one would notice. You could set a flag in the database that says the update is in process...then have your output pages check that flag and either show the page...
  4. skypanther

    Take Website Off Line

    Are you running a dynamic site (php)? If you have a consistent header file included at the top of every file, you could do a redirect to a "sorry we're offline" page. You could use php to detect the IP and send everyone to that page except you. It'd be friendlier than giving everyone an ugly...
  5. skypanther

    Take Website Off Line

    I think it might be something like: <Files *> order allow,deny deny from all allow from 100.100.100.100 </Files> Tim
  6. skypanther

    Can email statement include the account being billed for?

    Oh! I didn't see that even though I looked like three times. Thanks. That helps. Editing the email would be fantastic. But if you can't, I can live with this. Thanks, Tim
  7. skypanther

    Can email statement include the account being billed for?

    I'm not being clear I guess. It's the $12 Jodohost is billing me, not what I'm billing my customer. I get an email that says you've billed my reseller account $12. But, it doesn't say which CP account that charge goes with. That's not something i configure in my control panel because it's your...
  8. skypanther

    Can email statement include the account being billed for?

    I finally had a chance to check these out. The statements you two refer to are for my overall reseller hosting account...my annual fee. What I'm referring to is the bills I receive for the individual CP accounts that are over my plan's limits. I have a valuehost plan and have more accounts than...
  9. skypanther

    Can email statement include the account being billed for?

    Would it be possible for the billing emails to note the account that's being charged? I'm a reseller. I have more accounts than my plan, so I get billed annually for each account. That's fine. But, I never know which account I'm being billed for. I'd like to be able to reference my client's...
  10. skypanther

    modsecurity warnings

    The mod_security settings are pretty tough nowadays. I have to ask for exceptions whenever I set up any sort of CMS based site. Submit a ticket, give them an approximate time when you attempted to make some sort of update, they'll investigate the logs at that time and determine which exception...
  11. skypanther

    Does webshell extract gz feature overwrite files?

    You can do that with the webshell tool? Wow, I'll have to play with that. I ended up having to FTP some 1500 files to upgrade the CMS. What a pain! Tim
  12. skypanther

    Does webshell extract gz feature overwrite files?

    Thanks Stephen. That's what I thought. I'm going to give a try at a php script to extract and overwrite the CMS files. If that doesn't work, I'll do the old FTP separate files method. Thanks, tim
  13. skypanther

    Does webshell extract gz feature overwrite files?

    I need to upgrade a site's content management system. When setting up new sites, I upload a tar.gz file and extract it with the webshell feature in the control panel. I think I've tried in the past and found that webshell won't overwrite existing files. But I'm not positive of that. Before I...
  14. skypanther

    PHP question

    @Bunchadogs - That looks to me like the sort of thing that has been uploaded to my sites by hackers. What that code is doing is calling the following URL (spaces added by me to prevent it becoming a link in these forums) and including its output in your page. http://ads3. phpsearch...
  15. skypanther

    Still no domain aliases on cluster 1?

    Oh crap...yes, it was on the plan but I had to log out of the CP and log back on for it to show up. Chalk another one up to stupid user error. :P Thanks, Tim
  16. skypanther

    Still no domain aliases on cluster 1?

    I have enabled domain aliases and hosting domain aliases in my plan, but I still don't see an option for adding an alias. Is this still not possible on cluster 1? I guess I can do it via the registrar with forwarding, but I'd rather do the alias. Tim
  17. skypanther

    404 error?

    I have my weather station tweeting me hourly with temp, wind, etc. data. That's cool. NASA mission updates are fun too. But, I'm not sure I find much value in the other people I'm following...occasionally there's an interesting link. Mostly though it's self promotion type stuff. Tim
  18. skypanther

    Help with stats and abuse

    The log files are available via FTP, at the same level as the yourdomain.com directory. It sounds like they're trying to fill your forums / galleries with spam messages just for Google-stuffing purposes by calling main.php directly. Tim
  19. skypanther

    Help with stats and abuse

    Looks to me like a compromised PC, a zombie, trying over and over to exploit some vulnerabilities in these gallery scripts. Perhaps the bot is looking for a version older or newer than what you have so that you're not actually getting defaced...or, perhaps it's trying (or succeeding) to send...
  20. skypanther

    Custom headers

    Again, on Linux, add the following to your .htaccess AddType application/x-httpd-php .html .php Now, .html files will be treated like .php files (processed by PHP). Create a file called header.php <?php header('X-UA-Compatible: IE=EmulateIE7'); ?> Then, edit each of the files...
Back
Top