Unfortunately the original Zen-Cart doesn't allows to copy categories, it has move ability. Although it allows to copy products. The attached files add copying ability for categories. It allows to copy a whole directory tree with all children. The extension was tested with Zen-Cart 1.3.0.
Just install and use.
If you need some customization don't hesitate to ask.
Friday, December 26, 2008
Wednesday, February 6, 2008
how to integrate phpBB and Zen-cart?
The default integration is quit simple - you just install zencart and phpBB and use two different php applications. They are not integrated at all. It would be better if you could login into zencart and then use phpbb forum without another login.
Such task requires some fixes both in zencart and in phpBB: you have to alter login and session processing sections in both applications.
All files that should be modified are available by this link.
Feel free to use it on your projects.
If you don't like to digg in you e-commerce you can buy my services: 15$ for integration
Such task requires some fixes both in zencart and in phpBB: you have to alter login and session processing sections in both applications.
All files that should be modified are available by this link.
Feel free to use it on your projects.
If you don't like to digg in you e-commerce you can buy my services: 15$ for integration
Wednesday, October 10, 2007
Congratulations,
SugarCRM v4.5.1 could be successfuly installed on Godaddy's shared hosting.
There are many posts at both Sugar's and Godaddy's forums indictating the existing incompatibility between them. But now it is possible with following assumptions:
1) switch to PHP5 using .htaccess
2) make MySQL 5 database
3) Upload and install SugarCRM
PS: IMAP functions are still unavailble at godaddy so some SugarCRM functionality will not work.
PPS: Don't hesitate to ask if you need help to install Sugar or any other software.
SugarCRM v4.5.1 could be successfuly installed on Godaddy's shared hosting.
There are many posts at both Sugar's and Godaddy's forums indictating the existing incompatibility between them. But now it is possible with following assumptions:
1) switch to PHP5 using .htaccess
2) make MySQL 5 database
3) Upload and install SugarCRM
PS: IMAP functions are still unavailble at godaddy so some SugarCRM functionality will not work.
PPS: Don't hesitate to ask if you need help to install Sugar or any other software.
Wednesday, September 26, 2007
Anyone who dealed with forms and php applications knows about emails. There a lot of questions about mail() function at http://www.php.net/mail
I got a class from sourceforge which makes my life mush easier.
You could make a piece of code which sends HTML email with attachment in a few minutes using it.
My script shows a form, where an user could enter his name and upload a file which will be sent to admin.
I got a class from sourceforge which makes my life mush easier.
You could make a piece of code which sends HTML email with attachment in a few minutes using it.
My script shows a form, where an user could enter his name and upload a file which will be sent to admin.
Wednesday, September 19, 2007
Portable Web Server
good portable web server - WOS portable
What is portable web server?
It is just full server environment fitted on flash-stick or CD(DVD)ROM.
WOS includes Apache web server, MySQL, PHP4&5 and a couple of PHP apps - such as OsCommerce, PHPMyAdmin and others.
It allows you to run your favorite site offline, on a client's desktop for example.
What is portable web server?
It is just full server environment fitted on flash-stick or CD(DVD)ROM.
WOS includes Apache web server, MySQL, PHP4&5 and a couple of PHP apps - such as OsCommerce, PHPMyAdmin and others.
It allows you to run your favorite site offline, on a client's desktop for example.
Sunday, September 2, 2007
PHPAuction runs on PHP 5
I had to use PhpAuction v2.0 in order to create a website for my client. But this script is written in old fashiniod way and it requires register_globals to be set on. I prepared a little patches for it. Files that should be fixed:
includes/config.inc.php (Place the code below to the begining of the file)
$p = array_merge($_GET,$_POST,$_SERVER); foreach($p as $k=>$v){ $GLOBALS[$k] = $v; }
if (!isset($HTTP_POST_VARS)) $HTTP_POST_VARS = $_POST;
if (!isset($HTTP_SESSION_VARS)) $HTTP_SESSION_VARS = $_SESSION;
admin/loggedin.inc.php (Place the code below immediately after session_start();)
if (!isset($HTTP_SESSION_VARS)) $HTTP_SESSION_VARS = $_SESSION;
In this way PhpAuction v2.0 from https://sourceforge.net/projects/phpnggpl/ could be used on both PHP 4&5 with register_globals switched off
includes/config.inc.php (Place the code below to the begining of the file)
$p = array_merge($_GET,$_POST,$_SERVER); foreach($p as $k=>$v){ $GLOBALS[$k] = $v; }
if (!isset($HTTP_POST_VARS)) $HTTP_POST_VARS = $_POST;
if (!isset($HTTP_SESSION_VARS)) $HTTP_SESSION_VARS = $_SESSION;
admin/loggedin.inc.php (Place the code below immediately after session_start();)
if (!isset($HTTP_SESSION_VARS)) $HTTP_SESSION_VARS = $_SESSION;
In this way PhpAuction v2.0 from https://sourceforge.net/projects/phpnggpl/ could be used on both PHP 4&5 with register_globals switched off
Tuesday, August 21, 2007
Subscribe to:
Posts (Atom)