₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,325,106 members, 8,420,363 topics. Date: Thursday, 04 June 2026 at 05:41 PM

Toggle theme

Webemerald's Posts

Nairaland ForumWebemerald's ProfileWebemerald's Posts

1 2 3 4 5 6 7 8 9 (of 9 pages)

WebmastersRe: A Webdesigner Residing On The Mainland,preferably Ikeja? by webemerald(m): 4:34pm On Sep 21, 2007
Funny enough i chked the link you said wasnt working and it worked well here, this probably is one of those browser,internet connection issues.
You guys forced me to open my site, ive not even visited it in 1half yrs. grin
WebmastersRe: Help With Error Messages On Oscommerce Installation by webemerald(op): 3:54pm On Sep 21, 2007
safe mode is turned on, i did it and still gave me the errors
WebmastersRe: A Webdesigner Residing On The Mainland,preferably Ikeja? by webemerald(m): 3:41pm On Sep 21, 2007
my2cents, i guess you didnt read my post directly above urs, tht was my first try out with design over 3yrs ago, and not updated or even touched it in 2yrs( my bad).

but thanks anyway,ill take note
WebmastersRe: Help With Error Messages On Oscommerce Installation by webemerald(op): 3:25pm On Sep 21, 2007
Thanks xanadu, im currently trying out your suggestions but id like to know if its possible to access the php.ini file on a shared hosting server. i saw the path in the result of the php.info but the path isnt accesible.

thanks
WebmastersRe: A Webdesigner Residing On The Mainland,preferably Ikeja? by webemerald(m): 11:02am On Sep 21, 2007
Not that it matters but thanks adeniyi, i also feel the same way about my website but believe me when i tell you that site was designed in my early stages of webdesign, over 3yrs ago.i sincerely do not have the time to sit down and do a redesign when i have jobs im working on for my clients.
Believe me, im way way better that that.

ngmilitant, lets talk privately, heres my email; webemerald@gmail.com
WebmastersRe: Help With Error Messages On Oscommerce Installation by webemerald(op): 1:51pm On Sep 20, 2007
heres the entire sessiond.php file

<?php
/*
$Id: sessions.php,v 1.19 2003/07/02 22:10:34 hpdl Exp $

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com

Copyright (c) 2007 osCommerce

Released under the GNU General Public License
*/

