Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 05-11-2012, 12:30 AM
fiber1's Avatar
fiber1 fiber1 is offline
 
Join Date: Jun 2004
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default PC install

I am trying to install VB on my pc to design my site. I tried the XAMPP install, but keep getting this message.

Code:
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 44

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 83

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 91

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 171

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 183

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\includes\class_core.php on line 2518

Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\xampp\htdocs\forum\includes\class_core.php on line 1637

Warning: include(C:\xampp\htdocs\forum/includes/config.php) [function.include]: failed to open stream: No such file or directory in C:\xampp\htdocs\forum\includes\class_core.php on line 2533

Warning: include() [function.include]: Failed opening 'C:\xampp\htdocs\forum/includes/config.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\forum\includes\class_core.php on line 2533


Configuration: includes/config.php does not exist. Please fill out the data in config.php.new and rename it to config.php
I also can't for the life of me rename the config.new file to config.php No matter what I do. I copied it to another text editor and saved the file and notta.

Any help is appreciated!
Reply With Quote
  #2  
Old 05-11-2012, 01:07 AM
ForceHSS ForceHSS is offline
 
Join Date: Apr 2008
Posts: 6,357
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

right click when file is on desktop and then rename
Reply With Quote
  #3  
Old 05-11-2012, 01:13 AM
fiber1's Avatar
fiber1 fiber1 is offline
 
Join Date: Jun 2004
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ForceHSS View Post
right click when file is on desktop and then rename
I actually tried that too. No go.
Reply With Quote
  #4  
Old 05-11-2012, 01:52 AM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by fiber1 View Post
I am trying to install VB on my pc to design my site. I tried the XAMPP install, but keep getting this message.

That message happens because some vb3 versions aren't completely compatible with newer versions of php. If you have a way to do a global search and replace on all the vb files, you can replace all occurances of "~E_NOTICE);" with "~E_NOTICE & ~8192);" and it should get rid of most of those.


Quote:
I also can't for the life of me rename the config.new file to config.php No matter what I do. I copied it to another text editor and saved the file and notta.

Any help is appreciated!
What do you mean it's not working? Are you saving without an error but you don't see a config.php? I know sometimes an editor will automatically add an extension to the file unless you choose "php" or "all files" from the filter dropdown when saving, so maybe it's getting saved with a different extension? Also, right click on the folder and select properties, and make sure the folder isn't set as "read only".
Reply With Quote
  #5  
Old 05-11-2012, 02:18 AM
Xp.Warrior Xp.Warrior is offline
 
Join Date: Mar 2012
Posts: 142
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by fiber1 View Post
I am trying to install VB on my pc to design my site. I tried the XAMPP install, but keep getting this message.

Code:
Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 44

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 83

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 91

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 171

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\install\init.php on line 183

Deprecated: Assigning the return value of new by reference is deprecated in C:\xampp\htdocs\forum\includes\class_core.php on line 2518

Deprecated: Function set_magic_quotes_runtime() is deprecated in C:\xampp\htdocs\forum\includes\class_core.php on line 1637

Warning: include(C:\xampp\htdocs\forum/includes/config.php) [function.include]: failed to open stream: No such file or directory in C:\xampp\htdocs\forum\includes\class_core.php on line 2533

Warning: include() [function.include]: Failed opening 'C:\xampp\htdocs\forum/includes/config.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\forum\includes\class_core.php on line 2533


Configuration: includes/config.php does not exist. Please fill out the data in config.php.new and rename it to config.php
I also can't for the life of me rename the config.new file to config.php No matter what I do. I copied it to another text editor and saved the file and notta.

Any help is appreciated!
In Your Ftp Seach globle.php and add this code after <?php
Code:
error_reporting(E_ALL & ~E_NOTICE & ~8192);
After Add Look Like This
Code:
<?php
error_reporting(E_ALL & ~E_NOTICE & ~8192);
I Hope Usefull For You
Reply With Quote
  #6  
Old 05-11-2012, 02:25 AM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah, I haven't tried that ^^^, but it looks like it might do the same as the replacements I suggested (but is a lot easier, of course).
Reply With Quote
  #7  
Old 05-11-2012, 02:40 AM
fiber1's Avatar
fiber1 fiber1 is offline
 
Join Date: Jun 2004
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks guys, but I am not using a ftp yet since I am just installing on my pc for now. I normally would just go for the server, but I won't have Inet access half the time I am build the site.

My install version is 3.7.2
Reply With Quote
  #8  
Old 05-11-2012, 03:02 AM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ignore the ftp part, we're just used to people working with files on a remote server. Just go to the global.php file and edit it as xp warrior described above.
Reply With Quote
  #9  
Old 05-11-2012, 03:18 AM
fiber1's Avatar
fiber1 fiber1 is offline
 
Join Date: Jun 2004
Posts: 107
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah, I figured that and did it. Once again it didn't help.

I appreciate the help guys. I wish there was a thorough install guide out there for Xampp and vbulletin for the pc.
Reply With Quote
  #10  
Old 05-11-2012, 10:56 AM
kh99 kh99 is offline
 
Join Date: Aug 2009
Location: Maine
Posts: 13,185
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by fiber1 View Post
I wish there was a thorough install guide out there for Xampp and vbulletin for the pc.

I just did this a couple days ago. I installed XAMPP, started the XAMPP control panel to make sure Apache and MySQL was running, then I created a "forum" folder under XAMPP/htdocs (which is optional, you can install it in htdocs if you want). I then followed the vbulletin install instructions except of course when it talks about "uploading" I just copied the files to XAMPP/htdocs/forum.

So there isn't much in the way of special instructions. I think if you work out the issue you're having with editing the vb files you'll probably find it'll work.
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:47 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04153 seconds
  • Memory Usage 2,256KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (4)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete