Joomla! Discussion Forums



It is currently Thu Nov 26, 2009 10:17 pm (All times are UTC )

 




Post new topic Reply to topic  [ 166 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next
Author Message
Posted: Sun Dec 04, 2005 9:53 pm 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
Yipppie wrote:
Hi Marko

Please come back to this thread :) We need U

I am happy to help out if you can show me which bits of code are in the problematic areas we talk about

Are you going to continue this hack seeing as you released sefbot as well and its installable?

Any help is much appreciated  ;D



I'm back again was sick the whole week , not better now but enough to be online again ;)

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Last edited by Predator on Sun Dec 04, 2005 9:55 pm, edited 1 time in total.

Top
   
 
Posted: Mon Dec 05, 2005 2:24 pm 
User avatar
Joomla! Explorer
Joomla! Explorer
Offline

Joined: Wed Aug 17, 2005 11:11 pm
Posts: 312
Im putting together a sef_ext.php for a component, and im working out the demo ones I have seen.

However I was wondering why the create function
Code:
if (eregi("&var1=",$string)) {

         $temp = split("&var1=", $string);

         $temp = split("&", $temp[1]);

         $sefstring .= $temp[0]."/";

      }
      
      
      if (eregi("&var2=",$string)) {

         $temp = split("&var2=", $string);

         $temp = split("&", $temp[1]);

         $sefstring .= $temp[0]."/";

      }


Why not just use something like this
Code:
preg_match('|var1=(.[^&]*)&var2=(.[^&]*)|', $string, $matches);
        $sefstring = $matches[1].'/'.$matches[2].'/';

Or am i missing the point?


Top
  E-mail  
 
Posted: Tue Dec 06, 2005 5:59 pm 
User avatar
Joomla! Explorer
Joomla! Explorer
Offline

Joined: Wed Aug 17, 2005 11:11 pm
Posts: 312
Found a weird bug.

I have an anchor on my page and the html looks like this.
Code:
<a href="#viewing">View</a>


But with SEF switched on the link goes to http://www.mysite.com/#viewing

Anyway I can change this?

thnx


Top
  E-mail  
 
Posted: Tue Dec 06, 2005 10:19 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Tue Dec 06, 2005 1:32 am
Posts: 4
Thank you for the wonderful mod... I just need to get this working on my site.

I think it was you that wrote the mod for the new 1.1a version and I couldn't get that to work. So I installed the latest stable version 1.0.4 and I also downloaded your latest version of this hack for my software version.

I installed the files in your hack over my default files and configured the SEO settings. My site works great for compact SEF Url's... but my site is not working for Advanced SEF URL's. When I mean not working... I mean the pages load... but it always loads the default home page instead of the page it should be loading. An example can be found here:

http://www.bodybuildingnotes.com/index. ... ash_1.html

Also... I'm using IIS so I had to edit your sef.php file and change this line:

$mosConfig_live_site."/".$string;

and change it to:

$mosConfig_live_site."/index.php/".$string;

That line was found twice in your file (once in the original sef.php file) so I changed it both times in your file.

Is there something else I need to edit in the file to get it to work on my end with IIS?


Top
  E-mail  
 
Posted: Wed Dec 07, 2005 1:26 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Tue Nov 29, 2005 8:27 am
Posts: 10
Location: Switzerland
Very nice hack! But is there any news about a sef_ext.php for SMF Forum and Remository? I read in this thread that Marko is working on something, is there any result or has someone else made something that is working?

cheers,
Benson

_________________
Life is not measured by the breaths we take but by the moments that take our breath away.
--Anon


Top
  E-mail  
 
Posted: Wed Dec 07, 2005 11:54 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Nov 07, 2005 9:37 pm
Posts: 12
guitarlp wrote:

$mosConfig_live_site."/index.php/".$string;

That line was found twice in your file (once in the original sef.php file) so I changed it both times in your file.

Is there something else I need to edit in the file to get it to work on my end with IIS?



Hi,

please try http://forum.joomla.org/index.php/topic ... #msg128113
.. this could help because the hack acually has problems when additional slashes are added.

greetings

Roberto


Top
  E-mail  
 
Posted: Thu Dec 08, 2005 12:29 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Tue Dec 06, 2005 1:32 am
Posts: 4
rjavegaw wrote:
guitarlp wrote:

$mosConfig_live_site."/index.php/".$string;

That line was found twice in your file (once in the original sef.php file) so I changed it both times in your file.

