edgar105 Posted September 5, 2006 Share Posted September 5, 2006 It's a nice contribution and works well for me, but has anyone modified the Admin customers.php file so admins can edit the SMS number value from their side (in case the format is incorrectly entered by the customer)? e. Link to comment Share on other sites More sharing options...
edgar105 Posted September 11, 2006 Author Share Posted September 11, 2006 I guess no answers?! Link to comment Share on other sites More sharing options...
gregy Posted February 25, 2007 Share Posted February 25, 2007 when installing i get errro when submitting mysql code ... did this code worked for you? -- MySQL dump 10.8-- -- Host: localhost Database: smscommerce -- ------------------------------------------------------ -- Server version 4.1.7-standard /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE="NO_AUTO_VALUE_ON_ZERO" */; -- -- Table structure for table `sms_defaults` -- DROP TABLE IF EXISTS `sms_defaults`; CREATE TABLE `sms_defaults` ( `sms_default_message_id` int(32) NOT NULL auto_increment, `sms_default_message_name` varchar(50) NOT NULL default '', `sms_language_id` int(5) NOT NULL default '0', `sms_default_message_text` varchar(160) default NULL, PRIMARY KEY (`sms_default_message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `sms_defaults` -- /*!40000 ALTER TABLE `sms_defaults` DISABLE KEYS */; LOCK TABLES `sms_defaults` WRITE; INSERT INTO `sms_defaults` VALUES (1,'Processing',1,'Thank you for your order. Processing now.'),(2,'Dispatched',1,'Your order has been dispatched. Log in to your account for more information.'); UNLOCK TABLES; /*!40000 ALTER TABLE `sms_defaults` ENABLE KEYS */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; something wrong about latin1 line .. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.