EllisLab Community Forums 0 Copyright (c) 2013 ExpressionEngine tag:ellislab.com,2013:05:18 How Massing Mailing Works? tag:ellislab.com,2013:forums/viewthread/.235449 2013-05-17T04:21:53Z 0 kris9873 I’m planning to send bulk email form my hosting server but I couldn’t…. Is there way that I can know about my hosts limits that can be send per day…

Also Please let me know how can I send bulk emails from my dedicated host…

Thanks
Kris M

]]>
POST data size error tag:ellislab.com,2013:forums/viewthread/.235424 2013-05-16T01:43:03Z 0 AbyJaby Hi there,

I have post data size in my php.ini which is 8M.

If I have upload the file of size say 25mb, it gives me an error

Warning: POST Content-Length of 100753587 bytes exceeds the limit of 52428800 bytes in Unknown on line 0

and it empties the global variables like $_POST and $_FILES

while it should be handled with my customized error during file upload process…..

Please help ASAP

]]>
Introducing moreEvents.  A complete event management module for EE tag:ellislab.com,2012:forums/viewthread/.211130 2012-02-15T05:47:15Z 2012-02-20T23:32:13Z moresoda Hi everyone,

I just wanted to announce a new add-on we have just developed: moreEvents.  It is a complete event management module that allows you to sell tickets for events you have created in ExpressionEngine.  It includes features such as payment gateway integration, attendee detail capture, earlybird pricing and more.  It extends the native channel entry mechanism, so you can customise the event properties from a new tab on the publish page as well as take advantage of all the usual EE custom entry fields.

You can find out more information about it on Devot-ee moreEvents page (where you can buy it) or at the Moresoda EE addon homepage.

For completeness I’ve included a more comprehensive feature list below to save you the jump to Devot-ee:

ExpressionEngine template integration.

A full suite of template tags to customise the checkout process.  Checkout the extensive documentation.

Payment processing

Built in support for PayPal Website Payments Standard and SagePay UK, as well as many more on the way.

Member group specific pricing

Set a different ticket price for each of your member groups (even non-members).  You can even let some of them buy tickets for free.

Early bird ticket discounts

Set an earlybird date and price, the module will do the rest.

Automatic registration cutoff

Simply set a date (independently of the event date) and the module will close registrations automatically.

Capture attendee details

Capture the name of each attendee as well as dynamic event custom fields you can define for each event.

Separate billing capture

We understand that the person paying the bill isn’t always the person attending.

Event overview

A snapshot of event information including attendee list, total billed, tickets remaining and more.

CSV data export

Export attendee and transaction data.

Language support

Built in accordance with ExpressionEngine’s standard internationalisation conventions.

Add your own extensions

Build your own customised checkout functionality by using the custom module hooks

[Mod Edit: Moved to the Community News forum]

]]>
Codeigniter URL Question? tag:ellislab.com,2013:forums/viewthread/.235308 2013-05-11T10:41:04Z 0 scm22ri Hi Everyone,

Is there anyway to pass URLs variables without setting the $config[‘enable_query_strings’] = TRUE?

For example, I want to make a URL like the one below
mydomain.com/dealers/rhode-island/cranston

Is it possible to do something like this in codeigniter without messing around with the $config query strings?

Thanks

]]>
How to continue the previous ajax action after login tag:ellislab.com,2013:forums/viewthread/.235307 2013-05-11T09:07:07Z 0 ansuman I have a row displaying in a php page. Each row is having a seperate “like” button.
To like any row user should login first.
Now, if any user click on any like button, & if user is not logged In, then i am showing them login form in a lightbox.

**What i want is:**
  If login authentication is successful, then i want to continue that ajax like action which user clicked to like that specific row i.e it should the previous action which users intended for eg.`http://localhost/coments/like/193`
How to do this, please help me to solve this issue.

i used the below technique, but its not calling the previous action though its forwarding it in same page.
 

...............
    ...............
     
