free 8051 Microcontroller Projects AVR PIC Microcontroller Projects Tutorials Ebooks Libraries, interfacing tutorials, lcd tutorial, stepper motor, dc motor 8051 assembly language programming electronics and communication ECE CSE pdf ebooks library BE final year project ideas Embedded systems

 
8051 microcontroller 8051 microcontroller
Forums

Go to page  1 2 3 4 5 [6] 7
Moderators: Ajay, Junied , abbas1707, Arun Kumar V, pdi33, Shailesh NAYAK, ۞ TPS ۞, shyam, sashijoseph
Author Post
FatFreddiesCat
Sat Apr 21 2007, 11:16AM
 User Offline
Registered Member #978
Joined: Sat Apr 21 2007, 10:14AM

Posts: 11
Thanked 5 times in 5 posts
Great plugin - thanks!

I would like to add the e_classifieds plugin to the furl htaccess script if possible and I am not having much joy by myself.

I tired adding:

# Classified PLUGIN ===================================
RewriteRule classifieds.html e107_plugins/e_classifieds/classifieds.php


but it did not work - any additional help would be greatly appreciated!



[ Edited Sat Apr 21 2007, 11:48AM ]
Back to top

e107 plugins   rewriterule   furl   htaccess   greatly appreciated   



This post has been thanked 1 time
Ajay
Sun Apr 22 2007, 01:37AM
Rickey's World Admin

 User Offline

Registered Member #1
Joined: Fri Feb 24 2006, 04:56AM

Posts: 4042
Thanked 753 times in 712 posts
you just not have to make entry in the .htaccess file...
but also in the plugin files.. e_module.php and sitelinks

www.rickeyworld.info
If you feel satisfied with the user's forum reply please click on the thank button.

Obey forum rules!
Respect others!
Back to top

htaccess file   plugin files   



This post has been thanked 1 time
FatFreddiesCat
Sun Apr 22 2007, 07:58AM
 User Offline
Registered Member #978
Joined: Sat Apr 21 2007, 10:14AM

Posts: 11
Thanked 5 times in 5 posts
I'll look into that - thanks!
Back to top



This post has been thanked 1 time
SonnY
Mon May 07 2007, 04:35AM
 User Offline
Registered Member #346
Joined: Sun Jan 21 2007, 07:15AM

Posts: 1
Thanked 1 time in 1 post
I have a problem when im using ecpatcha plugin with furl. Furl defunctions(is this the right word?) ecaptcha. I have described my problem here: http://e107coders.org/downloads1487.html (last post). Authow of ecaptcha write to me:
"Your problem is not just limited to ecaptcha, every part of the site
with a index.php is directing back to the main page.

I suspect you have put a redirect for index.php in your .htaccess

.htaccess rules apply to subfolders, not just the current folder, so
you need to remove it. "

and

"Dont use a .htaccess redirect, upload the index.php that comes with
e107 and it will automatically redirect people to the news.php "

For now i have deleted FURL, because, to have site protected from bots is more important to me than to have SEO.

BTW: I dont watching whats going on with FURL much, but It will be nice if FURL will have more friendly urls. To have in url title of certain item or forum etc, instead of news12.html etc.
Back to top



This post has been thanked 1 time
Ajay
Mon May 07 2007, 06:30AM
Rickey's World Admin

 User Offline

Registered Member #1
Joined: Fri Feb 24 2006, 04:56AM

Posts: 4042
Thanked 753 times in 712 posts
I did not work on what you said regarding the links. I understood what you wanted to do.

and regarding ecaptcha plugin. do this way..
there is a like as below.. remove it and everything will be fine.
CODE:
RewriteRule index.php news.php

remove the above line and check captcha

www.rickeyworld.info
If you feel satisfied with the user's forum reply please click on the thank button.

Obey forum rules!
Respect others!
Back to top



This post has been thanked 1 time
sirkazuo
Mon Jul 02 2007, 11:32PM
 User Offline
Registered Member #1924
Joined: Mon Jul 02 2007, 11:12PM

Posts: 1
Thanked 1 time in 1 post
Hello, I'm having some trouble integrating the Event Calendar plugin with FURL. Everything else has been working excellently for me (oh the magic of apache's mod_rewrite!) but even though (I think) I've entered every url the plugin uses into the appropriate files in the appropriate format, it still isn't formatting my url's correctly.

Here is the code I have added, could you just look this over and tell me what I'm missing? I just can't seem to spot it.

.htaccess

#==============================================
# CALENDAR EVENTS PLUGIN =====================
RewriteRule calendar.php e107_plugins/calendar_menu/calendar.php
RewriteRule calendar([0-9]*)\.php(.*)$ e107_plugins/calendar_menu/calendar.php?$1
RewriteRule event.php e107_plugins/calendar_menu/event.php
RewriteRule event([0-9]*)\.php(.*)$ e107_plugins/calendar_menu/event.php?$1
RewriteRule event([0-9]*)-one\.php(.*)$ e107_plugins/calendar_menu/event.php?$1.one
RewriteRule event([0-9]*)-event([0-9]*)\.php(.*)$ e107_plugins/calendar_menu/event.php?$1.event.$2
RewriteRule event([0-9]*)-([0-9]*)\.php(.*)$ e107_plugins/calendar_menu/event.php?$1.$2
RewriteRule event([0-9]*)-([0-9]*)-m4\.php(.*)$ e107_plugins/calendar_menu/event.php?$1.$2.m4
RewriteRule event-ne([0-9]*)\.php(.*)$ e107_plugins/calendar_menu/event.php?ne.$1
RewriteRule subscribe.php e107_plugins/calendar_menu/subscribe.php


