what is the web site for the ghana national service secreteriate?
11:12 pm in SOA Answers by admin
I want to know when the regitration starts and how can I get my self registrered?
Login or Signup to meet new friends, find out what's going on, and connect with others on the site.
Sorry, you are not allowed to register by yourself on this site!
You must either be invited by one of our team member or request an invitation by email..
Note: If you are the admin and want to display the register form here, log in to your dashboard, and go to Settings > General and click "Anyone can register".
11:12 pm in SOA Answers by admin
I want to know when the regitration starts and how can I get my self registrered?
4:15 pm in SOA Answers by admin
So I want to try out a free web hosting service for a little while so that I can figure out exactly what I need and how it all works before I commit and spend money. Does anyone know of any decent FREE web hosts? and I want free…I don’t want to be asked for a credit card number or anything.
Thanks for your help!
Thanks for you help!
1:05 pm in SOA Answers by admin
Is it possible that they can direct those hits thru their server first. I thought the hits would come from the individuals interested on seeing the site and the service says no. I also heard the term click thru, as in they are doing the hits. The company appeared to be legit but now I don’t know. I hate getting ripped off……….Thanks
2:02 am in SOA Answers by admin
Shopping online allows people to purchase products that can meet their specific requirements. So it’s annoying when you fall in love with a product and are unable to purchase it due to the fact that the website does not sell or ship to people overseas. Products are usually available from other web sites which can make it possible to get the product you want, but some products are not available from other web sites and or those web sites do not sell or ship to people overseas. So I’m wondering if there is a way to get items that wouldn’t be normally available to your country through a proxy service? Since I live in Australia, and many products are only sold to people in the US, I know how frustrating it can be. It’s obvious to me that I’m not the only one who encounters this problem, and that there is obviously a market for this kind of proxy purchasing service. So is there one that is reliable, trustworthy, and affordable?
5:02 pm in SOA Answers by admin
The web-based proxy services I’ve tried don’t seem to be able to view video clips like on YouTube, etc.
Why is that? Is there a proxy service that will allow me to view videos?
11:54 am in SOA Answers by admin
I have got an assignment in which i have to find prospects who want web development services.kindly guide me in this regard.
7:13 pm in SOA Answers by admin
I want to edit the HTML as it is in Frontpage or something and be able to directly upload that HTML instead of editing it in a editor provided by the host, that has a whole lot of limitations
Basically I want all the features I could have hosting a site on my own server without actually hosting it myself
7:01 pm in SOA Answers by admin
I have recently taken a position at a small business and they want me to tune up their website. They were currently using iPower and I can’t stand it. I am pretty savvy with HTML and learn quickly with the help of Google. I am looking for a hosting service that can provide me with customizable HTML as well as some decent tools for publishing. Any input would be great. Thanks guys (and girls). Flash capability is a necessity as well
9:34 am in SOA Answers by admin
like my yahoo messanger 8 or 9 back not on web as has no features how do i do it make it simple like me
3:34 am in SOA Infrastructure by admin
Here is a (linux) script that can be used during for starting Oracle Weblogic during startup and shutdown of the machine. The script only a framework that is at the various run-levels. The actual code of stopping and starting WLS is in another script (/home/oracle/bin/wls.sh).
Create the folloing script in /etc/init.d (as root)
/etc/init.d/oracle-wls#!/bin/bash## /etc/rc.d/init.d/oracle-wls## Starts the weblogic environment## chkconfig: 2345 90 10# description: Oracle-WLS Daemon
# processname: oracle-wls
source /etc/rc.d/init.d/functions
### Default variablesSYSCONFIG="/etc/sysconfig/oracle-wls"
### Read configuration[ -r "$SYSCONFIG" ] && source "$SYSCONFIG"
RETVAL=0prog="/home/oracle/bin/wls.sh"desc="Oracle WLS Daemon"SU=/bin/suSHELL=/bin/bash
START_AS_USER=oracle
start() { echo -n $"Starting $desc ($prog): " $SU -s $SHELL $START_AS_USER -c "$prog start" > /dev/null 2>&1 RETVAL=$? [ $RETVAL -eq 0 ] && touch /var/lock/subsys/$prog echo}
stop() { echo -n $"Shutting down $desc ($prog): " $SU -s $SHELL $START_AS_USER -c "$prog stop" > /dev/null 2>&1 RETVAL=$? [ $RETVAL -eq 0 ] && success || failure echo [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/$prog return $RETVAL}
case "$1" in start) start ;; stop) stop ;; restart) stop start RETVAL=$? ;; condrestart) [ -e /var/lock/subsys/$prog ] && restart RETVAL=$? ;; *) echo $"Usage: $0 {start|stop|restart|condrestart}" RETVAL=1esac
exit $RETVAL
Make the script known the O/S for the various boot levels (as root):
chkconfig --add oracle-wls && chkconfig oracle-wls on
You can test the script (as root)
# service oracle-wls stopShutting down Oracle WLS Daemon (/home/oracle/bin/wls.sh): [ OK ] # service oracle-wls startStarting Oracle WLS Daemon (/home/oracle/bin/wls.sh): [ OK ]