if (STORE_SESSIONS == 'mysql') {
if (!$SESS_LIFE = get_cfg_var('session.gc_maxlifetime')) {
$SESS_LIFE = 1440;
}

function _sess_open($save_path, $session_name) {
return true;
}

function _sess_close() {
return true;
}

function _sess_read($key) {
$value_query = tep_db_query("select value from " . TABLE_SESSIONS . " where sesskey = '" . tep_db_input($key) . "' and expiry > '" . time() . "'"wink;
$value = tep_db_fetch_array($value_query);

if (isset($value['value'])) {
return $value['value'];
}

return false;
}

function _sess_write($key, $val) {
global $SESS_LIFE;

$expiry = time() + $SESS_LIFE;
$value = $val;

$check_query = tep_db_query("select count(*) as total from " . TABLE_SESSIONS . " where sesskey = '" . tep_db_input($key) . "'"wink;
$check = tep_db_fetch_array($check_query);

if ($check['total'] > 0) {
return tep_db_query("update " . TABLE_SESSIONS . " set expiry = '" . tep_db_input($expiry) . "', value = '" . tep_db_input($value) . "' where sesskey = '" . tep_db_input($key) . "'"wink;
} else {
return tep_db_query("insert into " . TABLE_SESSIONS . " values ('" . tep_db_input($key) . "', '" . tep_db_input($expiry) . "', '" . tep_db_input($value) . "')"wink;
}
}

function _sess_destroy($key) {
return tep_db_query("delete from " . TABLE_SESSIONS . " where sesskey = '" . tep_db_input($key) . "'"wink;
}

function _sess_gc($maxlifetime) {
tep_db_query("delete from " . TABLE_SESSIONS . " where expiry < '" . time() . "'"wink;

return true;
}

session_set_save_handler('_sess_open', '_sess_close', '_sess_read', '_sess_write', '_sess_destroy', '_sess_gc');
}

function tep_session_start() {
global $HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_COOKIE_VARS;

$sane_session_id = true;

if (isset($HTTP_GET_VARS[tep_session_name()])) {
if (preg_match('/^[a-zA-Z0-9]+$/', $HTTP_GET_VARS[tep_session_name()]) == false) {
unset($HTTP_GET_VARS[tep_session_name()]);

$sane_session_id = false;
}
} elseif (isset($HTTP_POST_VARS[tep_session_name()])) {
if (preg_match('/^[a-zA-Z0-9]+$/', $HTTP_POST_VARS[tep_session_name()]) == false) {
unset($HTTP_POST_VARS[tep_session_name()]);

$sane_session_id = false;
}
} elseif (isset($HTTP_COOKIE_VARS[tep_session_name()])) {
if (preg_match('/^[a-zA-Z0-9]+$/', $HTTP_COOKIE_VARS[tep_session_name()]) == false) {
$session_data = session_get_cookie_params();

setcookie(tep_session_name(), '', time()-42000, $session_data['path'], $session_data['domain']);

$sane_session_id = false;
}
}

if ($sane_session_id == false) {
tep_redirect(tep_href_link(FILENAME_DEFAULT, '', 'NONSSL', false));
}

return session_start();
}

function tep_session_register($variable) {
global $session_started;

if ($session_started == true) {
if (PHP_VERSION < 4.3) {
return session_register($variable);
} else {
$_SESSION[$variable] = (isset($GLOBALS[$variable])) ? $GLOBALS[$variable] : null;

$GLOBALS[$variable] =& $_SESSION[$variable];
}
}

return false;
}

function tep_session_is_registered($variable) {
if (PHP_VERSION < 4.3) {
return session_is_registered($variable);
} else {
return isset($_SESSION[$variable]);
}
}

function tep_session_unregister($variable) {
if (PHP_VERSION < 4.3) {
return session_unregister($variable);
} else {
unset($_SESSION[$variable]);
}
}

function tep_session_id($sessid = '') {
if (!empty($sessid)) {
return session_id($sessid);
} else {
return session_id();
}
}

function tep_session_name($name = '') {
if (!empty($name)) {
return session_name($name);
} else {
return session_name();
}
}

function tep_session_close() {
if (PHP_VERSION >= '4.0.4') {
return session_write_close();
} elseif (function_exists('session_close')) {
return session_close();
}
}

function tep_session_destroy() {
return session_destroy();
}

function tep_session_save_path($path = '') {
if (!empty($path)) {
return session_save_path($path);
} else {
return session_save_path();
}
}

function tep_session_recreate() {
if (PHP_VERSION >= 4.1) {
$session_backup = $_SESSION;

unset($_COOKIE[tep_session_name()]);

tep_session_destroy();

if (STORE_SESSIONS == 'mysql') {
session_set_save_handler('_sess_open', '_sess_close', '_sess_read', '_sess_write', '_sess_destroy', '_sess_gc');
}

tep_session_start();

$_SESSION = $session_backup;
unset($session_backup);
}
}
?>
WebmastersRe: A Webdesigner Residing On The Mainland,preferably Ikeja? by webemerald(m): 4:25pm On Sep 19, 2007
hi, your post seems a bit confusing, are you saying ull pay 6500 for templates designed for you or the entire website.
ProgrammingHelp! Oscommerce Installation Error Messages by webemerald(op): 11:06am On Sep 19, 2007
Hi, folks im having a tryout with oscommerce, but it keeps giving me this errors, i need your help guys.

Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid is 40001 is not allowed to access owned by uid 0 in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php on line 161

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php:161) in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php on line 97

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php:161) in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php on line 97

Warning: Cannot modify header information - headers already sent by (output started at /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php:161) in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/general.php on line 22
WebmastersRe: Help With Error Messages On Oscommerce Installation by webemerald(op): 11:04am On Sep 19, 2007
Pls buys i need this,its important
Business To BusinessRe: Introduce Your Business by webemerald(m): 5:05pm On Sep 18, 2007
WebEmerald Enterprises
C.A.C Regd. No: LAZ 172224

"Exploring Online Possibilities"
http://www.webemerald.com

We are into Webdesign,Webdevelopment and Webhosting

Address: 33, Olaleye Street Ifako Gbagada.
Tel: 08035645648,08087255926
Mail: yinka@webemerald.com

Our Portfolio:
www.tfsseconline.com
www.skyraceinternational.com
www.lakraftentertainment.com
www.webemerald.com ,



We are classy and affordable.
WebmastersHelp With Error Messages On Oscommerce Installation by webemerald(op): 4:28pm On Sep 18, 2007
Hi, folks im having a tryout with oscommerce, but it keeps giving me this errors, i need your help guys.

Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid is 40001 is not allowed to access owned by uid 0 in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php on line 161

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php:161) in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php on line 97

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php:161) in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php on line 97

Warning: Cannot modify header information - headers already sent by (output started at /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/sessions.php:161) in /misc/36/000/143/623/5/user/web/you.com/admin/includes/functions/general.php on line 22
WebmastersRe: What Site Have You Designed Best? by webemerald(m): 3:15pm On Sep 14, 2007
WebmastersRe: Cms-very Urgent Pls Help by webemerald(op): 12:00pm On Sep 12, 2007
Please guys this is very urgent, seun thanks for the links, i need more options.
WebmastersCms-very Urgent Pls Help by webemerald(op): 12:03pm On Sep 11, 2007
Hello guys, i need info on how to go about developing a heavy application sales site,im trying to cut cost by not developing from scratch but im aware there are CMS ( free or for sale) whcih i can use:
The CMs has to be extensively customizable,a full search feature,heavy image uploading,easy administration and all,the project is similar to that of computerport.biz,ebay,noahs clasiffieds etc.It for sales of items etc.
Its very urgent and i dont mind paying for the programme.
my2cents,seun,tundewoods,afam et al i need your help pls. im at webemerald@gmail.com
WebmastersRe: Dynamic Photo Gallery by webemerald(m): 6:23pm On Sep 10, 2007
Hi. topetope. sorry ive not been around been very busy-if youre still in need lets talk outside here.heres my mail webemerald@gmail.com
WebmastersRe: Dhtml Scripts by webemerald(op): 4:45pm On Sep 03, 2007
Mr Tunde, how did you get to download the entire website, iveheard of programs that do such but ive never seen one,. Can u help out.
WebmastersRe: Dynamic Photo Gallery by webemerald(m): 4:35pm On Sep 03, 2007
Hi, On which platform are u building? If its Php i can help you build it.Lets talk.
WebmastersDhtml Scripts by webemerald(op): 4:48pm On Aug 29, 2007
Ive not heard much about DHTML Scripts on this forum.If uve got some uve used and tested the functionality, lets here about it.
WebmastersRe: Images As A Text On Your Website Or Text Only by webemerald(m): 6:06am On Aug 25, 2007
Considerin dat even with css ,some computers might nt render ur txt well esp when u use extremely stylish fonts,id recomend using images esp 4 imp sections bt b careful nt 2 use it generaly as it wil slow down ur page.
WebmastersRe: Why Do "half Baked" Websites Go Live With So Much Publicity In Nigeria ? by webemerald(m): 5:50am On Aug 25, 2007
My2cents ,in your portfolio page, dere dis application dat loads a larger version of the template,ow does it work,it is cool
WebmastersRe: Interswitch /etransact And Vpay Cards For N15,000 Set Up ? by webemerald(m): 5:35am On Aug 25, 2007
If u can make it happen itll be a dream come true nd massive response is guaranteed.
WebmastersRe: How Do I "really Own" My Domain Name? by webemerald(m): 2:01pm On Aug 23, 2007
Like most free tins- u dont get full benefits, pay money nd get a domain with control panel, its cheap
WebmastersRe: Help Us Build the Best Nigerian Website Directory by webemerald(m): 11:55am On Aug 21, 2007
www.webemerald.com
WEBemerald is a webdesign, webhosting and webdevelopement company.We provide small online business applications for companies intending to explore online business possibilities.
WebmastersRe: Designing A Website Using Coreldraw Application Package by webemerald(m): 11:18am On Aug 21, 2007
ericlash- u go fit pay token for am-i can send the pdf to you
WebmastersRe: Download Webpagemaker Free by webemerald(op): 9:55pm On Aug 19, 2007
I just noticed the file is just the trial version, u need the keygen to unlock the full version,let me know if ure intrstd. webemerald@gmail.com
WebmastersRe: Lets Share And Exchange Dreamweaver Extensions by webemerald(m): 9:34pm On Aug 19, 2007
Mr woods, hope u still have me in mind as per the interakt file upload,im in dire need of it, awaitin ur response
WebmastersRe: The Fastest Way To Deploy A Content Management System by webemerald(m): 9:02pm On Aug 19, 2007
Its really cool, ive been using it as well 4 over 2yrs, i use it 4 creating webbased admin sectn so my clients can manage their content on their own. Try it
WebmastersRe: Why Do "half Baked" Websites Go Live With So Much Publicity In Nigeria ? by webemerald(m): 8:14pm On Aug 19, 2007
My2cents i just visited your site nd i must say im amazed at the simplicity.yet it has a professional feel,gud job but from a client standpt a little flash aint bad. While were tryin to draw d middle line btw aesthetics nd functionality rem dat d client is king. Give dem wat dey need.
WebmastersRe: Designing A Website Using Coreldraw Application Package by webemerald(m): 7:43pm On Aug 19, 2007
Mr smarthard , why is it hard 4 u 2 comprehend. I know people who do design layouts in coreldraw nd ull be amazed at d output. Laugh all u can oh, but corel draw can give u cool layout esp. If ure a superuser
WebmastersRe: Designing A Website Using Coreldraw Application Package by webemerald(m): 12:49pm On Aug 19, 2007
Corel draw can be effective for creating good templates which would later be exported to fireworks for slicing.It really does work especially if u feel comfortable working with coreldraw. Well but id rather do mine with fireworks because its closely integrated with d,weaver.Makes the job a lot easier.Bottom line is use whatever you feel comfortable with.
InvestmentRe: Effect Of Naira Redomination On Stock Market Investments? by webemerald(m): 4:41am On Aug 16, 2007
In every economic reform there wil always be losers nd gainers. Im a bit confused,does this mean a stock worth 1000 wil now be worth 100? We need to be enlightened

1 2 3 4 5 6 7 8 9 (of 9 pages)