-
Cron Job is producing tiny files
As the title suggests, I have a Cron job running every few minutes - to manage the sending of emails produced by the PEAR mail_queue script. Thing is, the script is producing tiny tiny files, of 1 byte in size, in the root folder of the server. I know this is produced by the cron job because the filename of the files is identical to the filename of the .php file being run - but the file extension is a number. Any idea on why these files are being produced and, more importantly, how I can stop them? Its really frustrating because it fills my server space up really really slowly but persistently and it takes ages to delete the many thousands of files. Thanks in advance.
-
Introduction of Suhosin has broken Google Carts
All, I take back my comment about their service. Being contacted through a 3rd party forum - that's pretty good. FYI, the problem still exists but is being investigated by both Xilo and Google.
-
Introduction of Suhosin has broken Google Carts
Mr Xilo! Thanks - I'll dig out the ticket number. Cheers.
-
Introduction of Suhosin has broken Google Carts
Okay, thanks JST.
-
Introduction of Suhosin has broken Google Carts
It IS cPanel. But the all the error logs tell me is that I haven't defined an error page for an HTTP 406 error within my .htaccess file! It gives me no clue as to why the 406 error is happening in the first place!
-
Introduction of Suhosin has broken Google Carts
Unfortunately, I don't have direct access to the error logs (I don't think). Only Xilo can provide me with these, and they're being utterly crap at replying to emails.
-
Introduction of Suhosin has broken Google Carts
Xilo has recently introduced a few new security measures on their hosting service. One of them is the installation of Suhosin. At the same time, a website that I maintain has stopped working with Google Carts. The Google integration reports states that whenever it tries to connect to my site, it receives an HTTP error code 406. I've never seen this before. Any thoughts on this? I need to fix this site ASAP. I have found a few suggestions stating that it could be a problem with permissions within the mod_security module, although I am unable to reconfigure this module via .htaccess or altering the php.ini file, as Xilo does not provide me with permissions to do this. I'm a bit stuck! Thanks in advance.
-
phpinfo() returns server error
Hmm. It seems at the beginning of October they slammed down a few new security measures and one of them was to stop phpinfo() from working. I really just wanted it to see what modules were installed on the server. I have another problem with these new security measures too. I'll create a new thread. Thanks.
-
member registration and access site
If you've never done anything like that before then you've got alot of learning to do before you can create a website that does all those things. I'd use PHP and SQL. Learn about server sessions for the logins. Learn about either PayPal or GoogleCarts for the payment options. Then, if you want to automate interfaces between the payment gateway and the website, you'll also have to swot up on API interfacing. Good luck!
-
phpinfo() returns server error
This code... <?php error_reporting(E_ALL); ini_set('display_errors', '1'); echo phpinfo(); ?> is returning a 500 server error. Any ideas why??! Hosting is with Xilo.net Thanks.
-
How should i name my web-page
Can I add to this question? Is there SEO benefit to exploiting .htaccess to create more user friendly links? eg. Instead of http://www.abc.com/about.html using http://www.abc.com/about/ ?
-
PHP form script no longer working
Hey, relax. I'm just saying! I remember building an image upload form but it didn't work. I spent ages trying to figure out what was wrong with the PHP when I suddenly realised I'd forgotten to include enctype. So, y'know, I'm not being facetious. I'm just telling you to check all your coding.
-
Borders appearing in forms
I just used the form to send you a test email. See if that work. I think it did. AND I did it from ie8...
-
Borders appearing in forms
There aren't any ie8 problems with mailing that I know of, but I don't tend to submit emails in that method. Having actual email addresses in the code like that makes your site vulnerable to spamming. So, if you have the know-how, I would submit the form to a seperate page which emails you without displaying the email address anywhere. You'll need server-side scripting to do this... have a search around t'internet for info. There's loads of resources available advising you on how this is done.
-
Borders appearing in forms
Take this... <table width="300" border="0" rules="all" id="Table"> <tbody><tr> <td width="58" align="left">BBQ</td> <td width="24"><label> <input type="checkbox" value="Yes" id="BBQ" name="BBQ"/> </label></td> <td width="81" align="right">Hog Roast</td> <td width="20"><label> <input type="checkbox" value="Yes" id="HogRoast" name="HogRoast"/> </label></td> <td width="56" align="right">Bar</td> <td width="35"><label> <input type="checkbox" value="Yes" id="Bar" name="Bar"/> </label></td> </tr> </tbody></table> And turn it into this... BBQ<input type="checkbox" value="Yes" id="BBQ" name="BBQ"/> HogRoast<input type="checkbox" value="Yes" id="HogRoast" name="HogRoast"/> Bar<input type="checkbox" value="Yes" id="Bar" name="Bar"/> Its just the same but without the table cells. You will obviously have to change the code from this - its not presentable. But it shows that the problem is due to table cells.