Archive

Archive for the ‘Ajax’ Category

Tizen Linux for mobile tablet smartphone will takeover the world. Backed by Intel, Samsung, Linux foundation. Good luck.

February 26, 2012 Leave a comment

Tizen Linux for mobile tablet smartphone will takeover the world. Backed by Intel, Samsung, Linux foundation. Good luck.

- Android is less important in such case

- IPhone also

 

www.melzoo.com – new search engine, like google, looks very nice and advanced

December 20, 2011 Leave a comment

I was searching for nice results. And came to new search engine and started to use it now always, check it out www.melzoo.com

Categories: Ajax, cakePHP, Flash, HTML, IE, JavaScript, PHP, Zend

Top 10 points for SEO experts

August 5, 2011 Leave a comment

@todo

Please ask, i will post how to’s

Categories: Ajax, HTML, PHP

Top 10 tips for web experts

August 5, 2011 Leave a comment

@todo

Please ask, i will post how to’s

Categories: Ajax, CSS, Flash, HTML, JavaScript, PHP, Zend

How do i make my website to do live chat?

August 5, 2011 Leave a comment

@Todo:

Ask plz i will write it.

Categories: Ajax, CSS, HTML, JavaScript, PHP, Zend

Apache rewrite rule robots sitemap

April 17, 2010 Leave a comment

I want to  stop using framework, and do some HANDjob:

1. .htaccess

<IfModule mod_rewrite.c>
 RewriteEngine on
 # Google will hit those
 RewriteRule ^wenduine-haan-brugge-oostende-blankenberge/?$ / [H]
 RewriteRule ^haan-blankenberge-oostende-brugge/?$ / [H]
 RewriteRule ^de-haan/?$ / [H]

... 40,000 alias rules
</IfModule>

2. robots.txt

User-agent: *
Disallow: /
Sitemap: http://www.example.be/sitemap.txt

3. sitemap.txt ( comment: if i get good job, and get good paid, i would have wrote a java/c++ data entry software )

http://www.example.be/wenduine-haan-brugge-oostende-blankenberge
http://www.example.be/haan-blankenberge-oostende-brugge
http://www.example.be/de-haan
....

Done.

Categories: Ajax, Apache, HTML, IE, JavaScript

zend cheat sheet zend framework cheat sheet zf cheat sheet zf cheat code zend crack zend hack zend quick tips and tricks

April 11, 2010 1 comment

Zend framework Latest Release. Also for more: http://shamuntoha.wordpress.com/2011/04/25/zend-framework-cheat-sheets-poster-tutorial-download-latest-news-reference-guide-apis-training/

*********Please leave your comments with your requirements and demands.********
zend framework poster zend framework cheat code cheat sheet tutorial getting started

  • Het Zend Framework is een open-source framework, ontwikkeld in objectgeoriënteerde PHP5 code door Zend Technologies
  • Zend Framework is an open source, object oriented web application framework
  • Free download of Zend Framework. Download today!
  • Official website www.zend.com . Includes project news, roadmap, FAQ and manual.
  • 10 Compelling Reasons to Use Zend Framework | Nettuts+

  • Latest version of Zend framework- ZF 1.6.0 ship dojo toolkit. You can find it in ZendFramework-1.6.0/external/ directory when you download ZF

Het Zend Framework is een open-source framework, ontwikkeld in objectgeoriënteerde PHP5 code door Zend Technologies. Het framework is gemaakt met de gedachte om het gebruik ervan zo simpel mogelijk te houden. Dit in lijn met PHP, waarvoor de parsing engine ook door Zend Technologies wordt ontwikkeld. Het Zend Framework wordt uitgebracht onder een BSD-licentie.

Het is onderdeel van het PHP Collaboration Project, bestaande uit:

* Zend Developer Zone
* Eclipse-based PHP-IDE
* Zend Framework

Het framework is gebaseerd op het MVC Model. De verschillende componenten van het framework kunnen ook afzonderlijk gebruikt worden. Voorbeelden van componenten in het Zend Framework zijn Zend_Log, Zend_Config en Zend_Feed.
Toekomst

Het project heeft een zestal doelen gesteld voor de toekomst:

1. Meer webservices ondersteunen
2. Mogelijkheden voor identiteitsmanagement
3. Verregaande mogelijkheden met betrekking tot formulieren
4. Ondersteuning voor YAML als informatie-opmaaktaal
5. Ontwikkelingstools om het ontwikkelen te vergemakkelijken
6. Het continu uitbreiden en verbeteren van functionaliteit

