-
Posts
6,024 -
Joined
-
Last visited
Everything posted by TCH-Dick
-
This is one of those things we occasional review and have tested a few times over the years. Unfortunately, due to the varying skill levels of site owners and how often they change/update their code, these test have never went well. They have always ended in an overwhelming number of broken sites and angry webmasters. Therefore, we continue to come to the conclusion that disabling register globals by default is just not feasible. With that said, it is my understand that register_globals is being deprecated as of PHP 5.3.0 and will be completely removed in PHP 6.
-
When using custom templates, whether includied in the theme or adding your own, you need to insure they are setup properly. So if I wanted to create a template for say my RSS feeds, then I would create rsspage.php and include the following code at the top of this file: ><?php /* Template Name: RSSpage */ ?> If you have done this and you still can not select the page template, then there is an issue with the theme you are using. .
-
Difference Between Wordpress.com & Wordpress.org
TCH-Dick replied to glamorouscreations's topic in WordPress
It might be labeled "Links" -
I checked the server logs and there were two errors that occured, "malformed header from script" and "Exec format error". Both of which only appeared when you ran the php script via cgi-gin. I was unable to locate any other errors, as the white space and hasbang errors didnt prevent the script from running, it just didn't run everything. As for the white space, I had the same problem at the hasbang and opening tag, I also had to remove the windows style carriage return added by wordpad.
-
You're welcome! I know what it's like getting stuck on the small things, especially after you have been staring at the same code for too long.
-
I copied /home/*******/public_html/pipemail.php to /home/*******/public_html/php_test/pipemail.php and then changed the pipe to match and received no bounce. You should have received the same email from this test. The only other issue that could exist is what and how you created the file. When I first tested this on my server, I had some unneeded spaces in the script at the beginning and end from using wordpad instead of notepad. Once I edited the script on the server and removed the spaces, all worked as intended.
-
Happy Birthday
-
The pipe to /home/*******/home/*******/public_html/cgi-bin/pipemail.php was an error on our part and you had it setup properly. The extra /home/*******/ is because cPanel now adds that part of the path for you. As for the script itself, the only issue I found was the hashbang and I made the following changes: >//changed #!/usr/local/bin/php-q <?php //to #!/usr/local/bin/php -q <?php The working script is at /home/*******/public_html/pipemail.php with the appropriate forwarder setup. Please give it a spin and let me know if you have any problems.
-
I have your script working on my server using the code your posted before my last reply. The only thing I changed was the hashbang and of course the email address. I have now located your ticket and I am going to review your setup.
-
Try setting your hashbang to #!/usr/local/bin/php -q If that doesnt work, please drop in a ticket and we will gladly take a look.
-
There are just a couple of things to keep in mind with these options: -Your email address is your username therefore you have to use a unique email address for each Billing account. -All packages under a Billing account will bill to the same credit card on file, so if you want to use a different card you should create a new account. -If you ever choose to turn over the account to another member of the group, having a separate account will make the process easier.
-
I use Kaspersky as well and so do most of the other staff. I agree that KIS can be a bit bloated but I disable most of the stuff that I have no use for such as the antispam and privacy control.
-
Depending on your server setup you may need to open a ticket for this change. Alternatively you can try one of the following: -If the issue is with NextGEN then uncomment(remove //) the line @ini_set('memory_limit', '128M'); in /plugins/nextgen-gallery/lib/gd.thumbnail.inc.php -If the issue is WordPress in general then add the line @ini_set('memory_limit', '64M'); to wp-config.php right after <?php (adjust amount as needed)
-
Maybe it is luck but I'm runnning Windows7 Pro 64 and have yet to have a driver issue.
-
This is done for security reasons. Due to the nature of a shared server environment, tools such as phpMyAdmin are a centralized install shared by all users. If cPanel were to enable priveleges such as Create via phpMyAdmin, then a user would be able to create databases outside of thier own account.
-
Dont't give up, it's usually one little settting that you have overlooked. Try this: -Remove the account you setup from Outlook Express. -Log in to your cpanel and go to Mail > Email Accounts. -Locate the account you want to setup and click the last icon labled "Configure Mail Client". -Click the link "Auto-Configure Microsoft Outlook Express for POP3 Access" and follow the instructions to download and run the VBscript. *You can also use the "Manual Settings" listed at the bottom of this page to check your setup.
-
Correct, "on domain" would be in the root of your site and replace your current site. However, Fantastico should give you a warning if it dectects an existing index file.
-
If you are looking for an easy to maintain site that can be expanded as needed, then here is what I think you should try: Log into cPanel, locate/click the Fantastico link, locate the blog section and install Wordpress. Search Google and the WordPress Extend site for artists and portfolio themes to install. google.com/search=result&cd=1&q=wordpress+artists+themes google.com/search=result&cd=1&q=wordpress+portfolio+themes wordpress.org/extend/themes/search.php?q=artist wordpress.org/extend/themes/search.php?q=portfolio
-
As promised Ryan has now posted an article explaining this issue. You can find this article in the TCH Forums or if you wish to comment on the artcle you can do so on the TCH Blog. Thanks to everyone for being so patient during this and for being persistent in sharing any data you found.
-
Please review our Acceptable Use Policy located at http://www.totalchoicehosting.com/web-hosting-aup.html Specifically the section which states
-
Thanks for sharing and welcome to TotalChoice.
-
Per our Acceptable Use Policy, You may only host one domain per virtual account; resellers are allowed to host unlimited domains. This policy is not just about reselling, we have a very low limits set on the number of accounts allowed per shared/reseller servers to insure everyone gets the most out of their hosting account.
-
www is just a symlink to public_html, adding files to either will place them in public_html.
-
Sorry about that, I was doing a little cleanup in there and it should be working now.
-
Unable To Connect To Ftp Site From Windows Server 2003 Network
TCH-Dick replied to Bob Crabb's topic in Software Talk
The code 10060 is typically due to the connection timing out. Try enabling disabling pasv mode and increasing the network timeout settings in your ftp client.