e_module.php

$patterns[41] = '/e107_plugins\/calendar_menu\/calendar\.php/';
$replacements[41] = 'calendar.php';

$patterns[42] = '/e107_plugins\/calendar_menu\/calendar\.php\?([0-9]+)/';
$replacements[42] = 'calendar$1.php';

$patterns[43] = '/e107_plugins\/calendar_menu\/event\.php/';
$replacements[43] = 'event.php';

$patterns[44] = '/e107_plugins\/calendar_menu\/event\.php\?([0-9]+)/';
$replacements[44] = 'event$1.php';

$patterns[45] = '/e107_plugins\/calendar_menu\/event\.php\?([0-9]+)\.one/';
$replacements[45] = 'event$1-one.php';

$patterns[46] = '/e107_plugins\/calendar_menu\/event\.php\?([0-9]+)\.event\.([0-9+)/';
$replacements[46] = 'event$1-event$2.php';

$patterns[47] = '/e107_plugins\/calendar_menu\/event\.php\?([0-9]+)\.([0-9]+)/';
$replacements[47] = 'event$1-$2.php';

$patterns[48] = '/e107_plugins\/calendar_menu\/event\.php\?([0-9]+\.([0-9]+)\.m4/';
$replacements[48] = 'event$1-$2-m4.php';

$patterns[49] = '/e107_plugins\/calendar_menu\/event\.php\?ne\.([0-9]+)/';
$replacements[49] = 'event-ne$1.php';

$patterns[50] = '/e107_plugins\/calendar_menu\/subscribe\.php/';
$replacements [50] = 'subscribe.php';


and sitelinks.sc is the exact same as e_module.php.

A current example can be found here. Thank you for your help resolving this little issue with your excellent plugin!

edit: To clarify the problem- When I rewrite the url /e107_plugins/calendar_menu/calendar.php?##, to make it accept and forward the format newURL##.php, it converts all the links to newURL.php?##.

[ Edited Mon Jul 02 2007, 11:40PM ]
Back to top



This post has been thanked 1 time
Ajay
Tue Jul 03 2007, 10:11AM
Rickey's World Admin

 User Offline

Registered Member #1
Joined: Fri Feb 24 2006, 04:56AM

Posts: 4042
Thanked 753 times in 712 posts
its not recommended to have .php extension it might give you 500 Internal Server Error. but anyways.. if its working fine then no issues..
so.. regarding your problem, you need to shuffle the links in e_module and sitelinks.sc files..
e.g. move pattern 41 to the last.. of course you have to change the count too. try it and you will see.
actually replace thing find the calender link first as the combination without lookin at other links.. so try putting the pattern 41 to the end.

www.rickeyworld.info
If you feel satisfied with the user's forum reply please click on the thank button.

Obey forum rules!
Respect others!
Back to top



This post has been thanked 1 time
thebushtucker
Fri Oct 12 2007, 09:07AM
 User Offline
Registered Member #4368
Joined: Fri Oct 12 2007, 09:06AM

Posts: 4
Thanked 0 times in 0 posts
Really nice plugin but it doesn't work with newsfeed

http://www.physical-education.fr/e107_plugins/newsfeed/newsfeed.php

Thank you for your help
Back to top


Ajay
Fri Oct 12 2007, 10:45AM
Rickey's World Admin

 User Offline

Registered Member #1
Joined: Fri Feb 24 2006, 04:56AM

Posts: 4042
Thanked 753 times in 712 posts
you might need to add few lines of code in e_module.php and sitelinks.sc to make newsfeed work.. also need to add rewrite links in .htaccess file. Take a look at the e_module file to know more..

www.rickeyworld.info
If you feel satisfied with the user's forum reply please click on the thank button.

Obey forum rules!
Respect others!
Back to top



This post has been thanked 1 time
thebushtucker
Mon Oct 15 2007, 11:26AM
 User Offline
Registered Member #4368
Joined: Fri Oct 12 2007, 09:06AM

Posts: 4
Thanked 0 times in 0 posts
I did what you said but it didn't work neither with the one from MoggieX
http://www.understandinge.co.uk/request3.html
I really need some help please

[ Edited Mon Oct 15 2007, 11:27AM ]
Back to top


Go to page  1 2 3 4 5 [6] 7  

Jump:     Back to top

Syndicate this thread: rss 0.92 Syndicate this thread: rss 2.0 Syndicate this thread: RDF
Powered by e107 Forum System

8051 Microcontroller Projects 8051 AVR tutorials PIC microcontroller, 8051 assembly language programming electronics and communication ECE CSE pdf ebooks library BE final year project ideas Embedded systems