-
Turning Joomla into a SOAP Server using components
So I am using SugarCRM to feed data into Joomla. I am using SOAP for this purpose but I couldn’t really find any good tutorials on how to set up a soap server in Joomla so I am going to share my implementation here. by the way this is for joomla 2.5 i am sure…
-
Remove a folder and its contents recursively with PHP
PHP for all it’s wonderful things can’t delete a non-empty folder. Every time I have to delete a folder I looked it up in google and used the first code that would sort of work. Well today I needed to delete folders but I needed something robust that handled errors better than what I was able…
-
Delete expired entries in MYSQL
For those who want to delete items in a MySQL database based on a date field the process is very easy. First of all you need a DATE field, for example a coupon expiration date. the data is saved in the following format: YYYY-MM-DD Then all you need to delete older items is this: DELETE…
-
X-Cart File too large for egoods download
I have been working on xcart and even thought I really like it there is a huge problem with their egoods downloads. The site I was working on distributes large videos, up to 500 MB, but I was running on the problem that x-cart eGoods would only download 24.5 MB maximum. After browsing the interwebs i came across…
-
Adding the Authorize.net PHP SDK to CodeIgniter 1.7
I am writing a site that requires credit card processing through authorize.net. I am building the site using the CodeIgniter framework. I was thinking I would have to do some fancy hacking or using a 3rd party library to make this work but it turns out that you can user the SDK provided by Authorize.net…