New Events will not create
(15 posts) (2 voices)-
I just installed the latest version of Eventr that is on the wordpress site. I am running WP 2.7.
I am able to get the plug in installed and activated. When I go to add an event I get this msg and a blank page within my template:
You're receiving this error because the page you are looking for no longer exists on this website.
I did have one event calendar installed. I uninstalled Eventr, deactivated the previous event calendar and than installed and activated Eventr and still get the error. Is this an issue with 2.7?
thanks,
Joe KlingPosted 3 years ago # -
You are using the latest version of eventr, right?
If so give me the URL to download the 'Event Calendar' plugin - could be a compatibility issue.Posted 3 years ago # -
The first time I loaded it was from wordpress.org
[url:3c18vrjn]http://wordpress.org/extend/plugins/eventr/[/url:3c18vrjn]
says its version 1.01.2
That is also the version stated in my plug-ins list.
The 3.7 install was an upgrade from 3.6.somethingPosted 3 years ago # -
[quote="binnyva":17o10ppr]You are using the latest version of eventr, right?
If so give me the URL to download the 'Event Calendar' plugin - could be a compatibility issue.
I just realized what you asked. Let me get the url for that.
[url:17o10ppr]http://wordpress.org/extend/plugins/event-calendar/[/url:17o10ppr]Posted 3 years ago # -
i get the same error too, but i do not have event calendar installed...Posted 3 years ago #
-
I still cannot reproduce the error in my system - eventr works fine even with the EventCalendar installed. I think it is a problem with some configuration settings - what all changes have you made in the wordpress setting after you installed wordpress?
Are you using a non english interface in Wordpress admin panel? If so, I need the language file.
Try to create an event with eventr - once you see the error message, copy the URL in the address bar and paste it here.
Thanks for your feedback - hopefully, I'll be able to fix this issue soon.Posted 3 years ago # -
<baseurl>/wp-content/plugins/eventr/event_action.php is the page that the plugin redirects to when trying to process the form. the system then says that it can't find that URL.
My permalink structure is using the default month & name setting. WP is installed to a subdirectory (/wordpress/wp-conent/plugins...) but i moved the index.php and .htaccess to the main directory in order to hide that wordpress folder name.Posted 3 years ago # -
juts for S&G's I decided to install a very naked facebook install. Devoid of all plug-ins or add-ons. I was able to get Eventr working perfectly. I will begin to add plug-ins and see which one causes the issue.
Thank you for your help and I will keep you updated.Posted 3 years ago # -
Could be a issue with the 'home' setting. The plugin tries to send you to the page
%HOME%/wp-content/plugins/eventr/event_action.php
You can change the value of the %HOME% option by going to the admin side -> Settings -> Blog Address(URL). Play around with that value and see if you can get it working.
Lastly, if you are brave, edit the code. Open the file event_form.php and go to line 35...
<form name="post" action="<?=$wpframe_plugin_folder?>/event_action.php" method="post" id="post">
Change that to
<form name="post" action="http://yoursite.com/wordpress/wp-content/plugins/eventr/event_action.php" method="post" id="post">
Let me know if you manage to get it working.Posted 3 years ago # -
i think you are right binny. i changed the form action URL and it worked. The only problem, after it creates the form, the redirect fails now.
Would it work if you changed the plugin to use %wordpress% instead of %home%?Posted 3 years ago # -
I cannot use %home%/%wordpress% - in code I have to use get_option('siteurl') or get_option('home').
Currently, I use get_option('home'). You can change it by opening up wpframe.php, line 7. Change the line from...
$GLOBALS['wpframe_home'] = get_option('home');
to
$GLOBALS['wpframe_home'] = get_option('siteurl');
Let me know if that works.Posted 3 years ago # -
Thanks Binny, but i think you misunderstood me. Why don't you change your plugin to use the %siteurl% variable instead? that would still work for everyone, even if they are not using a subdir, correct?Posted 3 years ago #
-
changing that global variable worked. i dont see any reason why you couldn't change the plugin to be 'siteurl' instead of 'home' - i am sure it would still work for everyone...
thanks for the great plugin!Posted 3 years ago # -
Thanks - I'll do that.Posted 3 years ago #
-
I had errors like this and solved it by changing code in:
attendees.php
event_form.php
events.php
options.php
show_attendee_list.php
show_registration_form.php
Changed <?= to <?php echo and closing ?> to ; ?>Posted 2 years ago #
Reply
You must log in to post.