Also Please let me know how can I send bulk emails from my dedicated host…
Thanks
Kris M
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
]]>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:
A full suite of template tags to customise the checkout process. Checkout the extensive documentation.
Built in support for PayPal Website Payments Standard and SagePay UK, as well as many more on the way.
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.
Set an earlybird date and price, the module will do the rest.
Simply set a date (independently of the event date) and the module will close registrations automatically.
Capture the name of each attendee as well as dynamic event custom fields you can define for each event.
We understand that the person paying the bill isn’t always the person attending.
A snapshot of event information including attendee list, total billed, tickets remaining and more.
Export attendee and transaction data.
Built in accordance with ExpressionEngine’s standard internationalisation conventions.
Build your own customised checkout functionality by using the custom module hooks
[Mod Edit: Moved to the Community News forum]
]]>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
]]>**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]
I’m thinking specifically the publishing end of it not the the hub end where you take input form other publishers.
Jamie
]]>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 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.
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.