success: function(dat){
                        
if(dat.status == 'success')
                        
{   $('#fcboxlogindiverror').hide();  $('#facebox_login_progress').hide(); 
                            
[removed].href '<?php uri_string(); ?>'
                            
//this is not calling the previous action, but correctly it is forwarding to the correct paage
                                 
                        

What exactly i am trying to implement:
In stackoverflow, if user is not logged in and tries to vote-up, then a login form opens in a facebox, if my login is successful then the the vote increase


Full jquery/ajax function

[removed] 
        
$(document).ready(function() {
            
var _status = $('#fcboxlogindiverror'); 
            $(
'#sub1').click(function(e)
                
$('#facebox_login_progress').show();
                $(
'#sub1').attr('disabled',true);
                $(
'#facebox_signupErrorDiv').hide();  
                
e.preventDefault();
                
_status.html(''); 
                $.
ajax({
                    url
:"<?php echo base_url('ajax__facebox_login_regis/index'); ?>",
                    
type:"post",
                    
data: $('#form-one').serialize(),
                    
dataType"json",
                    
success: function(dat){
                        
if(dat.status == 'success')
                        
{   $('#fcboxlogindiverror').hide();  $('#facebox_login_progress').hide(); 
                            
[removed].href '<?php uri_string(); ?>';  //this is not calling the previous action, but correctly it is forwarding to the correct paage
                                 
                        

                        
else if(dat.status == 'password_changed'){[removed].href '<?php echo base_url('login'); ?>';   }     
                        
else if(dat.status == 'many_attempt'){[removed].href '<?php echo base_url('login/lostpassword'); ?>';   }  
                        
else
                        
{   $("#fcboxlogindiverror").empty();
                            $(
'#facebox_login_progress').hide(); 
                            $(
'#sub1').attr('disabled',false);
                                      
                                     
                            $(
'.error').css('border' '1px solid #dd3c10');
                            $(
'.error').css('padding' '0.1em 0.1em 0.1em 36px');
                                      
                            
_status.html('<span class="err">'+dat.message+'</span>');
                            $(
"#fcboxlogindiverror").fadeIn("slow");
                                         
                            $(
"#fcboxlogindiverror").click(function() {
                                
$("#fcboxlogindiverror").fadeOut("slow");
                                return 
false;
                            
});
                        
}
                    }
,
                    
error: function(err){$('#facebox_login_progress').hide();
                        
alert("Something!-" err);
                    
}
                }
);
            
});
             
        
});      
    
[removed] 
]]>
unable to load css and js files from view tag:ellislab.com,2013:forums/viewthread/.235297 2013-05-10T16:07:45Z 2013-05-12T12:44:23Z codecombustor [Solved..]

]]>
PubSubHubbub tag:ellislab.com,2009:forums/viewthread/.132321 2009-10-16T16:19:04Z 0 Jamie Poitra Anyone messed around with getting PubSubHubbub to work in EE?

I’m thinking specifically the publishing end of it not the the hub end where you take input form other publishers.

Jamie

]]>
New Add-On ~ eeXam eLearning for EE ~ Beta Test tag:ellislab.com,2013:forums/viewthread/.232768 2013-01-22T06:10:59Z 0 CoffeeBeanDesign eeXam is a highly flexible eLearning Add-On for ExpressionEngine 2.0.  Including drag and drop question builder, detailed results and intuitive jQuery API for ultimate customization.

Designed for complex web based eLearning, training courses, simple tests or polls.  You can build complex tests and monitor Member attempts and answers. 

Features

- Create tests within Channel Entries.
- Build flexible, multi-level courses.
- Highly configurable with tag parameters.
- Filter and export detailed answer data.
- Send automated notification emails.
- Extendable with hooks & jQuery API.

Links

- eeXam Documentation

eeXam will be publically available soon on devot:ee. Price TBC.

If you would like to test the beta version please PM.
I will happily give a 50% discount off your first licence for all constructive criticism.

]]>
form_password === ‘password’ tag:ellislab.com,2013:forums/viewthread/.234292 2013-03-24T15:43:46Z 0 antpowerWD I’m building a social network using HMVC Code Igniter and I am creating my registration form, the defaults using form_input() are really nice(displayed in the input box etc…) however for form_password I get *******, I would really prefer it to just output the word password and then once the user types the password it would hash, my other alternative is to create opaque labels that display in the input box, but if there is a solution to the former it would be a quick and easy solution, so is there a way to change the default behaviour for form_password(), so it can output the word password.

]]>
unable to display the uploaded image with spaces and capitalizing subsequent words tag:ellislab.com,2013:forums/viewthread/.235181 2013-05-04T06:52:34Z 2013-05-11T09:04:56Z ansuman From my below code i am able to upload images with spaces and capitalizing subsequent words, but if i try to view such images into my view page then its not visible. I am getting error like `The URI you submitted has disallowed characters.`

I am displaying images like `<?php echo base_url(). `
So how can i fix this error, to allow img tag to read image name with spaces and capitalizing subsequent words.

]]>