Is there something else I need to edit in the file to get it to work on my end with IIS?



Hi,

please try http://forum.joomla.org/index.php/topic ... #msg128113
.. this could help because the hack acually has problems when additional slashes are added.

greetings

Roberto


Hi Roberto,

I tried adding the code:

      //ROBI HACK
      $depth=substr_count(str_replace("http://", "",$mosConfig_live_site) , "/");
      $url_array = array_slice ($url_array, $depth);
      //ROBI HACK END

Where you said to in your post but the pages still aren't showing up. Any other ideas?


Top
  E-mail  
 
Posted: Thu Dec 08, 2005 3:55 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Nov 07, 2005 9:37 pm
Posts: 12
guitarlp wrote:


Hi Roberto,

I tried adding the code:



Where you said to in your post but the pages still aren't showing up. Any other ideas?


Hi please add http://forum.joomla.org/index.php/topic ... #msg128092 so we could perhaps see more things happening.

Greets Roberto


Top
  E-mail  
 
Posted: Thu Dec 08, 2005 7:42 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Tue Dec 06, 2005 1:32 am
Posts: 4
rjavegaw wrote:
guitarlp wrote:


Hi Roberto,

I tried adding the code:



Where you said to in your post but the pages still aren't showing up. Any other ideas?


Hi please add http://forum.joomla.org/index.php/topic ... #msg128092 so we could perhaps see more things happening.

Greets Roberto


Hi Roberto,

I actually saw that yesterday and tried it. The problem is, nothing is showing on the screen. The code isn't doing anything with my Joomla installation.

I don't think your code will work in my case because my site isn't throwing "404 Page Not Found" errors. My site is still loading the index.php page. The problem is, with advanced SEF URL's the index.php page isn't reading the advanced URL correctly (or at all), so it's just pulling up the index.php page (homepage).


Last edited by guitarlp on Thu Dec 08, 2005 7:45 pm, edited 1 time in total.

Top
  E-mail  
 
Posted: Sat Dec 10, 2005 12:09 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Tue Nov 15, 2005 11:45 am
Posts: 45
just been checking the server headers too and this sef doesnt give a proper 404

there have been quite a few problems with google and this issue


Top
  E-mail  
 
Posted: Sat Dec 10, 2005 1:52 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Nov 07, 2005 9:37 pm
Posts: 12
guitarlp wrote:

Hi Roberto,

I actually saw that yesterday and tried it. The problem is, nothing is showing on the screen. The code isn't doing anything with my Joomla installation.

I don't think your code will work in my case because my site isn't throwing "404 Page Not Found" errors. My site is still loading the index.php page. The problem is, with advanced SEF URL's the index.php page isn't reading the advanced URL correctly (or at all), so it's just pulling up the index.php page (homepage).


Yes, this could be the Problem, ist there anything similar to the apache mod_rewrite module for the IIS without Rewriting the SEF doesn't work korrect!

Greets Roberto


Top
  E-mail  
 
Posted: Sat Dec 10, 2005 1:56 pm 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
Benson wrote:
Very nice hack! But is there any news about a sef_ext.php for SMF Forum and Remository? I read in this thread that Marko is working on something, is there any result or has someone else made something that is working?

cheers,
Benson


Remository is ready, SMF in work, was 2 weeks sick so alot behind my plans

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Top
   
 
Posted: Sat Dec 10, 2005 1:58 pm 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
Yipppie wrote:
I think I may have fixed an error with the pagination.

At the moment there are problems with the pagination on all sets of pages, items, blogsection, blogcategory and frontpage.

This fixes the pagination for items only

On line 877 in sef.php of coresef hack

Change this line:

  $sefstring .= "/".$temp[0]."/";

to this line:

  $sefstring .= $temp[0]."/";


Seems to work well and no other conflicts.

I would really like to get blogsection and blogcategory fixed, these are only showing one number /9/ in the URL when i believe it should be two /1/9/

Would be grateful for some help in fixing these issues

:)




Where exactly 877 looks different to me, maybe give some more code around it.

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Top
   
 
Posted: Sat Dec 10, 2005 1:59 pm 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
guitarlp wrote:
rjavegaw wrote:
guitarlp wrote:

$mosConfig_live_site."/index.php/".$string;

That line was found twice in your file (once in the original sef.php file) so I changed it both times in your file.

Is there something else I need to edit in the file to get it to work on my end with IIS?



Hi,

please try http://forum.joomla.org/index.php/topic ... #msg128113
.. this could help because the hack acually has problems when additional slashes are added.

greetings

Roberto


Hi Roberto,

I tried adding the code:

      //ROBI HACK
      $depth=substr_count(str_replace("http://", "",$mosConfig_live_site) , "/");
      $url_array = array_slice ($url_array, $depth);
      //ROBI HACK END

Where you said to in your post but the pages still aren't showing up. Any other ideas?


Thanks added.

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Top
   
 
Posted: Sat Dec 10, 2005 2:11 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Nov 14, 2005 2:18 am
Posts: 9
It would be nice if we could configure the URL that is generated. For example configure it to show only categories or only sections in the url . 404Sef had that feature and I used it alot since my section names and category names are the same. It looked weird to show both


My 2 cents...

_________________
Alexandre Sagala
http://www.kubiktech.com


Top
  E-mail  
 
Posted: Fri Dec 16, 2005 12:30 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Mon Oct 24, 2005 9:45 am
Posts: 62
hi guys,

just thought can anybody give me idea about whats happening on my site, i have a site http://www.awitpinoy.com it contains filipino artist with lyrics, ive installed 404Sef, and when i enable it together with SEO (global config.) i cannot access those artist with 50+ lyrics/content it says "Internal Server Error" but if i disable 404Sef and enable SEO or vice versa, whole site is working fine. i dont think its a timeout issue because viewing those artist is have same speed as viewing those artist with less than 50 content (this is when SEF is disable). Could anyboby help me and explain whats happening. would really appreciate  any suggestion

Btw, i even try joomla core sef but stil have the same error.
http://www.joomlashack.com/option,com_d ... id,13.html

Best Regards,
Pius


Top
  E-mail  
 
Posted: Tue Dec 20, 2005 9:57 pm 
User avatar
Joomla! Explorer
Joomla! Explorer
Offline

Joined: Fri Aug 26, 2005 7:10 pm
Posts: 341
Location: Los Angeles, CA, USA
Predator wrote:
No i have only work on a Jomla! solution and the probs belongs more to the Joomla! Version of simpleboard now know as Joomlaboard. The new version works now well with Joomlaboard.

Can you provide an explanation for the way you fixed the Joomlaboard problem?  Sorry if I missed this somewhere else in the thread, I did look for it.

Maybe this form of the question is more precise: is your joomlaboard fix such that we could implement it into a sef_ext.php to be used with SEF Advance?  Trying to write such a file is what brought me to this topic originally.

_________________
http://www.DavidPace.com


Top
  E-mail  
 
Posted: Wed Dec 21, 2005 2:59 am 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sun Oct 23, 2005 11:36 pm
Posts: 36
Location: Russia, Irkutsk
Is it possible to make it work with different languages?... In my case I really want coreSEF to be able to replace russian characters =)

I've tried editing sef.php:

Code:
// specify the special chars for replace but need a better place for this
$url_replace = array(
...
);


but it didn't help me =(
result was total mess =(


Top
  E-mail  
 
Posted: Wed Dec 21, 2005 10:43 am 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
New fix Version will be available after the 1.0.5 release this week.

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Top
   
 
Posted: Wed Dec 21, 2005 12:53 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sun Oct 23, 2005 11:36 pm
Posts: 36
Location: Russia, Irkutsk
I'm glad to read that it's not my hands growing from the wrong place  :D

Predator, you're trully - the God himself!  ;)
2 Really Great contributions released by you, that I'm proud to use ( I mean vBridge as second component) ;D

Can you please explain (as for "moderate dummy") how this hack works?

And how would it be possible for me to make it work with russian characters =)
The thing is that russian alphabet contains - 33 letters, and english alphabet - 26...
so we have 7 letters that will have to be replaced by a pair of english chars.

For example we have one letter that sounds like - "s" - and another, like - "sh" - and some letters that doesn't even pronounced at english =)

I'm just intrested how will the script behave if there will be 2 different words

"shuyali" - which should be read like 's'+'hu'+'ya'+'li'

and the other one

"shalava" - which has to be read like 'sha'+'la'+'va'

so what I'm trying to ask is.. will it be able to correctly recognize pair letters?...


Top
  E-mail  
 
Posted: Tue Dec 27, 2005 12:56 am 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Mon Dec 12, 2005 5:50 pm
Posts: 57
Location: Atlanta GA
Is 1.0.5 sef core hack version released yet?

