Author Topic: MyBlog and Nice Talk from Azrul.com  (Read 29969 times)

sdedman1

  • Newbie
  • *
  • Posts: 1
    • View Profile
MyBlog and Nice Talk from Azrul.com
« 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 »

netfly

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
Re: MyBlog and Nice Talk from Azrul.com
« 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.

Saka

  • Administrator
  • Hero Member
  • *****
  • Posts: 2,453
    • View Profile
    • Sakic.Net
Re: MyBlog and Nice Talk from Azrul.com
« 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.

netfly

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
Re: MyBlog and Nice Talk from Azrul.com
« Reply #3 on: 03 September 2007, 19:25 »
Thanks Saka. I will wait the quote  :)

mailalon

  • Newbie
  • *
  • Posts: 20
    • View Profile
Re: MyBlog and Nice Talk from Azrul.com
« Reply #4 on: 10 September 2007, 10:03 »
I'm also interested and could share the cost.

Alon

Saka

  • Administrator
  • Hero Member
  • *****
  • Posts: 2,453
    • View Profile
    • Sakic.Net
Re: MyBlog and Nice Talk from Azrul.com
« 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.

netfly

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
Re: MyBlog and Nice Talk from Azrul.com
« Reply #6 on: 13 September 2007, 02:23 »
Very VERY very good news Emir! I'm very happy to know that  :D
Can you keep us updated please?
Thank you!

Jan

  • Newbie
  • *
  • Posts: 10
    • View Profile
    • Artikelverzeichnis
Re: MyBlog and Nice Talk from Azrul.com
« Reply #7 on: 02 October 2007, 14:53 »
Hello,

is the Addon already finished???

best regards
Jan

Saka

  • Administrator
  • Hero Member
  • *****
  • Posts: 2,453
    • View Profile
    • Sakic.Net
Re: MyBlog and Nice Talk from Azrul.com
« Reply #8 on: 02 October 2007, 15:03 »
Still haven't heard from Azrul guys. You may want to ask on their forum.

Jan

  • Newbie
  • *
  • Posts: 10
    • View Profile
    • Artikelverzeichnis
Re: MyBlog and Nice Talk from Azrul.com
« 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.

nabil

  • Newbie
  • *
  • Posts: 1
    • View Profile
Re: MyBlog and Nice Talk from Azrul.com
« 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.  ;D

Jan

  • Newbie
  • *
  • Posts: 10
    • View Profile
    • Artikelverzeichnis
Re: MyBlog and Nice Talk from Azrul.com
« 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: [Select]
<?

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

Jan

  • Newbie
  • *
  • Posts: 10
    • View Profile
    • Artikelverzeichnis
Re: MyBlog and Nice Talk from Azrul.com
« 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

Saka

  • Administrator
  • Hero Member
  • *****
  • Posts: 2,453
    • View Profile
    • Sakic.Net
Re: MyBlog and Nice Talk from Azrul.com
« 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?

Jan

  • Newbie
  • *
  • Posts: 10
    • View Profile
    • Artikelverzeichnis
Re: MyBlog and Nice Talk from Azrul.com
« 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.