sitemap  |  contact

Sakic.Net Forum
12 October 2008, 09:14 *
Welcome, Guest. Please login or register.
Did you miss your activation email?
Login with username, password and session length
News: Save money on product bundles: http://www.sakic.net/support/order/
 
   Home   Help Search Login Register  
Pages: [1] 2
  Print  
Author Topic: MyBlog and Nice Talk from Azrul.com  (Read 9822 times)
sdedman1
Newbie
*
Posts: 1


View Profile
« on: 01 September 2007, 15:06 »

Is anyone else using these components? It would be nice to see sef advance extensions for them.
« Last Edit: 02 September 2007, 16:05 by sdedman1 » Logged
netfly
Jr. Member
**
Posts: 56


View Profile
« Reply #1 on: 03 September 2007, 15:42 »

I'm using myblog and I contacted few weeks ago Saka for a custom job. He didn't replied yet...
If you are interested, we can ask together for a cote regarding this custom job and pay 50/50 if it's possible.
Logged
Saka
Administrator
Hero Member
*****
Posts: 1,233


View Profile WWW
« Reply #2 on: 03 September 2007, 16:39 »

Hi,

Sorry if I missed to reply. I will have a look at the component and make a quote.
Logged

netfly
Jr. Member
**
Posts: 56


View Profile
« Reply #3 on: 03 September 2007, 19:25 »

Thanks Saka. I will wait the quote  Smiley
Logged
mailalon
Newbie
*
Posts: 20


View Profile
« Reply #4 on: 10 September 2007, 10:03 »

I'm also interested and could share the cost.

Alon
Logged
Saka
Administrator
Hero Member
*****
Posts: 1,233


View Profile WWW
« Reply #5 on: 10 September 2007, 12:55 »

I've been contacted by guys from Azrul.com. They are ready to make the extensions for their components and I will help in the process. Hopefully we will see their components integrated with SEF Advance soon.
Logged

netfly
Jr. Member
**
Posts: 56


View Profile
« Reply #6 on: 13 September 2007, 02:23 »

Very VERY very good news Emir! I'm very happy to know that  Cheesy
Can you keep us updated please?
Thank you!
Logged
Jan
Newbie
*
Posts: 10


View Profile WWW
« Reply #7 on: 02 October 2007, 14:53 »

Hello,

is the Addon already finished???

best regards
Jan
Logged
Saka
Administrator
Hero Member
*****
Posts: 1,233


View Profile WWW
« Reply #8 on: 02 October 2007, 15:03 »

Still haven't heard from Azrul guys. You may want to ask on their forum.
Logged

Jan
Newbie
*
Posts: 10


View Profile WWW
« Reply #9 on: 02 October 2007, 15:15 »

My Post was «Flagged as spam»

I see this:
Warning: Your post has been classified as spam, and will not be visible to the public until an administrator or moderator approves it.
Logged
nabil
Newbie
*
Posts: 1


View Profile
« Reply #10 on: 03 October 2007, 04:46 »

Hi Jan,

Nabil here from the Azrul.com team.

What is your nickname on Azrul.com's Forums?

Sorry about your post being marked as spam. This might be due to Akismet, I'm not sure. But I'll solve this problem asap.

As for the development of the integration, we've been busy coming up with a new version of Jom Comment and My Blog, once we're nearing completion of our two components, we will definitely focus on integrating SEF Advance with the two components.

That way components will be SEFAdvance ready.  Grin
Logged
Jan
Newbie
*
Posts: 10


View Profile WWW
« Reply #11 on: 03 October 2007, 10:17 »

My Nickname is "Jan"

Danke für Deine schnelle Reaktion nabil. Sorry, ich mache mal an dieser Stelle mit meiner Muttersprache weiter, da mein Englisch sehr schlecht ist. Ich habe gestern bereits mit dem Schreiben eines Addons angefangen. Hier schonmal die Zeilen die Fertig sind:

