I created view page filtered by taxonomy , fields is term id (excluded) and url (term field , excluded) and global custom field , i used global custom text as <a href="[tid]"> text </a> , here tid would be replaced if url entered or tid will be set .
To anyone interested, I had a friend develop a database in MySQL on the Drupal platform. The database is 75% complete but still needs some work. My friend is no longer available to work on the project and I am left looking for help. I would prefer an individual based in Southern California but anyone interested please drop me a line or reply. I would prefer to explain details of the project somewhere then on an open forum.
If you see the following errors after you upload the media module, this is how you can locate the problem and solve it. First, this is what the error looks like:
• warning: Invalid argument supplied for foreach() in …..\includes\database.mysql-common.inc on line 118.
• user warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '0 (), INDEX 1 () ) /*!40100 DEFAULT CHARACTER SET utf8 */' at line 7 query: CREATE TABLE media_metadata ( `mid` INT unsigned NOT NULL auto_increment, `fid` INT unsigned NOT NULL DEFAULT 0, `name` VARCHAR(255) NOT NULL DEFAULT '', `data` TEXT DEFAULT NULL, PRIMARY KEY (mid), INDEX 0 (), INDEX 1 () ) /*!40100 DEFAULT CHARACTER SET utf8 */ in …….includes\database.inc on line 551.
Second, in order to solve this problem follow the steps below.
1) Open "sites" folder which is inside your drupal
2) Open "all" folder.
3) Continue to open more folders until you can locate the media folder that has the media metadata folder.
4) Open media metadata folder. Inside that folder you will find a file named "media metadata.install
5) Open that file with a file editor such notepad++ or Dreamweaver, and look for "hook_schema". You are going to make two changes as follows:
I am trying to determine the best way to create a secure form that includes credit card information (that is not being processed). We have our own security certificate and process credit cards already. This however is simply a form to manually send to our secondary site which will then hand process the order. Convoluted I know but it is the requirement for this project. Any thoughts would be appreciated.