Externe links

* Homepage Zend framework
* Zend Developer Zone
* Het gebruik van Zend componenten in CakePHP

Programmer’s Reference Guide

Table of Contents

Zend Framework

Programmer’s Reference Guide for Zend Framework

Zend ajax jquery extjs json xml ajaxcontext

March 2, 2010 Leave a comment

How to zend ajax?

1. application/controllers/IndexController.php:

<?php

class IndexController extends Zend_Controller_Action

{

public function init()

{

$ajaxContext = $this->_helper->getHelper(‘AjaxContext’);

// make a file application/views/scripts/index/list.ajax.phtml

// allowing list.ajax.phtml to be viewed by ajax query.

$ajaxContext->addActionContext(‘list’, ‘html’)

->initContext();

}

// using the AjaxContext

public function listAction(){

echo ’2. application/controllers/IndexController.php > IndexController > listAction() > Its me pal!’;

}

public function indexAction()

{

}

public function addAction()

{

}

public function editAction()

{

}

public function delAction()

{

}

}

Read more…

JavaScript – go back, go back detection, ajax go back

December 11, 2009 Leave a comment

Completely bogus when something was saying back you cant, Here how i did, using 100% ajax boot methods.

Difficulties was:

a) visitors comes to localhost/index.php

b) visitors is routed to localhost/index.php?g=1

c) visitors is now completely ajax module, onclick menus he gets contents.

d) visitors need to go back, when apply go back it goes to point A). localhost/index.php

Note: This is not the common ajax we use, b is itself a ajax for whole index.php?g=1 , c is the sub ajax sections

Solved as:

folder tree:

= shamun
- js/jquery.history.js
- js/global.js
- include/home.php
- include/menu_button_3_contents.php

- index.php

1. This plugin is used, i didn’t write it, because of time limitation, many thanks to mikage sawatari. (i will modify on this plugin for my own uses).

Download: http://dpaste.de/hSgZ/

2. A fix ajax binding function, where you can load ajax sub pages. In my case it was two route, so i splited the href link to two different location. in other case it may contain only one:

function myAjaxReturn(url,_datastr){
return $.ajax({
type    : “POST”,
url     : url,
data    : _datastr,
async : false,
success : function(msg){
// this is the sub page url, “include/page33.php”;
url = url.split(“/”);
if ( url[1]==’main.php’){
$save  = $(‘#jQuery_history’);  // to avoid error
$(document.body).empty().prepend($save).append(msg);
}else{
$(‘#alltable’).empty().append(msg);
}
}
}).responseText;
}

3. Now you apply on click buttons or div or td or anything:

// 1. Basic ajax would be like this but to have history, we will not use those methods.

// $(‘#alltable’).html(”).load(‘include/link_mijnaccount.php’);

$(“#home”).click ( function () {

// So this is the ajax method that basically we use, without history management

$.historyLoad(‘include/home.php’);

// just to avoid wrong window.location.href return false; });

// 1. Basic ajax would be like this but to have history, we will not use those methods.

// $(‘#alltable’).html(”).load(‘include/link_mijnaccount.php’);

$(“#menu_button_3″).click ( function () {

// So this is the ajax method that basically we use, without history management

$.historyLoad(‘include/menu_button_3_contents.php’);

// just to avoid wrong window.location.href

return false;

});


Categories: Ajax, JavaScript Tags:

IDE – mostly Use

December 1, 2009 Leave a comment

*NIX Platform:
==============
1. jEdit (www.jEdit.org)

- If it was not in *Unix/linux i wouldn’t really moved from Windows anymore
- Live ftp work
- Character Encoding change simple
- Very fast (it represent how power java has, who ever hated java like me)
- I can live with this, i like it

2. NetBeans ( www.netbeans.org )
- very high standard (love to use as default)
- autocompletes are standard
- platform independent
- allow plugings
- UML free
- only hate it (doesnt have live ftp features like jEdit)

3. Eclipse
- hate the way it opens projects and keep it
- use it but not that much

4. Kate
- console embed
- allow code indent lines
- fast

5. Koffice (stroomdiagram, small painting tools allow)
- specially for the diagrams
- very good tools

Windows platform:
==============
1. Notepad++ (plugins etc)


- Fastest one
- Autocomplete allowed me to complete my javascript libraries (very smart)
- Plugins are great (it has the test of jEdit)
- i love it

2. Visual Studio (microsoft)
3. DreamWeaver ( very rare now days, that i use)

Follow

Get every new post delivered to your Inbox.