Code:
<?

defined( '_VALID_MOS' ) or die( 'Restricted access' );
class sef_myblog {
//Umwandeln der Urls

function create ($string) {
global $database, $whereurl;

//Umschreiben der Urls in /myblog/search/ bzw. /myblog/rss/ (usw)

               if (eregi('&amp;task=search',$string) ||
eregi('&amp;task=categories',$string) ||
eregi('&amp;task=rss',$string)) {
$temp = explode("&amp;task=", $string);
$temp = explode("&", $temp[1]);
$sefstring .= $temp[0]."/";

}

//Umwandeln der Blogtitel in /myblog/welcome-to-my-blog/ oder /myblog/permalink/

               else if (eregi('&amp;show=',$string)){
$temp = explode("&amp;show=", $string);
$temp = explode("&", $temp[1]);
$sefstring .= $temp[0]."/"; }

//Umwandeln der Tags in /myblog/tag/mytagwort/

             else if (eregi('&amp;category=',$string)){
$temp = explode("&amp;category=", $string);
$temp = explode("&", $temp[1]);
$sefstring .= "tag/".$temp[0]."/"; }
}

return $sefstring;

}

function revert ($url_array, $pos) {
// Ausgabe der Originalen

$QUERY_STRING = "";


if (isset($url_array[$pos+2])&& $url_array[$pos+2]!='') {
if ($url_array[$pos+2]   == "search" ||
        $url_array[$pos+2]    == "categories" ||
        $url_array[$pos+2]    == "rss"){
$task = $url_array[$pos+2];
$_GET['task'] = $_REQUEST['task'] = $task;
$QUERY_STRING .= "&task=$task";
} else {


$show = $url_array[$pos+2];
$_GET['show'] = $_REQUEST['show'] = $show;
$QUERY_STRING .= "&show=$show";
}
}

return $QUERY_STRING;
}
}
?>

Leider habe ich noch keine Idee wie ich diese Url wieder zurücksetzen kann: Von /myblog/tag/mytagword/ in index.php?option=com_myblog&category=mytagword.

Achtung! Dieses Addon ist natürlich nicht fertig und sollte nur zu Testzwecken eingesetzt werden.

Ich hoffe diese Zeilen helfen weiter. Wie man erkennen kann fehlen noch die Parameter: archive und blogger.

Das Problem ist, das diese Parameter immer an zweiter Stelle kommen.
Zudem fehlen noch die Parameter für die Seitenzahlen, die aber kein Problem darstellen, da diese an dritter Stelle kommen.

Hier noch der Link um meine Wort zu übersetzen:
http://translate.google.com/translate?u=http%3A%2F%2Fwww.sakic.net%2Fforum%2Fsef_advance%2Fmyblog_and_nice_talk_from_azrulcom-t317.0.html&langpair=de%7Cen&hl=de&ie=UTF-8&oe=UTF-8&prev=%2Flanguage_tools
Logged
Jan
Newbie
*
Posts: 10


View Profile WWW
« Reply #12 on: 04 October 2007, 13:11 »

OK, Fertig.

Es geht sicherlich auch besser, aber es scheint zu funktionieren.

http://www.mobile-suche.de/artikelverzeichnis/blog/

Im Anhang befindet sich die sef_ext.php zum Testen oder verbessern.

Gruß Jan
Logged
Saka
Administrator
Hero Member
*****
Posts: 1,233


View Profile WWW
« Reply #13 on: 04 October 2007, 17:03 »

Is the extension for myBlog ready then? I would like to add a link to my extension page. Is sef_ext.php already included in the myBlog distribution now or should I add link to this post?
Logged

Jan
Newbie
*
Posts: 10


View Profile WWW
« Reply #14 on: 04 October 2007, 17:10 »

The extension is ready, but I don't now whether errors are contained.

Yes, you can add this extension to your List.
Logged
Pages: [1] 2
  Print  
 
Jump to: