Webemerald's Posts
Nairaland Forum › Webemerald's Profile › Webemerald's Posts
1 2 3 4 5 6 7 8 9 (of 9 pages)
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. ![]() |
safe mode is turned on, i did it and still gave me the errors |
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 |
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 |
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 |
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() . "'" ;$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) . "'" ;$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) . "'" ;} else { return tep_db_query("insert into " . TABLE_SESSIONS . " values ('" . tep_db_input($key) . "', '" . tep_db_input($expiry) . "', '" . tep_db_input($value) . "')" ;} } function _sess_destroy($key) { return tep_db_query("delete from " . TABLE_SESSIONS . " where sesskey = '" . tep_db_input($key) . "'" ;} function _sess_gc($maxlifetime) { tep_db_query("delete from " . TABLE_SESSIONS . " where expiry < '" . time() . "'" ;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); } } ?> |
hi, your post seems a bit confusing, are you saying ull pay 6500 for templates designed for you or the entire website. |
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 |
Pls buys i need this,its important |
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. |
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 |
http://www.tfsseconline.com cheers |
Please guys this is very urgent, seun thanks for the links, i need more options. |
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 |
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 |
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. |
Hi, On which platform are u building? If its Php i can help you build it.Lets talk. |
Ive not heard much about DHTML Scripts on this forum.If uve got some uve used and tested the functionality, lets here about it. |
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. |
My2cents ,in your portfolio page, dere dis application dat loads a larger version of the template,ow does it work,it is cool |
If u can make it happen itll be a dream come true nd massive response is guaranteed. |
Like most free tins- u dont get full benefits, pay money nd get a domain with control panel, its cheap |
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. |
ericlash- u go fit pay token for am-i can send the pdf to you |
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 |
Mr woods, hope u still have me in mind as per the interakt file upload,im in dire need of it, awaitin ur response |
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 |
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. |
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 |
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. |
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 |

;