_________________
anjel lenee
idia Web Design | 404.375.4927 | http://idiaWebDesign.com
joomla changed my life


Top
  E-mail  
 
Posted: Tue Dec 27, 2005 10:46 am 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
abskure wrote:
Is 1.0.5 sef core hack version released yet?


No had no time during the christmas days, but have still holidays, so will release a new Version the next days.

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Top
   
 
Posted: Tue Dec 27, 2005 12:34 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sun Oct 23, 2005 11:36 pm
Posts: 36
Location: Russia, Irkutsk
2 Predator: How about my question? Can you please-please-please write a comment if you'll find time to do so =)


Top
  E-mail  
 
Posted: Wed Dec 28, 2005 2:12 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Wed Dec 28, 2005 2:08 pm
Posts: 2
Hi all
I'm also looknig forward for the new version of coreSEF (with "special characters problem" fixed)
I know that you're the best and You can do it!  ;D

EDIT:
One more thing:
CoreSEF doesn't work with integrated SMF forum :(

_________________
Life Sux!


Last edited by qba on Wed Dec 28, 2005 4:43 pm, edited 1 time in total.

Top
   
 
Posted: Wed Dec 28, 2005 4:31 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sun Oct 23, 2005 11:36 pm
Posts: 36
Location: Russia, Irkutsk
Yeah! Predator is GREAT! Heil to Predator! =)


Top
  E-mail  
 
Posted: Wed Dec 28, 2005 4:50 pm 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
qba wrote:
Hi all
I'm also looknig forward for the new version of coreSEF (with "special characters problem" fixed)
I know that you're the best and You can do it!  ;D

EDIT:
One more thing:
CoreSEF doesn't work with integrated SMF forum :(


Some issue as with the Simpleboard, will fix this so should than be fixed for both.

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Top
   
 
Posted: Mon Jan 02, 2006 1:38 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Aug 29, 2005 6:35 pm
Posts: 18
Hi,

Will release 1.0.5 address the wrapper issue?

Thanks for this great hack!

_________________
Sylvain Amyot
http://www.mytechsupport.ca
http://www.mypcsecurity.ca
http://www.tollplumbing.com


Top
  E-mail  
 
Posted: Wed Jan 04, 2006 10:04 pm 
User avatar
Joomla! Hero
Joomla! Hero
Offline

Joined: Thu Aug 25, 2005 5:48 pm
Posts: 2801
Location: Geneva mostly
Is this still going to be updated, or will it be in 1.0.6 or something similar?
THanks

_________________
Sometimes one pays most for the things one gets for nothing.
The important thing is not to stop questioning. Curiosity has its own reason for existing. AE
http://joomla15.blogspot.com for J! 1.5 screenshots
http://www.eyezberg.com


Top
  E-mail  
 
Posted: Wed Jan 04, 2006 10:48 pm 
User avatar
Joomla! Ace
Joomla! Ace
Offline

Joined: Wed Aug 17, 2005 10:12 pm
Posts: 1686
Location: Germany-Bad Abbach
eyezberg wrote:
Is this still going to be updated, or will it be in 1.0.6 or something similar?
THanks


Just testing currently ( also the OpenSEFcomp where a new Version comes soon ) waiting for 1.0.6 use for testing the SVN Version of 1.0.6 so when the new Joomla! Version comes out a new CoreSEF hack will be also available. 

_________________
The "Humor, Fun and Games" forum has  more than 2500 Posts, so why not build a "Humor, Fun and Games Working" Group?
.....
Malicious tongues say we have this WG right from the start, they call it core team :D


Top
   
 
Posted: Wed Jan 04, 2006 11:52 pm 
User avatar
Joomla! Intern
Joomla! Intern
Offline

Joined: Mon Dec 12, 2005 5:50 pm
Posts: 57
Location: Atlanta GA
so no update for 1.0.5? I was waiting to upgrade to joomla 1.0.5 because i was waiting for the new coreSEF hack. Shoudl I just use the hack of 1.0.4 for 1.0.5 or keep my joomla 1.0.4 and wait to upgrade when 1.0.6 comes?

I also saw they're coming out with a 1.1 soon...any word on that?

_________________
anjel lenee
idia Web Design | 404.375.4927 | http://idiaWebDesign.com
joomla changed my life


Top
  E-mail  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 166 posts ]  Go to page Previous  1, 2, 3, 4, 5, 6  Next

Quick reply

 



Who is online

Users browsing this forum: No registered users and 24 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group